-rw-r--r-- | bin/kdepim/korganizer/bell.png | bin | 639 -> 1449 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/eye.png | bin | 0 -> 1339 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/bell.png | bin | 639 -> 873 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/eye.png | bin | 0 -> 945 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/plus.png | bin | 0 -> 888 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/plus.png | bin | 0 -> 1268 bytes | |||
-rw-r--r-- | korganizer/kofilterview.cpp | 6 |
7 files changed, 3 insertions, 3 deletions
diff --git a/bin/kdepim/korganizer/bell.png b/bin/kdepim/korganizer/bell.png Binary files differindex 46ab9e3..0b15133 100644 --- a/bin/kdepim/korganizer/bell.png +++ b/bin/kdepim/korganizer/bell.png diff --git a/bin/kdepim/korganizer/eye.png b/bin/kdepim/korganizer/eye.png Binary files differnew file mode 100644 index 0000000..fd70996 --- a/dev/null +++ b/bin/kdepim/korganizer/eye.png diff --git a/bin/kdepim/korganizer/icons16/bell.png b/bin/kdepim/korganizer/icons16/bell.png Binary files differindex 46ab9e3..bd92cb1 100644 --- a/bin/kdepim/korganizer/icons16/bell.png +++ b/bin/kdepim/korganizer/icons16/bell.png diff --git a/bin/kdepim/korganizer/icons16/eye.png b/bin/kdepim/korganizer/icons16/eye.png Binary files differnew file mode 100644 index 0000000..4c5b163 --- a/dev/null +++ b/bin/kdepim/korganizer/icons16/eye.png diff --git a/bin/kdepim/korganizer/icons16/plus.png b/bin/kdepim/korganizer/icons16/plus.png Binary files differnew file mode 100644 index 0000000..7cee987 --- a/dev/null +++ b/bin/kdepim/korganizer/icons16/plus.png diff --git a/bin/kdepim/korganizer/plus.png b/bin/kdepim/korganizer/plus.png Binary files differnew file mode 100644 index 0000000..5780059 --- a/dev/null +++ b/bin/kdepim/korganizer/plus.png diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 64675ad..e379abc 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp @@ -66,111 +66,111 @@ void KOFilterView::updateFilters() { mSelectionCombo->clear(); CalFilter *filter = mFilters->first(); while(filter) { mSelectionCombo->insertItem(filter->name()); filter = mFilters->next(); } } CalFilter *KOFilterView::selectedFilter() { CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); return f; } void KOFilterView::setSelectedFilter(QString filterName) { int filter_num = mSelectionCombo->count(); int i; for (i=0;i<filter_num;i++) { if (mSelectionCombo->text(i)==filterName) mSelectionCombo->setCurrentItem(i); } emit filterChanged(); } void KOFilterView::setSelectedFilter( int fil ) { if ( fil >= mSelectionCombo->count() ) return; mSelectionCombo->setCurrentItem( fil ); emit filterChanged(); } KOCalEditView::KOCalEditView(QWidget* parent, const char* name ) : QWidget(parent,name) { /* connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); connect(mEditButton,SIGNAL(clicked()),SIGNAL(editCalEdits())); */ QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); QPushButton * addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,0 ); - addBut->setPixmap ( SmallIcon("redcross16")); + addBut->setPixmap ( SmallIcon("plus")); connect(addBut,SIGNAL(clicked()),SLOT(addCal())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,1 ); - addBut->setPixmap ( SmallIcon("redcross16")); + addBut->setPixmap ( SmallIcon("eye")); connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); addBut->setMaximumWidth( addBut->sizeHint().height() ); QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", this ); mainLayout->addWidget( lab,0,2 ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,3 ); - addBut->setPixmap ( SmallIcon("redcross16")); + addBut->setPixmap ( SmallIcon("bell")); connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,4 ); addBut->setPixmap ( SmallIcon("redcross16")); connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,5 ); addBut->setPixmap ( SmallIcon("trash")); connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); addBut->setMaximumWidth( addBut->sizeHint().height() ); } KOCalEditView::~KOCalEditView() { // no need to delete child widgets, Qt does it all for us } void KOCalEditView::readConfig( KConfig *) { } void KOCalEditView::addCal() { qDebug("addcal "); } void KOCalEditView::enableAll() { qDebug("enableAll"); } void KOCalEditView::enableAlarm() { qDebug("enableAlarm"); } void KOCalEditView::disableRO() { qDebug("OCalEditView::disableRO() "); } void KOCalEditView::deleteAll() { qDebug("delteAll"); } |