author | zautrix <zautrix> | 2005-06-11 08:29:27 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-11 08:29:27 (UTC) |
commit | e0440717ce166afc312eba1c14d39e2bca813dfe (patch) (unidiff) | |
tree | 18f5fd15404c67e490b3f88a5a9d84c5ebdce4ea | |
parent | ad60ed0d2434b2e67f469962e0aab3b3171f7d56 (diff) | |
download | kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.zip kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.tar.gz kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.tar.bz2 |
icons
-rw-r--r-- | bin/kdepim/korganizer/icons16/minus.png | bin | 0 -> 247 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/plus.png | bin | 888 -> 383 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/minus.png | bin | 0 -> 480 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/plus.png | bin | 1268 -> 487 bytes | |||
-rw-r--r-- | korganizer/kofilterview.cpp | 2 |
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 | |||
@@ -111,49 +111,49 @@ KOCalEditView::KOCalEditView(QWidget* parent, | |||
111 | QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); | 111 | QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); |
112 | QPushButton * addBut = new QPushButton ( this ); | 112 | QPushButton * addBut = new QPushButton ( this ); |
113 | mainLayout->addWidget( addBut,0,0 ); | 113 | mainLayout->addWidget( addBut,0,0 ); |
114 | addBut->setPixmap ( SmallIcon("plus")); | 114 | addBut->setPixmap ( SmallIcon("plus")); |
115 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | 115 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); |
116 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 116 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
117 | 117 | ||
118 | addBut = new QPushButton ( this ); | 118 | addBut = new QPushButton ( this ); |
119 | mainLayout->addWidget( addBut,0,1 ); | 119 | mainLayout->addWidget( addBut,0,1 ); |
120 | addBut->setPixmap ( SmallIcon("eye")); | 120 | addBut->setPixmap ( SmallIcon("eye")); |
121 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 121 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
122 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 122 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
123 | 123 | ||
124 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", this ); | 124 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", this ); |
125 | mainLayout->addWidget( lab,0,2 ); | 125 | mainLayout->addWidget( lab,0,2 ); |
126 | 126 | ||
127 | addBut = new QPushButton ( this ); | 127 | addBut = new QPushButton ( this ); |
128 | mainLayout->addWidget( addBut,0,3 ); | 128 | mainLayout->addWidget( addBut,0,3 ); |
129 | addBut->setPixmap ( SmallIcon("bell")); | 129 | addBut->setPixmap ( SmallIcon("bell")); |
130 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 130 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
131 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 131 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
132 | 132 | ||
133 | addBut = new QPushButton ( this ); | 133 | addBut = new QPushButton ( this ); |
134 | mainLayout->addWidget( addBut,0,4 ); | 134 | mainLayout->addWidget( addBut,0,4 ); |
135 | addBut->setPixmap ( SmallIcon("redcross16")); | 135 | addBut->setPixmap ( SmallIcon("pencil")); |
136 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); | 136 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); |
137 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 137 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
138 | 138 | ||
139 | addBut = new QPushButton ( this ); | 139 | addBut = new QPushButton ( this ); |
140 | mainLayout->addWidget( addBut,0,5 ); | 140 | mainLayout->addWidget( addBut,0,5 ); |
141 | addBut->setPixmap ( SmallIcon("trash")); | 141 | addBut->setPixmap ( SmallIcon("trash")); |
142 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); | 142 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); |
143 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 143 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
144 | 144 | ||
145 | 145 | ||
146 | 146 | ||
147 | } | 147 | } |
148 | 148 | ||
149 | KOCalEditView::~KOCalEditView() | 149 | KOCalEditView::~KOCalEditView() |
150 | { | 150 | { |
151 | // no need to delete child widgets, Qt does it all for us | 151 | // no need to delete child widgets, Qt does it all for us |
152 | } | 152 | } |
153 | void KOCalEditView::readConfig( KConfig *) | 153 | void KOCalEditView::readConfig( KConfig *) |
154 | { | 154 | { |
155 | 155 | ||
156 | } | 156 | } |
157 | void KOCalEditView::addCal() | 157 | void KOCalEditView::addCal() |
158 | { | 158 | { |
159 | qDebug("addcal "); | 159 | qDebug("addcal "); |