summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--bin/kdepim/korganizer/icons16/minus.pngbin0 -> 247 bytes
-rw-r--r--bin/kdepim/korganizer/icons16/plus.pngbin888 -> 383 bytes
-rw-r--r--bin/kdepim/korganizer/minus.pngbin0 -> 480 bytes
-rw-r--r--bin/kdepim/korganizer/plus.pngbin1268 -> 487 bytes
-rw-r--r--korganizer/kofilterview.cpp2
5 files changed, 1 insertions, 1 deletions
diff --git a/bin/kdepim/korganizer/icons16/minus.png b/bin/kdepim/korganizer/icons16/minus.png
new file mode 100644
index 0000000..bfad708
--- a/dev/null
+++ b/bin/kdepim/korganizer/icons16/minus.png
Binary files differ
diff --git a/bin/kdepim/korganizer/icons16/plus.png b/bin/kdepim/korganizer/icons16/plus.png
index 7cee987..905061e 100644
--- a/bin/kdepim/korganizer/icons16/plus.png
+++ b/bin/kdepim/korganizer/icons16/plus.png
Binary files differ
diff --git a/bin/kdepim/korganizer/minus.png b/bin/kdepim/korganizer/minus.png
new file mode 100644
index 0000000..3aec4de
--- a/dev/null
+++ b/bin/kdepim/korganizer/minus.png
Binary files differ
diff --git a/bin/kdepim/korganizer/plus.png b/bin/kdepim/korganizer/plus.png
index 5780059..2684b4f 100644
--- a/bin/kdepim/korganizer/plus.png
+++ b/bin/kdepim/korganizer/plus.png
Binary files differ
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp
index e379abc..1bfe4dd 100644
--- a/korganizer/kofilterview.cpp
+++ b/korganizer/kofilterview.cpp
@@ -87,90 +87,90 @@ void KOFilterView::setSelectedFilter(QString filterName)
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("plus"));
connect(addBut,SIGNAL(clicked()),SLOT(addCal()));
addBut->setMaximumWidth( addBut->sizeHint().height() );
addBut = new QPushButton ( this );
mainLayout->addWidget( addBut,0,1 );
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("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"));
+ addBut->setPixmap ( SmallIcon("pencil"));
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");
}