-rw-r--r-- | korganizer/kofilterview.cpp | 14 | ||||
-rw-r--r-- | korganizer/kofilterview.h | 2 |
2 files changed, 11 insertions, 5 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 9633b2c..3333ac2 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -113,294 +113,300 @@ void KOFilterView::updateFilters() | |||
113 | while(filter) { | 113 | while(filter) { |
114 | mSelectionCombo->insertItem(filter->name()); | 114 | mSelectionCombo->insertItem(filter->name()); |
115 | filter = mFilters->next(); | 115 | filter = mFilters->next(); |
116 | } | 116 | } |
117 | } | 117 | } |
118 | 118 | ||
119 | CalFilter *KOFilterView::selectedFilter() | 119 | CalFilter *KOFilterView::selectedFilter() |
120 | { | 120 | { |
121 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); | 121 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); |
122 | return f; | 122 | return f; |
123 | } | 123 | } |
124 | 124 | ||
125 | void KOFilterView::setSelectedFilter(QString filterName) | 125 | void KOFilterView::setSelectedFilter(QString filterName) |
126 | { | 126 | { |
127 | int filter_num = mSelectionCombo->count(); | 127 | int filter_num = mSelectionCombo->count(); |
128 | int i; | 128 | int i; |
129 | for (i=0;i<filter_num;i++) { | 129 | for (i=0;i<filter_num;i++) { |
130 | if (mSelectionCombo->text(i)==filterName) | 130 | if (mSelectionCombo->text(i)==filterName) |
131 | mSelectionCombo->setCurrentItem(i); | 131 | mSelectionCombo->setCurrentItem(i); |
132 | } | 132 | } |
133 | emit filterChanged(); | 133 | emit filterChanged(); |
134 | } | 134 | } |
135 | void KOFilterView::setSelectedFilter( int fil ) | 135 | void KOFilterView::setSelectedFilter( int fil ) |
136 | { | 136 | { |
137 | if ( fil >= mSelectionCombo->count() ) | 137 | if ( fil >= mSelectionCombo->count() ) |
138 | return; | 138 | return; |
139 | mSelectionCombo->setCurrentItem( fil ); | 139 | mSelectionCombo->setCurrentItem( fil ); |
140 | emit filterChanged(); | 140 | emit filterChanged(); |
141 | } | 141 | } |
142 | 142 | ||
143 | 143 | ||
144 | 144 | ||
145 | KOCalEditView::KOCalEditView(QWidget* parent, | 145 | KOCalEditView::KOCalEditView(QWidget* parent, |
146 | const char* name ) | 146 | const char* name ) |
147 | : QWidget(parent,name) | 147 | : QWidget(parent,name) |
148 | { | 148 | { |
149 | mw = 0; | 149 | mw = 0; |
150 | ml = new QVBoxLayout ( this ); | 150 | ml = new QVBoxLayout ( this ); |
151 | } | 151 | } |
152 | 152 | ||
153 | KOCalEditView::~KOCalEditView() | 153 | KOCalEditView::~KOCalEditView() |
154 | { | 154 | { |
155 | // no need to delete child widgets, Qt does it all for us | 155 | // no need to delete child widgets, Qt does it all for us |
156 | } | 156 | } |
157 | void KOCalEditView::selectCal(int id ,bool b) | 157 | void KOCalEditView::selectCal(int id ,bool b) |
158 | { | 158 | { |
159 | KOPrefs::instance()->getCalendar( id )->isEnabled = b; | 159 | KOPrefs::instance()->getCalendar( id )->isEnabled = b; |
160 | emit calendarEnabled ( id, b ); | 160 | emit calendarEnabled ( id, b ); |
161 | emit needsUpdate(); | 161 | emit needsUpdate(); |
162 | 162 | ||
163 | } | 163 | } |
164 | void KOCalEditView::selectStdCal( int id, bool b ) | 164 | void KOCalEditView::selectStdCal( int id, bool b ) |
165 | { | 165 | { |
166 | 166 | ||
167 | if ( !b ) { | 167 | if ( !b ) { |
168 | KOCalCheckButton* it = (KOCalCheckButton*) sender(); | 168 | KOCalCheckButton* it = (KOCalCheckButton*) sender(); |
169 | if ( it ) { | 169 | if ( it ) { |
170 | it->blockSignals( true ); | 170 | it->blockSignals( true ); |
171 | it->setChecked( true ); | 171 | it->setChecked( true ); |
172 | it->blockSignals( false ); | 172 | it->blockSignals( false ); |
173 | return; | 173 | return; |
174 | } | 174 | } |
175 | return; | 175 | return; |
176 | } | 176 | } |
177 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); | 177 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); |
178 | KOCalCheckButton* it = mStdandardB.first(); | 178 | KOCalCheckButton* it = mStdandardB.first(); |
179 | while ( it ) { | 179 | while ( it ) { |
180 | if ( it->isChecked() ) { | 180 | if ( it->isChecked() ) { |
181 | if ( it != sen ) { | 181 | if ( it != sen ) { |
182 | it->blockSignals( true ); | 182 | it->blockSignals( true ); |
183 | it->setChecked( false ); | 183 | it->setChecked( false ); |
184 | it->blockSignals( false ); | 184 | it->blockSignals( false ); |
185 | break; | 185 | break; |
186 | } | 186 | } |
187 | } | 187 | } |
188 | it = mStdandardB.next(); | 188 | it = mStdandardB.next(); |
189 | } | 189 | } |
190 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 190 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
191 | while ( kkf ) { | 191 | while ( kkf ) { |
192 | kkf->isStandard = false; | 192 | kkf->isStandard = false; |
193 | kkf = KOPrefs::instance()->mCalendars.next(); | 193 | kkf = KOPrefs::instance()->mCalendars.next(); |
194 | } | 194 | } |
195 | KOPrefs::instance()->getCalendar( id )->isStandard = true; | 195 | KOPrefs::instance()->getCalendar( id )->isStandard = true; |
196 | emit setCalendarDefault ( id ); | 196 | emit setCalendarDefault ( id ); |
197 | } | 197 | } |
198 | 198 | ||
199 | void KOCalEditView::selectCalAlarm(int id ,bool b ) | 199 | void KOCalEditView::selectCalAlarm(int id ,bool b ) |
200 | { | 200 | { |
201 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; | 201 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; |
202 | emit alarmEnabled ( id , b ); | 202 | emit alarmEnabled ( id , b ); |
203 | emit needsUpdate(); | 203 | emit needsUpdate(); |
204 | } | 204 | } |
205 | void KOCalEditView::selectReadOnly(int id ,bool b ) | 205 | void KOCalEditView::selectReadOnly(int id ,bool b ) |
206 | { | 206 | { |
207 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | 207 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; |
208 | emit calendarReadonly ( id , b ); | 208 | emit calendarReadonly ( id , b ); |
209 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b && id > 1 ) { | ||
210 | KOPrefs::instance()->getCalendar( id )->isStandard = false; | ||
211 | KOPrefs::instance()->getCalendar( 1 )->isStandard = true; | ||
212 | emit setCalendarDefault ( 1 ); | ||
213 | } | ||
209 | emit needsUpdate(); | 214 | emit needsUpdate(); |
215 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | ||
210 | 216 | ||
211 | } | 217 | } |
212 | void KOCalEditView::setColor( const QColor& c, int id ) | 218 | void KOCalEditView::setColor( const QColor& c, int id ) |
213 | { | 219 | { |
214 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; | 220 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; |
215 | emit needsUpdate(); | 221 | emit needsUpdate(); |
216 | } | 222 | } |
217 | void KOCalEditView::deleteCal( int id ) | 223 | void KOCalEditView::deleteCal( int id ) |
218 | { | 224 | { |
219 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); | 225 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); |
220 | QString name = kkf->mName; | 226 | QString name = kkf->mName; |
221 | QString file = kkf->mFileName; | 227 | QString file = kkf->mFileName; |
222 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b><tr> Do you want to remove this calendar from KO/Pi? (The file is not removed, of course!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; | 228 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b><tr> Do you want to remove this calendar from KO/Pi? (The file is not removed, of course!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; |
223 | if ( kkf->isStandard ) | 229 | if ( kkf->isStandard ) |
224 | selectStdCal( 1, true ); | 230 | selectStdCal( 1, true ); |
225 | emit removeCalendar ( id ); | 231 | emit removeCalendar ( id ); |
226 | KOPrefs::instance()->mCalendars.remove ( kkf ); | 232 | KOPrefs::instance()->mCalendars.remove ( kkf ); |
227 | emit needsUpdate(); | 233 | emit needsUpdate(); |
228 | readConfig(); | 234 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
229 | } | 235 | } |
230 | void KOCalEditView::infoCal( int id ) | 236 | void KOCalEditView::infoCal( int id ) |
231 | { | 237 | { |
232 | QString name = KOPrefs::instance()->getCalendar( id )->mName; | 238 | QString name = KOPrefs::instance()->getCalendar( id )->mName; |
233 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; | 239 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; |
234 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { | 240 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { |
235 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { | 241 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { |
236 | emit calendarAdded( id ); | 242 | emit calendarAdded( id ); |
237 | readConfig(); | ||
238 | emit needsUpdate(); | 243 | emit needsUpdate(); |
244 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | ||
239 | } | 245 | } |
240 | } | 246 | } |
241 | else | 247 | else |
242 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); | 248 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); |
243 | } | 249 | } |
244 | void KOCalEditView::readConfig() | 250 | void KOCalEditView::readConfig() |
245 | { | 251 | { |
246 | 252 | ||
247 | mStdandardB.clear(); | 253 | mStdandardB.clear(); |
248 | mEnabledB.clear(); | 254 | mEnabledB.clear(); |
249 | mAlarmB.clear(); | 255 | mAlarmB.clear(); |
250 | mROB.clear(); | 256 | mROB.clear(); |
251 | 257 | ||
252 | if ( mw ) delete mw; | 258 | if ( mw ) delete mw; |
253 | mw = new QWidget ( this ); | 259 | mw = new QWidget ( this ); |
254 | ml->addWidget ( mw ); | 260 | ml->addWidget ( mw ); |
255 | 261 | ||
256 | mainLayout = new QGridLayout ( mw , 2, 8 ); | 262 | mainLayout = new QGridLayout ( mw , 2, 8 ); |
257 | //mainLayout->setSpacing( 3 ); | 263 | //mainLayout->setSpacing( 3 ); |
258 | QPushButton * addBut = new QPushButton ( mw ); | 264 | QPushButton * addBut = new QPushButton ( mw ); |
259 | mainLayout->addWidget( addBut,0,0 ); | 265 | mainLayout->addWidget( addBut,0,0 ); |
260 | addBut->setPixmap ( SmallIcon("plus")); | 266 | addBut->setPixmap ( SmallIcon("plus")); |
261 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | 267 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); |
262 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 268 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
263 | 269 | ||
264 | addBut = new QPushButton ( mw ); | 270 | addBut = new QPushButton ( mw ); |
265 | mainLayout->addWidget( addBut,0,1 ); | 271 | mainLayout->addWidget( addBut,0,1 ); |
266 | addBut->setPixmap ( SmallIcon("eye")); | 272 | addBut->setPixmap ( SmallIcon("eye")); |
267 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 273 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
268 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 274 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
269 | 275 | ||
270 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", mw ); | 276 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", mw ); |
271 | mainLayout->addWidget( lab,0,2 ); | 277 | mainLayout->addWidget( lab,0,2 ); |
272 | 278 | ||
273 | addBut = new QPushButton ( mw ); | 279 | addBut = new QPushButton ( mw ); |
274 | mainLayout->addWidget( addBut,0,3 ); | 280 | mainLayout->addWidget( addBut,0,3 ); |
275 | addBut->setPixmap ( SmallIcon("bell")); | 281 | addBut->setPixmap ( SmallIcon("bell")); |
276 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 282 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
277 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 283 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
278 | 284 | ||
279 | addBut = new QPushButton ( mw ); | 285 | addBut = new QPushButton ( mw ); |
280 | mainLayout->addWidget( addBut,0,4 ); | 286 | mainLayout->addWidget( addBut,0,4 ); |
281 | addBut->setPixmap ( SmallIcon("pencil")); | 287 | addBut->setPixmap ( SmallIcon("pencil")); |
282 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); | 288 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); |
283 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 289 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
284 | 290 | ||
285 | lab = new QLabel ( i18n(" Color "), mw ); | 291 | lab = new QLabel ( i18n(" Color "), mw ); |
286 | mainLayout->addWidget( lab,0,5 ); | 292 | mainLayout->addWidget( lab,0,5 ); |
287 | #if 0 | 293 | #if 0 |
288 | addBut = new QPushButton ( mw ); | 294 | addBut = new QPushButton ( mw ); |
289 | mainLayout->addWidget( addBut,0,6 ); | 295 | mainLayout->addWidget( addBut,0,6 ); |
290 | addBut->setPixmap ( SmallIcon("minus")); | 296 | addBut->setPixmap ( SmallIcon("minus")); |
291 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); | 297 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); |
292 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 298 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
293 | #endif | 299 | #endif |
294 | 300 | ||
295 | 301 | ||
296 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 302 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
297 | int row = 1; | 303 | int row = 1; |
298 | while ( kkf ) { | 304 | while ( kkf ) { |
299 | 305 | ||
300 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); | 306 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); |
301 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); | 307 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); |
302 | cb->setChecked( kkf->isStandard ); | 308 | cb->setChecked( kkf->isStandard ); |
303 | cb->setNum( kkf->mCalNumber ); | 309 | cb->setNum( kkf->mCalNumber ); |
304 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); | 310 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); |
305 | if ( kkf->mErrorOnLoad ) | 311 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) |
306 | cb->setEnabled( false ); | 312 | cb->setEnabled( false ); |
307 | cb = new KOCalCheckButton( mw ); | 313 | cb = new KOCalCheckButton( mw ); |
308 | mainLayout->addWidget( cb,row,1 );mEnabledB.append( cb ); | 314 | mainLayout->addWidget( cb,row,1 );mEnabledB.append( cb ); |
309 | cb->setChecked( kkf->isEnabled ); | 315 | cb->setChecked( kkf->isEnabled ); |
310 | cb->setNum( kkf->mCalNumber ); | 316 | cb->setNum( kkf->mCalNumber ); |
311 | if ( kkf->mErrorOnLoad ) | 317 | if ( kkf->mErrorOnLoad ) |
312 | cb->setEnabled( false ); | 318 | cb->setEnabled( false ); |
313 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); | 319 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); |
314 | KOCalButton* name = new KOCalButton( mw ); | 320 | KOCalButton* name = new KOCalButton( mw ); |
315 | name->setNum( kkf->mCalNumber ); | 321 | name->setNum( kkf->mCalNumber ); |
316 | name->setText( kkf->mName ); | 322 | name->setText( kkf->mName ); |
317 | mainLayout->addWidget( name,row,2 ); | 323 | mainLayout->addWidget( name,row,2 ); |
318 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); | 324 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); |
319 | cb = new KOCalCheckButton( mw ); | 325 | cb = new KOCalCheckButton( mw ); |
320 | mainLayout->addWidget( cb,row,3 );mAlarmB.append( cb ); | 326 | mainLayout->addWidget( cb,row,3 );mAlarmB.append( cb ); |
321 | cb->setChecked( kkf->isAlarmEnabled ); | 327 | cb->setChecked( kkf->isAlarmEnabled ); |
322 | cb->setNum( kkf->mCalNumber ); | 328 | cb->setNum( kkf->mCalNumber ); |
323 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); | 329 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); |
324 | if ( kkf->mErrorOnLoad ) | 330 | if ( kkf->mErrorOnLoad ) |
325 | cb->setEnabled( false ); | 331 | cb->setEnabled( false ); |
326 | cb = new KOCalCheckButton( mw ); | 332 | cb = new KOCalCheckButton( mw ); |
327 | mainLayout->addWidget( cb,row,4 );mROB.append( cb ); | 333 | mainLayout->addWidget( cb,row,4 );mROB.append( cb ); |
328 | cb->setChecked( kkf->isReadOnly ); | 334 | cb->setChecked( kkf->isReadOnly ); |
329 | cb->setNum( kkf->mCalNumber ); | 335 | cb->setNum( kkf->mCalNumber ); |
330 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); | 336 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); |
331 | if ( kkf->mErrorOnLoad ) | 337 | if ( kkf->mErrorOnLoad ) |
332 | cb->setEnabled( false ); | 338 | cb->setEnabled( false ); |
333 | KColorButton *colb = new KColorButton( mw ); | 339 | KColorButton *colb = new KColorButton( mw ); |
334 | mainLayout->addWidget( colb,row,5 ); | 340 | mainLayout->addWidget( colb,row,5 ); |
335 | colb->setID( kkf->mCalNumber ); | 341 | colb->setID( kkf->mCalNumber ); |
336 | colb->setColor( kkf->mDefaultColor ); | 342 | colb->setColor( kkf->mDefaultColor ); |
337 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); | 343 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); |
338 | if ( row > 1) { | 344 | if ( row > 1) { |
339 | KOCalButton* calb = new KOCalButton( mw ); | 345 | KOCalButton* calb = new KOCalButton( mw ); |
340 | mainLayout->addWidget( calb,row,6 ); | 346 | mainLayout->addWidget( calb,row,6 ); |
341 | calb->setNum( kkf->mCalNumber ); | 347 | calb->setNum( kkf->mCalNumber ); |
342 | calb->setPixmap ( SmallIcon("minus")); | 348 | calb->setPixmap ( SmallIcon("minus")); |
343 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); | 349 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); |
344 | int hei = calb->sizeHint().height(); | 350 | int hei = calb->sizeHint().height(); |
345 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); | 351 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); |
346 | } | 352 | } |
347 | ++row; | 353 | ++row; |
348 | kkf = KOPrefs::instance()->mCalendars.next(); | 354 | kkf = KOPrefs::instance()->mCalendars.next(); |
349 | } | 355 | } |
350 | lab = new QLabel ( "", mw ); | 356 | lab = new QLabel ( "", mw ); |
351 | mainLayout->addWidget( lab,row,0 ); | 357 | mainLayout->addWidget( lab,row,0 ); |
352 | mw->show(); | 358 | mw->show(); |
353 | 359 | ||
354 | } | 360 | } |
355 | void KOCalEditView::addCal() | 361 | void KOCalEditView::addCal() |
356 | { | 362 | { |
357 | KONewCalPrefs prefs ( this ); | 363 | KONewCalPrefs prefs ( this ); |
358 | if ( ! prefs.exec() ) | 364 | if ( ! prefs.exec() ) |
359 | return; | 365 | return; |
360 | QString name = prefs.calName(); | 366 | QString name = prefs.calName(); |
361 | QString file = prefs.calFileName(); | 367 | QString file = prefs.calFileName(); |
362 | QFileInfo fi ( file ); | 368 | QFileInfo fi ( file ); |
363 | if (!fi.exists() ) { | 369 | if (!fi.exists() ) { |
364 | KMessageBox::information( this, i18n("File does not exist!\nNo calendar added!")); | 370 | KMessageBox::information( this, i18n("File does not exist!\nNo calendar added!")); |
365 | return; | 371 | return; |
366 | } | 372 | } |
367 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); | 373 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); |
368 | kkf->mName = name; | 374 | kkf->mName = name; |
369 | kkf->mFileName = file; | 375 | kkf->mFileName = file; |
370 | emit calendarAdded( kkf->mCalNumber ); | 376 | emit calendarAdded( kkf->mCalNumber ); |
371 | readConfig(); | ||
372 | emit needsUpdate(); | 377 | emit needsUpdate(); |
378 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | ||
373 | } | 379 | } |
374 | void KOCalEditView::enableAll() | 380 | void KOCalEditView::enableAll() |
375 | { | 381 | { |
376 | toggleList( mEnabledB ); | 382 | toggleList( mEnabledB ); |
377 | } | 383 | } |
378 | void KOCalEditView::enableAlarm() | 384 | void KOCalEditView::enableAlarm() |
379 | { | 385 | { |
380 | toggleList( mAlarmB ); | 386 | toggleList( mAlarmB ); |
381 | } | 387 | } |
382 | void KOCalEditView::disableRO() | 388 | void KOCalEditView::disableRO() |
383 | { | 389 | { |
384 | toggleList( mROB ); | 390 | toggleList( mROB ); |
385 | } | 391 | } |
386 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) | 392 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) |
387 | { | 393 | { |
388 | bool dis = false; | 394 | bool dis = false; |
389 | KOCalCheckButton* it = list.first(); | 395 | KOCalCheckButton* it = list.first(); |
390 | while ( it ) { | 396 | while ( it ) { |
391 | if ( !it->isChecked() ) { | 397 | if ( !it->isChecked() ) { |
392 | dis = true; | 398 | dis = true; |
393 | break; | 399 | break; |
394 | } | 400 | } |
395 | it = list.next(); | 401 | it = list.next(); |
396 | } | 402 | } |
397 | it = list.first(); | 403 | it = list.first(); |
398 | while ( it ) { | 404 | while ( it ) { |
399 | it->setChecked(dis); | 405 | it->setChecked(dis); |
400 | it = list.next(); | 406 | it = list.next(); |
401 | } | 407 | } |
402 | } | 408 | } |
403 | void KOCalEditView::deleteAll() | 409 | void KOCalEditView::deleteAll() |
404 | { | 410 | { |
405 | qDebug("delteAll"); | 411 | qDebug("delteAll"); |
406 | } | 412 | } |
diff --git a/korganizer/kofilterview.h b/korganizer/kofilterview.h index 4a0cd8a..1849e36 100644 --- a/korganizer/kofilterview.h +++ b/korganizer/kofilterview.h | |||
@@ -24,133 +24,133 @@ | |||
24 | #define KOFILTERVIEW_H | 24 | #define KOFILTERVIEW_H |
25 | 25 | ||
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | #include <qcheckbox.h> | 27 | #include <qcheckbox.h> |
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | #include <kconfig.h> | 29 | #include <kconfig.h> |
30 | #include "kofilterview_base.h" | 30 | #include "kofilterview_base.h" |
31 | 31 | ||
32 | #include <libkcal/calfilter.h> | 32 | #include <libkcal/calfilter.h> |
33 | 33 | ||
34 | class QGridLayout; | 34 | class QGridLayout; |
35 | 35 | ||
36 | using namespace KCal; | 36 | using namespace KCal; |
37 | class KOCalButton : public QPushButton | 37 | class KOCalButton : public QPushButton |
38 | { | 38 | { |
39 | Q_OBJECT | 39 | Q_OBJECT |
40 | public: | 40 | public: |
41 | KOCalButton( QWidget *parent=0, const char *name=0 ) : | 41 | KOCalButton( QWidget *parent=0, const char *name=0 ) : |
42 | QPushButton( parent, name) | 42 | QPushButton( parent, name) |
43 | { | 43 | { |
44 | connect( this, SIGNAL( clicked() ), | 44 | connect( this, SIGNAL( clicked() ), |
45 | SLOT( bottonClicked() )); | 45 | SLOT( bottonClicked() )); |
46 | mNumber = -1; | 46 | mNumber = -1; |
47 | } | 47 | } |
48 | void setNum ( int num ) {mNumber = num; } | 48 | void setNum ( int num ) {mNumber = num; } |
49 | signals: | 49 | signals: |
50 | void selectNum ( int ); | 50 | void selectNum ( int ); |
51 | private: | 51 | private: |
52 | int mNumber; | 52 | int mNumber; |
53 | void keyPressEvent ( QKeyEvent * e ) | 53 | void keyPressEvent ( QKeyEvent * e ) |
54 | { | 54 | { |
55 | e->ignore(); | 55 | e->ignore(); |
56 | } | 56 | } |
57 | 57 | ||
58 | private slots : | 58 | private slots : |
59 | void bottonClicked() { if ( mNumber > 0 ) emit selectNum ( mNumber ); } | 59 | void bottonClicked() { if ( mNumber > 0 ) emit selectNum ( mNumber ); } |
60 | }; | 60 | }; |
61 | class KOCalCheckButton : public QCheckBox | 61 | class KOCalCheckButton : public QCheckBox |
62 | { | 62 | { |
63 | Q_OBJECT | 63 | Q_OBJECT |
64 | public: | 64 | public: |
65 | KOCalCheckButton( QWidget *parent=0, const char *name=0 ) : | 65 | KOCalCheckButton( QWidget *parent=0, const char *name=0 ) : |
66 | QCheckBox( parent, name) | 66 | QCheckBox( parent, name) |
67 | { | 67 | { |
68 | connect( this, SIGNAL( toggled ( bool ) ), | 68 | connect( this, SIGNAL( toggled ( bool ) ), |
69 | SLOT( bottonClicked( bool ) )); | 69 | SLOT( bottonClicked( bool ) )); |
70 | mNumber = -1; | 70 | mNumber = -1; |
71 | //setMaximumWidth( 10 ); | 71 | //setMaximumWidth( 10 ); |
72 | 72 | ||
73 | } | 73 | } |
74 | void setNum ( int num ) {mNumber = num; } | 74 | void setNum ( int num ) {mNumber = num; } |
75 | signals: | 75 | signals: |
76 | void selectNum ( int, bool ); | 76 | void selectNum ( int, bool ); |
77 | private: | 77 | private: |
78 | int mNumber; | 78 | int mNumber; |
79 | void keyPressEvent ( QKeyEvent * e ) | 79 | void keyPressEvent ( QKeyEvent * e ) |
80 | { | 80 | { |
81 | e->ignore(); | 81 | e->ignore(); |
82 | } | 82 | } |
83 | 83 | ||
84 | private slots : | 84 | private slots : |
85 | void bottonClicked( bool b) { if ( mNumber > 0 ) emit selectNum ( mNumber , b); } | 85 | void bottonClicked( bool b) { if ( mNumber > 0 ) emit selectNum ( mNumber , b); } |
86 | }; | 86 | }; |
87 | 87 | ||
88 | 88 | ||
89 | 89 | ||
90 | class KOFilterView : public KOFilterView_base | 90 | class KOFilterView : public KOFilterView_base |
91 | { | 91 | { |
92 | Q_OBJECT | 92 | Q_OBJECT |
93 | public: | 93 | public: |
94 | KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent=0,const char* name=0, WFlags fl=0); | 94 | KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent=0,const char* name=0, WFlags fl=0); |
95 | ~KOFilterView(); | 95 | ~KOFilterView(); |
96 | 96 | ||
97 | void updateFilters(); | 97 | void updateFilters(); |
98 | 98 | ||
99 | bool filtersEnabled(); | 99 | bool filtersEnabled(); |
100 | void setFiltersEnabled(bool); | 100 | void setFiltersEnabled(bool); |
101 | CalFilter *selectedFilter(); | 101 | CalFilter *selectedFilter(); |
102 | void setSelectedFilter(QString); | 102 | void setSelectedFilter(QString); |
103 | void setSelectedFilter( int ); | 103 | void setSelectedFilter( int ); |
104 | 104 | ||
105 | signals: | 105 | signals: |
106 | void filterChanged(); | 106 | void filterChanged(); |
107 | void editFilters(); | 107 | void editFilters(); |
108 | 108 | ||
109 | private: | 109 | private: |
110 | QPtrList<CalFilter> *mFilters; | 110 | QPtrList<CalFilter> *mFilters; |
111 | }; | 111 | }; |
112 | 112 | ||
113 | class KOCalEditView : public QWidget | 113 | class KOCalEditView : public QWidget |
114 | { | 114 | { |
115 | Q_OBJECT | 115 | Q_OBJECT |
116 | public: | 116 | public: |
117 | KOCalEditView( QWidget* parent=0,const char* name=0); | 117 | KOCalEditView( QWidget* parent=0,const char* name=0); |
118 | ~KOCalEditView(); | 118 | ~KOCalEditView(); |
119 | 119 | ||
120 | void readConfig(); | ||
121 | public slots: | 120 | public slots: |
122 | void addCal(); | 121 | void addCal(); |
123 | void enableAll(); | 122 | void enableAll(); |
124 | void enableAlarm(); | 123 | void enableAlarm(); |
125 | void disableRO(); | 124 | void disableRO(); |
126 | void deleteAll(); | 125 | void deleteAll(); |
127 | void selectStdCal(int,bool ); | 126 | void selectStdCal(int,bool ); |
128 | void selectCal(int,bool ); | 127 | void selectCal(int,bool ); |
129 | void selectCalAlarm(int,bool ); | 128 | void selectCalAlarm(int,bool ); |
130 | void selectReadOnly(int,bool ); | 129 | void selectReadOnly(int,bool ); |
131 | void setColor(const QColor &,int) ; | 130 | void setColor(const QColor &,int) ; |
132 | void deleteCal(int) ; | 131 | void deleteCal(int) ; |
133 | void infoCal(int) ; | 132 | void infoCal(int) ; |
133 | void readConfig(); | ||
134 | signals: | 134 | signals: |
135 | void alarmEnabled ( int cal, bool enable ); | 135 | void alarmEnabled ( int cal, bool enable ); |
136 | void calendarEnabled ( int cal, bool enable ); | 136 | void calendarEnabled ( int cal, bool enable ); |
137 | void calendarReadonly ( int cal, bool readonly ); | 137 | void calendarReadonly ( int cal, bool readonly ); |
138 | void setCalendarDefault ( int cal ); | 138 | void setCalendarDefault ( int cal ); |
139 | void removeCalendar ( int cal ); | 139 | void removeCalendar ( int cal ); |
140 | void calendarAdded( int ); | 140 | void calendarAdded( int ); |
141 | void needsUpdate(); | 141 | void needsUpdate(); |
142 | 142 | ||
143 | private: | 143 | private: |
144 | QVBoxLayout* ml; | 144 | QVBoxLayout* ml; |
145 | QWidget *mw; | 145 | QWidget *mw; |
146 | void toggleList ( QPtrList<KOCalCheckButton> ); | 146 | void toggleList ( QPtrList<KOCalCheckButton> ); |
147 | QPtrList<KOCalCheckButton> mStdandardB; | 147 | QPtrList<KOCalCheckButton> mStdandardB; |
148 | QPtrList<KOCalCheckButton> mEnabledB; | 148 | QPtrList<KOCalCheckButton> mEnabledB; |
149 | QPtrList<KOCalCheckButton> mAlarmB; | 149 | QPtrList<KOCalCheckButton> mAlarmB; |
150 | QPtrList<KOCalCheckButton> mROB; | 150 | QPtrList<KOCalCheckButton> mROB; |
151 | QGridLayout* mainLayout; | 151 | QGridLayout* mainLayout; |
152 | }; | 152 | }; |
153 | 153 | ||
154 | 154 | ||
155 | 155 | ||
156 | #endif // KOFILTERVIEW_H | 156 | #endif // KOFILTERVIEW_H |