author | zautrix <zautrix> | 2005-07-07 12:30:17 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-07 12:30:17 (UTC) |
commit | 766b53919de14b8faec22db32b6a750acde0b760 (patch) (unidiff) | |
tree | bb07c0af89b0dddf4257a61e9f5b1cf23c4a282a | |
parent | b4d85da57e2d558ec088af6f3b2a34b1854462c0 (diff) | |
download | kdepimpi-766b53919de14b8faec22db32b6a750acde0b760.zip kdepimpi-766b53919de14b8faec22db32b6a750acde0b760.tar.gz kdepimpi-766b53919de14b8faec22db32b6a750acde0b760.tar.bz2 |
fixesss
-rw-r--r-- | korganizer/calendarview.cpp | 70 | ||||
-rw-r--r-- | korganizer/calendarview.h | 2 | ||||
-rw-r--r-- | korganizer/kolistview.cpp | 39 | ||||
-rw-r--r-- | korganizer/komonthview.cpp | 124 | ||||
-rw-r--r-- | korganizer/komonthview.h | 2 | ||||
-rw-r--r-- | korganizer/koprefs.cpp | 1 | ||||
-rw-r--r-- | korganizer/koprefs.h | 1 | ||||
-rw-r--r-- | korganizer/koprefsdialog.cpp | 4 |
8 files changed, 192 insertions, 51 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 9a114d0..e766b8f 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -2209,1030 +2209,1100 @@ bool CalendarView::checkFileVersion(QString fn) | |||
2209 | mSyncManager->mSyncAlgoPrefs = 3; | 2209 | mSyncManager->mSyncAlgoPrefs = 3; |
2210 | mSyncManager->mWriteBackFile = false; | 2210 | mSyncManager->mWriteBackFile = false; |
2211 | mSyncManager->mWriteBackExistingOnly = false; | 2211 | mSyncManager->mWriteBackExistingOnly = false; |
2212 | mSyncManager->mShowSyncSummary = false; | 2212 | mSyncManager->mShowSyncSummary = false; |
2213 | syncCalendar( fn, 3 ); | 2213 | syncCalendar( fn, 3 ); |
2214 | Event * e = getLastSyncEvent(); | 2214 | Event * e = getLastSyncEvent(); |
2215 | if ( e ) | 2215 | if ( e ) |
2216 | mCalendar->deleteEvent( e ); | 2216 | mCalendar->deleteEvent( e ); |
2217 | return true; | 2217 | return true; |
2218 | } | 2218 | } |
2219 | bool CalendarView::saveCalendars() | 2219 | bool CalendarView::saveCalendars() |
2220 | { | 2220 | { |
2221 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 2221 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
2222 | KopiCalendarFile * cal = calendars.first(); | 2222 | KopiCalendarFile * cal = calendars.first(); |
2223 | mCalendar->setDefaultCalendar( 1 ); | 2223 | mCalendar->setDefaultCalendar( 1 ); |
2224 | mCalendar->setDefaultCalendarEnabledOnly(); | 2224 | mCalendar->setDefaultCalendarEnabledOnly(); |
2225 | saveCalendar( MainWindow::defaultFileName() ); | 2225 | saveCalendar( MainWindow::defaultFileName() ); |
2226 | cal = calendars.next(); | 2226 | cal = calendars.next(); |
2227 | while ( cal ) { | 2227 | while ( cal ) { |
2228 | if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { | 2228 | if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { |
2229 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | 2229 | mCalendar->setDefaultCalendar( cal->mCalNumber ); |
2230 | mCalendar->setDefaultCalendarEnabledOnly(); | 2230 | mCalendar->setDefaultCalendarEnabledOnly(); |
2231 | if ( saveCalendar( cal->mFileName ) ) | 2231 | if ( saveCalendar( cal->mFileName ) ) |
2232 | cal->mLoadDt = QDateTime::currentDateTime(); | 2232 | cal->mLoadDt = QDateTime::currentDateTime(); |
2233 | } | 2233 | } |
2234 | cal = calendars.next(); | 2234 | cal = calendars.next(); |
2235 | } | 2235 | } |
2236 | restoreCalendarSettings(); | 2236 | restoreCalendarSettings(); |
2237 | return true; | 2237 | return true; |
2238 | } | 2238 | } |
2239 | bool CalendarView::saveCalendar( QString filename ) | 2239 | bool CalendarView::saveCalendar( QString filename ) |
2240 | { | 2240 | { |
2241 | 2241 | ||
2242 | // Store back all unsaved data into calendar object | 2242 | // Store back all unsaved data into calendar object |
2243 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); | 2243 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); |
2244 | if ( mViewManager->currentView() ) | 2244 | if ( mViewManager->currentView() ) |
2245 | mViewManager->currentView()->flushView(); | 2245 | mViewManager->currentView()->flushView(); |
2246 | 2246 | ||
2247 | 2247 | ||
2248 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); | 2248 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); |
2249 | mStorage->setSaveFormat( new ICalFormat() ); | 2249 | mStorage->setSaveFormat( new ICalFormat() ); |
2250 | mStorage->setFileName( filename ); | 2250 | mStorage->setFileName( filename ); |
2251 | bool success; | 2251 | bool success; |
2252 | success = mStorage->save(); | 2252 | success = mStorage->save(); |
2253 | if ( !success ) { | 2253 | if ( !success ) { |
2254 | return false; | 2254 | return false; |
2255 | } | 2255 | } |
2256 | if ( filename == MainWindow::defaultFileName() ) { | 2256 | if ( filename == MainWindow::defaultFileName() ) { |
2257 | setLoadedFileVersion( lfv ); | 2257 | setLoadedFileVersion( lfv ); |
2258 | watchSavedFile(); | 2258 | watchSavedFile(); |
2259 | } | 2259 | } |
2260 | return true; | 2260 | return true; |
2261 | } | 2261 | } |
2262 | 2262 | ||
2263 | void CalendarView::closeCalendar() | 2263 | void CalendarView::closeCalendar() |
2264 | { | 2264 | { |
2265 | 2265 | ||
2266 | // child windows no longer valid | 2266 | // child windows no longer valid |
2267 | clearAllViews(); | 2267 | clearAllViews(); |
2268 | emit closingDown(); | 2268 | emit closingDown(); |
2269 | 2269 | ||
2270 | mCalendar->close(); | 2270 | mCalendar->close(); |
2271 | setModified(false); | 2271 | setModified(false); |
2272 | updateView(); | 2272 | updateView(); |
2273 | } | 2273 | } |
2274 | 2274 | ||
2275 | void CalendarView::archiveCalendar() | 2275 | void CalendarView::archiveCalendar() |
2276 | { | 2276 | { |
2277 | mDialogManager->showArchiveDialog(); | 2277 | mDialogManager->showArchiveDialog(); |
2278 | } | 2278 | } |
2279 | 2279 | ||
2280 | 2280 | ||
2281 | void CalendarView::readSettings() | 2281 | void CalendarView::readSettings() |
2282 | { | 2282 | { |
2283 | 2283 | ||
2284 | 2284 | ||
2285 | // mViewManager->showAgendaView(); | 2285 | // mViewManager->showAgendaView(); |
2286 | QString str; | 2286 | QString str; |
2287 | //qDebug("CalendarView::readSettings() "); | 2287 | //qDebug("CalendarView::readSettings() "); |
2288 | // read settings from the KConfig, supplying reasonable | 2288 | // read settings from the KConfig, supplying reasonable |
2289 | // defaults where none are to be found | 2289 | // defaults where none are to be found |
2290 | KConfig *config = KOGlobals::config(); | 2290 | KConfig *config = KOGlobals::config(); |
2291 | #ifndef KORG_NOSPLITTER | 2291 | #ifndef KORG_NOSPLITTER |
2292 | config->setGroup("KOrganizer Geometry"); | 2292 | config->setGroup("KOrganizer Geometry"); |
2293 | 2293 | ||
2294 | QValueList<int> sizes = config->readIntListEntry("Separator1"); | 2294 | QValueList<int> sizes = config->readIntListEntry("Separator1"); |
2295 | if (sizes.count() != 2) { | 2295 | if (sizes.count() != 2) { |
2296 | sizes << mDateNavigator->minimumSizeHint().width(); | 2296 | sizes << mDateNavigator->minimumSizeHint().width(); |
2297 | sizes << 300; | 2297 | sizes << 300; |
2298 | } | 2298 | } |
2299 | mPanner->setSizes(sizes); | 2299 | mPanner->setSizes(sizes); |
2300 | 2300 | ||
2301 | sizes = config->readIntListEntry("Separator2"); | 2301 | sizes = config->readIntListEntry("Separator2"); |
2302 | if ( ( mResourceView && sizes.count() == 4 ) || | 2302 | if ( ( mResourceView && sizes.count() == 4 ) || |
2303 | ( !mResourceView && sizes.count() == 3 ) ) { | 2303 | ( !mResourceView && sizes.count() == 3 ) ) { |
2304 | mLeftSplitter->setSizes(sizes); | 2304 | mLeftSplitter->setSizes(sizes); |
2305 | } | 2305 | } |
2306 | #endif | 2306 | #endif |
2307 | globalFlagBlockAgenda = 1; | 2307 | globalFlagBlockAgenda = 1; |
2308 | mViewManager->showAgendaView(); | 2308 | mViewManager->showAgendaView(); |
2309 | //mViewManager->readSettings( config ); | 2309 | //mViewManager->readSettings( config ); |
2310 | mTodoList->restoreLayout(config,QString("Todo Layout")); | 2310 | mTodoList->restoreLayout(config,QString("Todo Layout")); |
2311 | readFilterSettings(config); | 2311 | readFilterSettings(config); |
2312 | 2312 | ||
2313 | #ifdef DESKTOP_VERSION | 2313 | #ifdef DESKTOP_VERSION |
2314 | config->setGroup("WidgetLayout"); | 2314 | config->setGroup("WidgetLayout"); |
2315 | QStringList list; | 2315 | QStringList list; |
2316 | list = config->readListEntry("MainLayout"); | 2316 | list = config->readListEntry("MainLayout"); |
2317 | int x,y,w,h; | 2317 | int x,y,w,h; |
2318 | if ( ! list.isEmpty() ) { | 2318 | if ( ! list.isEmpty() ) { |
2319 | x = list[0].toInt(); | 2319 | x = list[0].toInt(); |
2320 | y = list[1].toInt(); | 2320 | y = list[1].toInt(); |
2321 | w = list[2].toInt(); | 2321 | w = list[2].toInt(); |
2322 | h = list[3].toInt(); | 2322 | h = list[3].toInt(); |
2323 | KApplication::testCoords( &x,&y,&w,&h ); | 2323 | KApplication::testCoords( &x,&y,&w,&h ); |
2324 | topLevelWidget()->setGeometry(x,y,w,h); | 2324 | topLevelWidget()->setGeometry(x,y,w,h); |
2325 | 2325 | ||
2326 | } else { | 2326 | } else { |
2327 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); | 2327 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); |
2328 | } | 2328 | } |
2329 | list = config->readListEntry("EditEventLayout"); | 2329 | list = config->readListEntry("EditEventLayout"); |
2330 | if ( ! list.isEmpty() ) { | 2330 | if ( ! list.isEmpty() ) { |
2331 | x = list[0].toInt(); | 2331 | x = list[0].toInt(); |
2332 | y = list[1].toInt(); | 2332 | y = list[1].toInt(); |
2333 | w = list[2].toInt(); | 2333 | w = list[2].toInt(); |
2334 | h = list[3].toInt(); | 2334 | h = list[3].toInt(); |
2335 | KApplication::testCoords( &x,&y,&w,&h ); | 2335 | KApplication::testCoords( &x,&y,&w,&h ); |
2336 | mEventEditor->setGeometry(x,y,w,h); | 2336 | mEventEditor->setGeometry(x,y,w,h); |
2337 | 2337 | ||
2338 | } | 2338 | } |
2339 | list = config->readListEntry("EditTodoLayout"); | 2339 | list = config->readListEntry("EditTodoLayout"); |
2340 | if ( ! list.isEmpty() ) { | 2340 | if ( ! list.isEmpty() ) { |
2341 | x = list[0].toInt(); | 2341 | x = list[0].toInt(); |
2342 | y = list[1].toInt(); | 2342 | y = list[1].toInt(); |
2343 | w = list[2].toInt(); | 2343 | w = list[2].toInt(); |
2344 | h = list[3].toInt(); | 2344 | h = list[3].toInt(); |
2345 | KApplication::testCoords( &x,&y,&w,&h ); | 2345 | KApplication::testCoords( &x,&y,&w,&h ); |
2346 | mTodoEditor->setGeometry(x,y,w,h); | 2346 | mTodoEditor->setGeometry(x,y,w,h); |
2347 | 2347 | ||
2348 | } | 2348 | } |
2349 | list = config->readListEntry("ViewerLayout"); | 2349 | list = config->readListEntry("ViewerLayout"); |
2350 | if ( ! list.isEmpty() ) { | 2350 | if ( ! list.isEmpty() ) { |
2351 | x = list[0].toInt(); | 2351 | x = list[0].toInt(); |
2352 | y = list[1].toInt(); | 2352 | y = list[1].toInt(); |
2353 | w = list[2].toInt(); | 2353 | w = list[2].toInt(); |
2354 | h = list[3].toInt(); | 2354 | h = list[3].toInt(); |
2355 | KApplication::testCoords( &x,&y,&w,&h ); | 2355 | KApplication::testCoords( &x,&y,&w,&h ); |
2356 | getEventViewerDialog()->setGeometry(x,y,w,h); | 2356 | getEventViewerDialog()->setGeometry(x,y,w,h); |
2357 | } | 2357 | } |
2358 | #endif | 2358 | #endif |
2359 | config->setGroup( "Views" ); | 2359 | config->setGroup( "Views" ); |
2360 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); | 2360 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); |
2361 | 2361 | ||
2362 | QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); | 2362 | QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); |
2363 | 2363 | ||
2364 | int resetval = 0; | 2364 | int resetval = 0; |
2365 | int maxVal = 0; | 2365 | int maxVal = 0; |
2366 | if (sizes.count() != 3) { | 2366 | if (sizes.count() != 3) { |
2367 | if ( KOPrefs::instance()->mVerticalScreen ) { | 2367 | if ( KOPrefs::instance()->mVerticalScreen ) { |
2368 | resetval = mDateNavigator->sizeHint().width()+2; | 2368 | resetval = mDateNavigator->sizeHint().width()+2; |
2369 | } else { | 2369 | } else { |
2370 | resetval = mDateNavigator->sizeHint().height()+2; | 2370 | resetval = mDateNavigator->sizeHint().height()+2; |
2371 | } | 2371 | } |
2372 | } | 2372 | } |
2373 | if ( resetval ) { | 2373 | if ( resetval ) { |
2374 | sizes.clear(); | 2374 | sizes.clear(); |
2375 | if ( KOPrefs::instance()->mVerticalScreen ) { | 2375 | if ( KOPrefs::instance()->mVerticalScreen ) { |
2376 | maxVal = QApplication::desktop()->width() -10; | 2376 | maxVal = QApplication::desktop()->width() -10; |
2377 | } else { | 2377 | } else { |
2378 | maxVal = QApplication::desktop()->height()-10; | 2378 | maxVal = QApplication::desktop()->height()-10; |
2379 | } | 2379 | } |
2380 | sizes << resetval; | 2380 | sizes << resetval; |
2381 | if ( maxVal < resetval + resetval) | 2381 | if ( maxVal < resetval + resetval) |
2382 | resetval = maxVal - resetval; | 2382 | resetval = maxVal - resetval; |
2383 | sizes << resetval; | 2383 | sizes << resetval; |
2384 | sizes << 100; | 2384 | sizes << 100; |
2385 | } | 2385 | } |
2386 | mLeftFrame->setSizes(sizes); | 2386 | mLeftFrame->setSizes(sizes); |
2387 | sizes = config->readIntListEntry("Main Splitter Frame"); | 2387 | sizes = config->readIntListEntry("Main Splitter Frame"); |
2388 | resetval = 0; | 2388 | resetval = 0; |
2389 | maxVal = 0; | 2389 | maxVal = 0; |
2390 | if (sizes.count() != 2) { | 2390 | if (sizes.count() != 2) { |
2391 | if ( !KOPrefs::instance()->mVerticalScreen ) { | 2391 | if ( !KOPrefs::instance()->mVerticalScreen ) { |
2392 | resetval = mDateNavigator->sizeHint().width()+2; | 2392 | resetval = mDateNavigator->sizeHint().width()+2; |
2393 | } else { | 2393 | } else { |
2394 | resetval = mDateNavigator->sizeHint().height()+2; | 2394 | resetval = mDateNavigator->sizeHint().height()+2; |
2395 | } | 2395 | } |
2396 | } | 2396 | } |
2397 | if ( resetval ) { | 2397 | if ( resetval ) { |
2398 | sizes.clear(); | 2398 | sizes.clear(); |
2399 | if ( !KOPrefs::instance()->mVerticalScreen ) { | 2399 | if ( !KOPrefs::instance()->mVerticalScreen ) { |
2400 | maxVal = QApplication::desktop()->width() -10; | 2400 | maxVal = QApplication::desktop()->width() -10; |
2401 | } else { | 2401 | } else { |
2402 | maxVal = QApplication::desktop()->height()-10; | 2402 | maxVal = QApplication::desktop()->height()-10; |
2403 | } | 2403 | } |
2404 | sizes << resetval; | 2404 | sizes << resetval; |
2405 | if ( maxVal < resetval + resetval) | 2405 | if ( maxVal < resetval + resetval) |
2406 | resetval = maxVal - resetval; | 2406 | resetval = maxVal - resetval; |
2407 | sizes << resetval; | 2407 | sizes << resetval; |
2408 | } | 2408 | } |
2409 | mMainFrame->setSizes(sizes); | 2409 | mMainFrame->setSizes(sizes); |
2410 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); | 2410 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); |
2411 | else if ( dateCount == 7 ) mNavigator->selectWeek(); | 2411 | else if ( dateCount == 7 ) mNavigator->selectWeek(); |
2412 | else mNavigator->selectDates( dateCount ); | 2412 | else mNavigator->selectDates( dateCount ); |
2413 | // mViewManager->readSettings( config ); | 2413 | // mViewManager->readSettings( config ); |
2414 | updateConfig(); | 2414 | updateConfig(); |
2415 | globalFlagBlockAgenda = 2; | 2415 | globalFlagBlockAgenda = 2; |
2416 | mViewManager->readSettings( config ); | 2416 | mViewManager->readSettings( config ); |
2417 | QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); | 2417 | QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); |
2418 | } | 2418 | } |
2419 | 2419 | ||
2420 | void CalendarView::checkSuspendAlarm() | 2420 | void CalendarView::checkSuspendAlarm() |
2421 | { | 2421 | { |
2422 | if ( mSuspendTimer->isActive() ) { | 2422 | if ( mSuspendTimer->isActive() ) { |
2423 | KMessageBox::information( this, i18n("<b>WARNING:</b> There is a pending suspended alarm!"), i18n("Pending Suspend Alarm")); | 2423 | KMessageBox::information( this, i18n("<b>WARNING:</b> There is a pending suspended alarm!"), i18n("Pending Suspend Alarm")); |
2424 | } | 2424 | } |
2425 | } | 2425 | } |
2426 | void CalendarView::writeSettings() | 2426 | void CalendarView::writeSettings() |
2427 | { | 2427 | { |
2428 | // kdDebug() << "CalendarView::writeSettings" << endl; | 2428 | // kdDebug() << "CalendarView::writeSettings" << endl; |
2429 | 2429 | ||
2430 | KConfig *config = KOGlobals::config(); | 2430 | KConfig *config = KOGlobals::config(); |
2431 | 2431 | ||
2432 | mViewManager->writeSettings( config ); | 2432 | mViewManager->writeSettings( config ); |
2433 | mTodoList->saveLayout(config,QString("Todo Layout")); | 2433 | mTodoList->saveLayout(config,QString("Todo Layout")); |
2434 | mDialogManager->writeSettings( config ); | 2434 | mDialogManager->writeSettings( config ); |
2435 | //KOPrefs::instance()->usrWriteConfig(); | 2435 | //KOPrefs::instance()->usrWriteConfig(); |
2436 | KOPrefs::instance()->writeConfig(); | 2436 | KOPrefs::instance()->writeConfig(); |
2437 | 2437 | ||
2438 | writeFilterSettings(config); | 2438 | writeFilterSettings(config); |
2439 | config->setGroup( "AppRun" ); | 2439 | config->setGroup( "AppRun" ); |
2440 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); | 2440 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); |
2441 | int days = dt.daysTo( QDate::currentDate() ); | 2441 | int days = dt.daysTo( QDate::currentDate() ); |
2442 | dt = dt.addDays( days ); | 2442 | dt = dt.addDays( days ); |
2443 | int secs = dt.secsTo( QDateTime::currentDateTime() ); | 2443 | int secs = dt.secsTo( QDateTime::currentDateTime() ); |
2444 | config->writeEntry( "LatestProgramStopDays", days ); | 2444 | config->writeEntry( "LatestProgramStopDays", days ); |
2445 | config->writeEntry( "LatestProgramStopSecs", secs ); | 2445 | config->writeEntry( "LatestProgramStopSecs", secs ); |
2446 | //qDebug("KO: Writing stop time: %d ", secs); | 2446 | //qDebug("KO: Writing stop time: %d ", secs); |
2447 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); | 2447 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); |
2448 | //QDateTime latest = dt.addSecs ( secs ); | 2448 | //QDateTime latest = dt.addSecs ( secs ); |
2449 | //qDebug("KO: Termination on %s ", latest.toString().latin1()); | 2449 | //qDebug("KO: Termination on %s ", latest.toString().latin1()); |
2450 | config->setGroup( "Views" ); | 2450 | config->setGroup( "Views" ); |
2451 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); | 2451 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); |
2452 | 2452 | ||
2453 | #if 0 | 2453 | #if 0 |
2454 | qDebug("********************* "); | 2454 | qDebug("********************* "); |
2455 | qDebug("Testcode secsto "); | 2455 | qDebug("Testcode secsto "); |
2456 | QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) ); | 2456 | QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) ); |
2457 | QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) ); | 2457 | QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) ); |
2458 | int secsto = dt_nodaylight.secsTo( dt_daylight ); | 2458 | int secsto = dt_nodaylight.secsTo( dt_daylight ); |
2459 | QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto ); | 2459 | QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto ); |
2460 | qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() ); | 2460 | qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() ); |
2461 | qDebug("dt daylight %s ",dt_daylight.toString().latin1() ); | 2461 | qDebug("dt daylight %s ",dt_daylight.toString().latin1() ); |
2462 | qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() ); | 2462 | qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() ); |
2463 | qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600); | 2463 | qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600); |
2464 | qDebug("********************* testcode end"); | 2464 | qDebug("********************* testcode end"); |
2465 | 2465 | ||
2466 | #endif | 2466 | #endif |
2467 | 2467 | ||
2468 | QValueList<int> listINT = mLeftFrame->sizes(); | 2468 | QValueList<int> listINT = mLeftFrame->sizes(); |
2469 | config->writeEntry("Left Splitter Frame",listINT); | 2469 | config->writeEntry("Left Splitter Frame",listINT); |
2470 | QValueList<int> listINT2 = mMainFrame->sizes(); | 2470 | QValueList<int> listINT2 = mMainFrame->sizes(); |
2471 | config->writeEntry("Main Splitter Frame",listINT2); | 2471 | config->writeEntry("Main Splitter Frame",listINT2); |
2472 | #ifdef DESKTOP_VERSION | 2472 | #ifdef DESKTOP_VERSION |
2473 | config->setGroup("WidgetLayout"); | 2473 | config->setGroup("WidgetLayout"); |
2474 | QStringList list ;//= config->readListEntry("MainLayout"); | 2474 | QStringList list ;//= config->readListEntry("MainLayout"); |
2475 | int x,y,w,h; | 2475 | int x,y,w,h; |
2476 | QWidget* wid; | 2476 | QWidget* wid; |
2477 | wid = topLevelWidget(); | 2477 | wid = topLevelWidget(); |
2478 | x = wid->geometry().x(); | 2478 | x = wid->geometry().x(); |
2479 | y = wid->geometry().y(); | 2479 | y = wid->geometry().y(); |
2480 | w = wid->width(); | 2480 | w = wid->width(); |
2481 | h = wid->height(); | 2481 | h = wid->height(); |
2482 | list.clear(); | 2482 | list.clear(); |
2483 | list << QString::number( x ); | 2483 | list << QString::number( x ); |
2484 | list << QString::number( y ); | 2484 | list << QString::number( y ); |
2485 | list << QString::number( w ); | 2485 | list << QString::number( w ); |
2486 | list << QString::number( h ); | 2486 | list << QString::number( h ); |
2487 | config->writeEntry("MainLayout",list ); | 2487 | config->writeEntry("MainLayout",list ); |
2488 | 2488 | ||
2489 | wid = mEventEditor; | 2489 | wid = mEventEditor; |
2490 | x = wid->geometry().x(); | 2490 | x = wid->geometry().x(); |
2491 | y = wid->geometry().y(); | 2491 | y = wid->geometry().y(); |
2492 | w = wid->width(); | 2492 | w = wid->width(); |
2493 | h = wid->height(); | 2493 | h = wid->height(); |
2494 | list.clear(); | 2494 | list.clear(); |
2495 | list << QString::number( x ); | 2495 | list << QString::number( x ); |
2496 | list << QString::number( y ); | 2496 | list << QString::number( y ); |
2497 | list << QString::number( w ); | 2497 | list << QString::number( w ); |
2498 | list << QString::number( h ); | 2498 | list << QString::number( h ); |
2499 | config->writeEntry("EditEventLayout",list ); | 2499 | config->writeEntry("EditEventLayout",list ); |
2500 | 2500 | ||
2501 | wid = mTodoEditor; | 2501 | wid = mTodoEditor; |
2502 | x = wid->geometry().x(); | 2502 | x = wid->geometry().x(); |
2503 | y = wid->geometry().y(); | 2503 | y = wid->geometry().y(); |
2504 | w = wid->width(); | 2504 | w = wid->width(); |
2505 | h = wid->height(); | 2505 | h = wid->height(); |
2506 | list.clear(); | 2506 | list.clear(); |
2507 | list << QString::number( x ); | 2507 | list << QString::number( x ); |
2508 | list << QString::number( y ); | 2508 | list << QString::number( y ); |
2509 | list << QString::number( w ); | 2509 | list << QString::number( w ); |
2510 | list << QString::number( h ); | 2510 | list << QString::number( h ); |
2511 | config->writeEntry("EditTodoLayout",list ); | 2511 | config->writeEntry("EditTodoLayout",list ); |
2512 | wid = getEventViewerDialog(); | 2512 | wid = getEventViewerDialog(); |
2513 | x = wid->geometry().x(); | 2513 | x = wid->geometry().x(); |
2514 | y = wid->geometry().y(); | 2514 | y = wid->geometry().y(); |
2515 | w = wid->width(); | 2515 | w = wid->width(); |
2516 | h = wid->height(); | 2516 | h = wid->height(); |
2517 | list.clear(); | 2517 | list.clear(); |
2518 | list << QString::number( x ); | 2518 | list << QString::number( x ); |
2519 | list << QString::number( y ); | 2519 | list << QString::number( y ); |
2520 | list << QString::number( w ); | 2520 | list << QString::number( w ); |
2521 | list << QString::number( h ); | 2521 | list << QString::number( h ); |
2522 | config->writeEntry("ViewerLayout",list ); | 2522 | config->writeEntry("ViewerLayout",list ); |
2523 | wid = mDialogManager->getSearchDialog(); | 2523 | wid = mDialogManager->getSearchDialog(); |
2524 | if ( wid ) { | 2524 | if ( wid ) { |
2525 | x = wid->geometry().x(); | 2525 | x = wid->geometry().x(); |
2526 | y = wid->geometry().y(); | 2526 | y = wid->geometry().y(); |
2527 | w = wid->width(); | 2527 | w = wid->width(); |
2528 | h = wid->height(); | 2528 | h = wid->height(); |
2529 | list.clear(); | 2529 | list.clear(); |
2530 | list << QString::number( x ); | 2530 | list << QString::number( x ); |
2531 | list << QString::number( y ); | 2531 | list << QString::number( y ); |
2532 | list << QString::number( w ); | 2532 | list << QString::number( w ); |
2533 | list << QString::number( h ); | 2533 | list << QString::number( h ); |
2534 | config->writeEntry("SearchLayout",list ); | 2534 | config->writeEntry("SearchLayout",list ); |
2535 | } | 2535 | } |
2536 | #endif | 2536 | #endif |
2537 | 2537 | ||
2538 | 2538 | ||
2539 | config->sync(); | 2539 | config->sync(); |
2540 | } | 2540 | } |
2541 | 2541 | ||
2542 | void CalendarView::readFilterSettings(KConfig *config) | 2542 | void CalendarView::readFilterSettings(KConfig *config) |
2543 | { | 2543 | { |
2544 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; | 2544 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; |
2545 | 2545 | ||
2546 | mFilters.clear(); | 2546 | mFilters.clear(); |
2547 | 2547 | ||
2548 | config->setGroup("General"); | 2548 | config->setGroup("General"); |
2549 | QStringList filterList = config->readListEntry("CalendarFilters"); | 2549 | QStringList filterList = config->readListEntry("CalendarFilters"); |
2550 | 2550 | ||
2551 | QStringList::ConstIterator it = filterList.begin(); | 2551 | QStringList::ConstIterator it = filterList.begin(); |
2552 | QStringList::ConstIterator end = filterList.end(); | 2552 | QStringList::ConstIterator end = filterList.end(); |
2553 | while(it != end) { | 2553 | while(it != end) { |
2554 | // kdDebug() << " filter: " << (*it) << endl; | 2554 | // kdDebug() << " filter: " << (*it) << endl; |
2555 | 2555 | ||
2556 | CalFilter *filter; | 2556 | CalFilter *filter; |
2557 | filter = new CalFilter(*it); | 2557 | filter = new CalFilter(*it); |
2558 | config->setGroup("Filter_" + (*it).utf8()); | 2558 | config->setGroup("Filter_" + (*it).utf8()); |
2559 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); | 2559 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); |
2560 | filter->setCriteria(config->readNumEntry("Criteria",0)); | 2560 | filter->setCriteria(config->readNumEntry("Criteria",0)); |
2561 | filter->setCategoryList(config->readListEntry("CategoryList")); | 2561 | filter->setCategoryList(config->readListEntry("CategoryList")); |
2562 | mFilters.append(filter); | 2562 | mFilters.append(filter); |
2563 | 2563 | ||
2564 | ++it; | 2564 | ++it; |
2565 | } | 2565 | } |
2566 | 2566 | ||
2567 | if (mFilters.count() == 0) { | 2567 | if (mFilters.count() == 0) { |
2568 | CalFilter *filter = new CalFilter(i18n("Default")); | 2568 | CalFilter *filter = new CalFilter(i18n("Default")); |
2569 | mFilters.append(filter); | 2569 | mFilters.append(filter); |
2570 | } | 2570 | } |
2571 | mFilterView->updateFilters(); | 2571 | mFilterView->updateFilters(); |
2572 | config->setGroup("FilterView"); | 2572 | config->setGroup("FilterView"); |
2573 | 2573 | ||
2574 | mFilterView->blockSignals(true); | 2574 | mFilterView->blockSignals(true); |
2575 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); | 2575 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); |
2576 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); | 2576 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); |
2577 | mFilterView->blockSignals(false); | 2577 | mFilterView->blockSignals(false); |
2578 | // We do it manually to avoid it being done twice by the above calls | 2578 | // We do it manually to avoid it being done twice by the above calls |
2579 | updateFilter(); | 2579 | updateFilter(); |
2580 | } | 2580 | } |
2581 | 2581 | ||
2582 | void CalendarView::writeFilterSettings(KConfig *config) | 2582 | void CalendarView::writeFilterSettings(KConfig *config) |
2583 | { | 2583 | { |
2584 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; | 2584 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; |
2585 | 2585 | ||
2586 | QStringList filterList; | 2586 | QStringList filterList; |
2587 | 2587 | ||
2588 | CalFilter *filter = mFilters.first(); | 2588 | CalFilter *filter = mFilters.first(); |
2589 | while(filter) { | 2589 | while(filter) { |
2590 | // kdDebug() << " fn: " << filter->name() << endl; | 2590 | // kdDebug() << " fn: " << filter->name() << endl; |
2591 | filterList << filter->name(); | 2591 | filterList << filter->name(); |
2592 | config->setGroup("Filter_" + filter->name().utf8()); | 2592 | config->setGroup("Filter_" + filter->name().utf8()); |
2593 | config->writeEntry("Criteria",filter->criteria()); | 2593 | config->writeEntry("Criteria",filter->criteria()); |
2594 | config->writeEntry("CategoryList",filter->categoryList()); | 2594 | config->writeEntry("CategoryList",filter->categoryList()); |
2595 | filter = mFilters.next(); | 2595 | filter = mFilters.next(); |
2596 | } | 2596 | } |
2597 | config->setGroup("General"); | 2597 | config->setGroup("General"); |
2598 | config->writeEntry("CalendarFilters",filterList); | 2598 | config->writeEntry("CalendarFilters",filterList); |
2599 | 2599 | ||
2600 | config->setGroup("FilterView"); | 2600 | config->setGroup("FilterView"); |
2601 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); | 2601 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); |
2602 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); | 2602 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); |
2603 | } | 2603 | } |
2604 | 2604 | ||
2605 | 2605 | ||
2606 | void CalendarView::goToday() | 2606 | void CalendarView::goToday() |
2607 | { | 2607 | { |
2608 | if ( mViewManager->currentView()->isMonthView() ) | 2608 | if ( mViewManager->currentView()->isMonthView() ) |
2609 | mNavigator->selectTodayMonth(); | 2609 | mNavigator->selectTodayMonth(); |
2610 | else | 2610 | else |
2611 | mNavigator->selectToday(); | 2611 | mNavigator->selectToday(); |
2612 | } | 2612 | } |
2613 | 2613 | ||
2614 | void CalendarView::goNext() | 2614 | void CalendarView::goNext() |
2615 | { | 2615 | { |
2616 | mNavigator->selectNext(); | 2616 | mNavigator->selectNext(); |
2617 | } | 2617 | } |
2618 | 2618 | ||
2619 | void CalendarView::goPrevious() | 2619 | void CalendarView::goPrevious() |
2620 | { | 2620 | { |
2621 | mNavigator->selectPrevious(); | 2621 | mNavigator->selectPrevious(); |
2622 | } | 2622 | } |
2623 | void CalendarView::goNextMonth() | 2623 | void CalendarView::goNextMonth() |
2624 | { | 2624 | { |
2625 | mNavigator->selectNextMonth(); | 2625 | mNavigator->selectNextMonth(); |
2626 | } | 2626 | } |
2627 | 2627 | ||
2628 | void CalendarView::goPreviousMonth() | 2628 | void CalendarView::goPreviousMonth() |
2629 | { | 2629 | { |
2630 | mNavigator->selectPreviousMonth(); | 2630 | mNavigator->selectPreviousMonth(); |
2631 | } | 2631 | } |
2632 | 2632 | ||
2633 | void CalendarView::updateConfig() | 2633 | void CalendarView::updateConfig() |
2634 | { | 2634 | { |
2635 | if ( KOPrefs::instance()->mUseAppColors ) | 2635 | if ( KOPrefs::instance()->mUseAppColors ) |
2636 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); | 2636 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); |
2637 | emit configChanged(); | 2637 | emit configChanged(); |
2638 | mTodoList->updateConfig(); | 2638 | mTodoList->updateConfig(); |
2639 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); | 2639 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); |
2640 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 2640 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
2641 | // To make the "fill window" configurations work | 2641 | // To make the "fill window" configurations work |
2642 | //mViewManager->raiseCurrentView(); | 2642 | //mViewManager->raiseCurrentView(); |
2643 | } | 2643 | } |
2644 | 2644 | ||
2645 | 2645 | ||
2646 | void CalendarView::eventChanged(Event *event) | 2646 | void CalendarView::eventChanged(Event *event) |
2647 | { | 2647 | { |
2648 | changeEventDisplay(event,KOGlobals::EVENTEDITED); | 2648 | changeEventDisplay(event,KOGlobals::EVENTEDITED); |
2649 | //updateUnmanagedViews(); | 2649 | //updateUnmanagedViews(); |
2650 | } | 2650 | } |
2651 | 2651 | ||
2652 | void CalendarView::eventAdded(Event *event) | 2652 | void CalendarView::eventAdded(Event *event) |
2653 | { | 2653 | { |
2654 | changeEventDisplay(event,KOGlobals::EVENTADDED); | 2654 | changeEventDisplay(event,KOGlobals::EVENTADDED); |
2655 | } | 2655 | } |
2656 | 2656 | ||
2657 | void CalendarView::eventToBeDeleted(Event *) | 2657 | void CalendarView::eventToBeDeleted(Event *) |
2658 | { | 2658 | { |
2659 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; | 2659 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; |
2660 | } | 2660 | } |
2661 | 2661 | ||
2662 | void CalendarView::eventDeleted() | 2662 | void CalendarView::eventDeleted() |
2663 | { | 2663 | { |
2664 | changeEventDisplay(0,KOGlobals::EVENTDELETED); | 2664 | changeEventDisplay(0,KOGlobals::EVENTDELETED); |
2665 | } | 2665 | } |
2666 | void CalendarView::changeTodoDisplay(Todo *which, int action) | 2666 | void CalendarView::changeTodoDisplay(Todo *which, int action) |
2667 | { | 2667 | { |
2668 | changeIncidenceDisplay((Incidence *)which, action); | 2668 | changeIncidenceDisplay((Incidence *)which, action); |
2669 | mDateNavigator->updateView(); //LR | 2669 | mDateNavigator->updateView(); //LR |
2670 | //mDialogManager->updateSearchDialog(); | 2670 | //mDialogManager->updateSearchDialog(); |
2671 | 2671 | ||
2672 | if (which) { | 2672 | if (which) { |
2673 | mViewManager->updateWNview(); | 2673 | mViewManager->updateWNview(); |
2674 | //mTodoList->updateView(); | 2674 | //mTodoList->updateView(); |
2675 | } | 2675 | } |
2676 | 2676 | ||
2677 | } | 2677 | } |
2678 | 2678 | ||
2679 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) | 2679 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) |
2680 | { | 2680 | { |
2681 | updateUnmanagedViews(); | 2681 | updateUnmanagedViews(); |
2682 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); | 2682 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); |
2683 | if ( action == KOGlobals::EVENTDELETED ) { //delete | 2683 | if ( action == KOGlobals::EVENTDELETED ) { //delete |
2684 | mCalendar->checkAlarmForIncidence( 0, true ); | 2684 | mCalendar->checkAlarmForIncidence( 0, true ); |
2685 | if ( mEventViewerDialog ) | 2685 | if ( mEventViewerDialog ) |
2686 | mEventViewerDialog->hide(); | 2686 | mEventViewerDialog->hide(); |
2687 | } | 2687 | } |
2688 | else | 2688 | else |
2689 | mCalendar->checkAlarmForIncidence( which , false ); | 2689 | mCalendar->checkAlarmForIncidence( which , false ); |
2690 | } | 2690 | } |
2691 | 2691 | ||
2692 | // most of the changeEventDisplays() right now just call the view's | 2692 | // most of the changeEventDisplays() right now just call the view's |
2693 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. | 2693 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. |
2694 | void CalendarView::changeEventDisplay(Event *which, int action) | 2694 | void CalendarView::changeEventDisplay(Event *which, int action) |
2695 | { | 2695 | { |
2696 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; | 2696 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; |
2697 | changeIncidenceDisplay((Incidence *)which, action); | 2697 | changeIncidenceDisplay((Incidence *)which, action); |
2698 | 2698 | ||
2699 | 2699 | ||
2700 | static bool clearallviews = false; | 2700 | static bool clearallviews = false; |
2701 | if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { | 2701 | if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { |
2702 | if ( clearallviews ) { | 2702 | if ( clearallviews ) { |
2703 | clearAllViews(); | 2703 | clearAllViews(); |
2704 | clearallviews = false; | 2704 | clearallviews = false; |
2705 | } | 2705 | } |
2706 | return; | 2706 | return; |
2707 | } | 2707 | } |
2708 | clearallviews = true; | 2708 | clearallviews = true; |
2709 | 2709 | ||
2710 | 2710 | ||
2711 | 2711 | ||
2712 | mDateNavigator->updateView(); | 2712 | mDateNavigator->updateView(); |
2713 | //mDialogManager->updateSearchDialog(); | 2713 | //mDialogManager->updateSearchDialog(); |
2714 | 2714 | ||
2715 | if (which) { | 2715 | if (which) { |
2716 | // If there is an event view visible update the display | 2716 | // If there is an event view visible update the display |
2717 | mViewManager->currentView()->changeEventDisplay(which,action); | 2717 | mViewManager->currentView()->changeEventDisplay(which,action); |
2718 | // TODO: check, if update needed | 2718 | // TODO: check, if update needed |
2719 | // if (which->getTodoStatus()) { | 2719 | // if (which->getTodoStatus()) { |
2720 | mTodoList->updateView(); | 2720 | mTodoList->updateView(); |
2721 | if ( action != KOGlobals::EVENTDELETED ) { | ||
2722 | mConflictingEvent = which ; | ||
2723 | QTimer::singleShot( 1000, this, SLOT ( checkConflictForEvent() ) ); | ||
2724 | } | ||
2721 | // } | 2725 | // } |
2722 | } else { | 2726 | } else { |
2723 | mViewManager->currentView()->updateView(); | 2727 | mViewManager->currentView()->updateView(); |
2724 | } | 2728 | } |
2725 | } | 2729 | } |
2730 | void CalendarView::checkConflictForEvent() | ||
2731 | { | ||
2732 | |||
2733 | if (!KOPrefs::instance()->mConfirm) | ||
2734 | return; | ||
2735 | if ( ! mConflictingEvent ) return; | ||
2736 | if ( mConflictingEvent->doesFloat() ) { | ||
2737 | mConflictingEvent = 0; | ||
2738 | return; | ||
2739 | } | ||
2740 | bool all = false; | ||
2741 | bool allday = false; | ||
2742 | Event * ev = mConflictingEvent; | ||
2743 | mConflictingEvent = 0; | ||
2744 | QDate start = ev->dtStart().date(); | ||
2745 | QDate end = ev->dtEnd().date().addDays(1); | ||
2746 | while ( start < end ) { | ||
2747 | QPtrList<Event> test = calendar()->events( start ); | ||
2748 | //qDebug("found %d on %s ", eventList.count(), start.toString().latin1()); | ||
2749 | Event * t_ev = test.first(); | ||
2750 | QDateTime es = ev->dtStart(); | ||
2751 | QDateTime ee = ev->dtEnd(); | ||
2752 | if ( ev->doesFloat() ) | ||
2753 | ee = ee.addDays( 1 ); | ||
2754 | if ( ! all ) { | ||
2755 | if ( ev->doesFloat() != allday ) | ||
2756 | t_ev = 0; | ||
2757 | } | ||
2758 | while ( t_ev ) { | ||
2759 | bool skip = false; | ||
2760 | if ( ! all ) { | ||
2761 | if ( t_ev->doesFloat() != allday ) | ||
2762 | skip = true; | ||
2763 | } | ||
2764 | if ( !skip && ev != t_ev ) { | ||
2765 | QDateTime ets = t_ev->dtStart(); | ||
2766 | QDateTime ete = t_ev->dtEnd(); | ||
2767 | if ( t_ev->doesFloat() ) | ||
2768 | ete = ete.addDays( 1 ); | ||
2769 | //qDebug("test %s -- %s -------- %s -- %s ", es.toString().latin1() , ee.toString().latin1(), ets.toString().latin1() , ete.toString().latin1() ); | ||
2770 | if ( es < ete && ets < ee ) { | ||
2771 | QString mess = i18n("The event\n%1\nconflicts with event\n%2\nat date\n%3.\n").arg(KGlobal::formatMessage ( ev->summary(),0 ) ).arg( KGlobal::formatMessage ( t_ev->summary(),0 )).arg(KGlobal::locale()->formatDate(start) ) ; | ||
2772 | qApp->processEvents(); | ||
2773 | int km = KMessageBox::warningContinueCancel(this,mess, | ||
2774 | i18n("KO/Pi Conflict delected"),i18n("Show date"),i18n("No problem!")); | ||
2775 | if ( km != KMessageBox::Continue ) | ||
2776 | return; | ||
2777 | |||
2778 | if ( mViewManager->currentView() != mViewManager->agendaView() || mNavigator->selectedDates().count() > 1 ) | ||
2779 | mViewManager->showDayView(); | ||
2780 | mNavigator->slotDaySelect( start ); | ||
2781 | int hour = es.time().hour(); | ||
2782 | if ( ets > es ) | ||
2783 | hour = ets.time().hour(); | ||
2784 | mViewManager->agendaView()->setStartHour( hour ); | ||
2785 | topLevelWidget()->setCaption( i18n("Conflict %1 <-> %2"). arg( ev->summary().left( 20 ) ).arg( t_ev->summary().left( 20 ) ) ); | ||
2786 | return; | ||
2787 | } | ||
2788 | } | ||
2789 | t_ev = test.next(); | ||
2790 | } | ||
2791 | start = start.addDays( 1 ); | ||
2792 | } | ||
2793 | qDebug("No conflict found "); | ||
2794 | |||
2726 | 2795 | ||
2796 | } | ||
2727 | 2797 | ||
2728 | void CalendarView::updateTodoViews() | 2798 | void CalendarView::updateTodoViews() |
2729 | { | 2799 | { |
2730 | mTodoList->updateView(); | 2800 | mTodoList->updateView(); |
2731 | mViewManager->currentView()->updateView(); | 2801 | mViewManager->currentView()->updateView(); |
2732 | 2802 | ||
2733 | } | 2803 | } |
2734 | 2804 | ||
2735 | 2805 | ||
2736 | 2806 | ||
2737 | void CalendarView::clearAllViews() | 2807 | void CalendarView::clearAllViews() |
2738 | { | 2808 | { |
2739 | mTodoList->clearList(); | 2809 | mTodoList->clearList(); |
2740 | mViewManager->clearAllViews(); | 2810 | mViewManager->clearAllViews(); |
2741 | SearchDialog * sd = mDialogManager->getSearchDialog(); | 2811 | SearchDialog * sd = mDialogManager->getSearchDialog(); |
2742 | if ( sd ) { | 2812 | if ( sd ) { |
2743 | KOListView* kol = sd->listview(); | 2813 | KOListView* kol = sd->listview(); |
2744 | if ( kol ) | 2814 | if ( kol ) |
2745 | kol->clearList(); | 2815 | kol->clearList(); |
2746 | } | 2816 | } |
2747 | } | 2817 | } |
2748 | void CalendarView::updateView() | 2818 | void CalendarView::updateView() |
2749 | { | 2819 | { |
2750 | static bool clearallviews = false; | 2820 | static bool clearallviews = false; |
2751 | if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { | 2821 | if ( KOPrefs::instance()->mGlobalUpdateDisabled ) { |
2752 | if ( clearallviews ) { | 2822 | if ( clearallviews ) { |
2753 | clearAllViews(); | 2823 | clearAllViews(); |
2754 | clearallviews = false; | 2824 | clearallviews = false; |
2755 | } | 2825 | } |
2756 | return; | 2826 | return; |
2757 | } | 2827 | } |
2758 | clearallviews = true; | 2828 | clearallviews = true; |
2759 | DateList tmpList = mNavigator->selectedDates(); | 2829 | DateList tmpList = mNavigator->selectedDates(); |
2760 | 2830 | ||
2761 | if ( KOPrefs::instance()->mHideNonStartedTodos ) | 2831 | if ( KOPrefs::instance()->mHideNonStartedTodos ) |
2762 | mTodoList->updateView(); | 2832 | mTodoList->updateView(); |
2763 | // We assume that the navigator only selects consecutive days. | 2833 | // We assume that the navigator only selects consecutive days. |
2764 | updateView( tmpList.first(), tmpList.last() ); | 2834 | updateView( tmpList.first(), tmpList.last() ); |
2765 | } | 2835 | } |
2766 | 2836 | ||
2767 | void CalendarView::updateUnmanagedViews() | 2837 | void CalendarView::updateUnmanagedViews() |
2768 | { | 2838 | { |
2769 | mDateNavigator->updateDayMatrix(); | 2839 | mDateNavigator->updateDayMatrix(); |
2770 | } | 2840 | } |
2771 | 2841 | ||
2772 | int CalendarView::msgItemDelete(const QString name) | 2842 | int CalendarView::msgItemDelete(const QString name) |
2773 | { | 2843 | { |
2774 | return KMessageBox::warningContinueCancel(this,name +"\n\n"+ | 2844 | return KMessageBox::warningContinueCancel(this,name +"\n\n"+ |
2775 | i18n("This item will be\npermanently deleted."), | 2845 | i18n("This item will be\npermanently deleted."), |
2776 | i18n("KO/Pi Confirmation"),i18n("Delete")); | 2846 | i18n("KO/Pi Confirmation"),i18n("Delete")); |
2777 | } | 2847 | } |
2778 | 2848 | ||
2779 | 2849 | ||
2780 | void CalendarView::edit_cut() | 2850 | void CalendarView::edit_cut() |
2781 | { | 2851 | { |
2782 | Event *anEvent=0; | 2852 | Event *anEvent=0; |
2783 | 2853 | ||
2784 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2854 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2785 | 2855 | ||
2786 | if (mViewManager->currentView()->isEventView()) { | 2856 | if (mViewManager->currentView()->isEventView()) { |
2787 | if ( incidence && incidence->typeID() == eventID ) { | 2857 | if ( incidence && incidence->typeID() == eventID ) { |
2788 | anEvent = static_cast<Event *>(incidence); | 2858 | anEvent = static_cast<Event *>(incidence); |
2789 | } | 2859 | } |
2790 | } | 2860 | } |
2791 | 2861 | ||
2792 | if (!anEvent) { | 2862 | if (!anEvent) { |
2793 | KNotifyClient::beep(); | 2863 | KNotifyClient::beep(); |
2794 | return; | 2864 | return; |
2795 | } | 2865 | } |
2796 | DndFactory factory( mCalendar ); | 2866 | DndFactory factory( mCalendar ); |
2797 | factory.cutIncidence(anEvent); | 2867 | factory.cutIncidence(anEvent); |
2798 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); | 2868 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); |
2799 | } | 2869 | } |
2800 | 2870 | ||
2801 | void CalendarView::edit_copy() | 2871 | void CalendarView::edit_copy() |
2802 | { | 2872 | { |
2803 | Event *anEvent=0; | 2873 | Event *anEvent=0; |
2804 | 2874 | ||
2805 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2875 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2806 | 2876 | ||
2807 | if (mViewManager->currentView()->isEventView()) { | 2877 | if (mViewManager->currentView()->isEventView()) { |
2808 | if ( incidence && incidence->typeID() == eventID ) { | 2878 | if ( incidence && incidence->typeID() == eventID ) { |
2809 | anEvent = static_cast<Event *>(incidence); | 2879 | anEvent = static_cast<Event *>(incidence); |
2810 | } | 2880 | } |
2811 | } | 2881 | } |
2812 | 2882 | ||
2813 | if (!anEvent) { | 2883 | if (!anEvent) { |
2814 | KNotifyClient::beep(); | 2884 | KNotifyClient::beep(); |
2815 | return; | 2885 | return; |
2816 | } | 2886 | } |
2817 | DndFactory factory( mCalendar ); | 2887 | DndFactory factory( mCalendar ); |
2818 | factory.copyIncidence(anEvent); | 2888 | factory.copyIncidence(anEvent); |
2819 | } | 2889 | } |
2820 | 2890 | ||
2821 | void CalendarView::edit_paste() | 2891 | void CalendarView::edit_paste() |
2822 | { | 2892 | { |
2823 | QDate date = mNavigator->selectedDates().first(); | 2893 | QDate date = mNavigator->selectedDates().first(); |
2824 | 2894 | ||
2825 | DndFactory factory( mCalendar ); | 2895 | DndFactory factory( mCalendar ); |
2826 | Event *pastedEvent = (Event *)factory.pasteIncidence( date ); | 2896 | Event *pastedEvent = (Event *)factory.pasteIncidence( date ); |
2827 | 2897 | ||
2828 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); | 2898 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); |
2829 | } | 2899 | } |
2830 | void CalendarView::edit_global_options() | 2900 | void CalendarView::edit_global_options() |
2831 | { | 2901 | { |
2832 | QString tz = KPimGlobalPrefs::instance()->mTimeZoneId; | 2902 | QString tz = KPimGlobalPrefs::instance()->mTimeZoneId; |
2833 | emit save(); | 2903 | emit save(); |
2834 | emit saveStopTimer(); | 2904 | emit saveStopTimer(); |
2835 | mDialogManager->showGlobalOptionsDialog(); | 2905 | mDialogManager->showGlobalOptionsDialog(); |
2836 | if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) { | 2906 | if ( tz != KPimGlobalPrefs::instance()->mTimeZoneId) { |
2837 | emit saveStopTimer(); | 2907 | emit saveStopTimer(); |
2838 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto shift the time of the events?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"), | 2908 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, i18n("The timezone has changed!\nShould the calendar be reloaded\nto shift the time of the events?\nPlease read Menu: Help->FAQ:\n\"How do I change the timezone?\"\nas well!"), |
2839 | i18n("Timezone settings"),i18n("Reload"))) { | 2909 | i18n("Timezone settings"),i18n("Reload"))) { |
2840 | qDebug("KO: TZ reload cancelled "); | 2910 | qDebug("KO: TZ reload cancelled "); |
2841 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 2911 | mCalendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
2842 | return; | 2912 | return; |
2843 | } | 2913 | } |
2844 | qDebug("KO: Timezone change "); | 2914 | qDebug("KO: Timezone change "); |
2845 | loadCalendars(); | 2915 | loadCalendars(); |
2846 | setModified(true); | 2916 | setModified(true); |
2847 | } | 2917 | } |
2848 | else | 2918 | else |
2849 | qDebug("KO: No tz change "); | 2919 | qDebug("KO: No tz change "); |
2850 | } | 2920 | } |
2851 | void CalendarView::edit_options() | 2921 | void CalendarView::edit_options() |
2852 | { | 2922 | { |
2853 | mDialogManager->showOptionsDialog(); | 2923 | mDialogManager->showOptionsDialog(); |
2854 | } | 2924 | } |
2855 | 2925 | ||
2856 | 2926 | ||
2857 | void CalendarView::slotSelectPickerDate( QDate d) | 2927 | void CalendarView::slotSelectPickerDate( QDate d) |
2858 | { | 2928 | { |
2859 | mDateFrame->hide(); | 2929 | mDateFrame->hide(); |
2860 | if ( mDatePickerMode == 1 ) { | 2930 | if ( mDatePickerMode == 1 ) { |
2861 | mNavigator->slotDaySelect( d ); | 2931 | mNavigator->slotDaySelect( d ); |
2862 | } else if ( mDatePickerMode == 2 ) { | 2932 | } else if ( mDatePickerMode == 2 ) { |
2863 | if ( mMoveIncidence->typeID() == todoID ) { | 2933 | if ( mMoveIncidence->typeID() == todoID ) { |
2864 | Todo * to = (Todo *) mMoveIncidence; | 2934 | Todo * to = (Todo *) mMoveIncidence; |
2865 | QTime tim; | 2935 | QTime tim; |
2866 | int len = 0; | 2936 | int len = 0; |
2867 | if ( to->hasStartDate() && to->hasDueDate() ) | 2937 | if ( to->hasStartDate() && to->hasDueDate() ) |
2868 | len = to->dtStart().secsTo( to->dtDue()); | 2938 | len = to->dtStart().secsTo( to->dtDue()); |
2869 | if ( to->hasDueDate() ) | 2939 | if ( to->hasDueDate() ) |
2870 | tim = to->dtDue().time(); | 2940 | tim = to->dtDue().time(); |
2871 | else { | 2941 | else { |
2872 | tim = QTime ( 0,0,0 ); | 2942 | tim = QTime ( 0,0,0 ); |
2873 | to->setFloats( true ); | 2943 | to->setFloats( true ); |
2874 | to->setHasDueDate( true ); | 2944 | to->setHasDueDate( true ); |
2875 | } | 2945 | } |
2876 | QDateTime dt ( d,tim ); | 2946 | QDateTime dt ( d,tim ); |
2877 | to->setDtDue( dt ); | 2947 | to->setDtDue( dt ); |
2878 | 2948 | ||
2879 | if ( to->hasStartDate() ) { | 2949 | if ( to->hasStartDate() ) { |
2880 | if ( len>0 ) | 2950 | if ( len>0 ) |
2881 | to->setDtStart(to->dtDue().addSecs( -len )); | 2951 | to->setDtStart(to->dtDue().addSecs( -len )); |
2882 | else | 2952 | else |
2883 | if (to->dtStart() > to->dtDue() ) | 2953 | if (to->dtStart() > to->dtDue() ) |
2884 | to->setDtStart(to->dtDue().addDays( -3 )); | 2954 | to->setDtStart(to->dtDue().addDays( -3 )); |
2885 | } | 2955 | } |
2886 | 2956 | ||
2887 | todoChanged( to ); | 2957 | todoChanged( to ); |
2888 | } else if ( mMoveIncidence->typeID() == eventID ) { | 2958 | } else if ( mMoveIncidence->typeID() == eventID ) { |
2889 | if ( mMoveIncidence->doesRecur() ) { | 2959 | if ( mMoveIncidence->doesRecur() ) { |
2890 | #if 0 | 2960 | #if 0 |
2891 | // PENDING implement this | 2961 | // PENDING implement this |
2892 | Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); | 2962 | Incidence* newInc = mMoveIncidence->recreateCloneException( mMoveIncidenceOldDate ); |
2893 | mCalendar()->addIncidence( newInc ); | 2963 | mCalendar()->addIncidence( newInc ); |
2894 | if ( mMoveIncidence->typeID() == todoID ) | 2964 | if ( mMoveIncidence->typeID() == todoID ) |
2895 | emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); | 2965 | emit todoMoved((Todo*)mMoveIncidence, KOGlobals::EVENTEDITED ); |
2896 | else | 2966 | else |
2897 | emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); | 2967 | emit incidenceChanged(mMoveIncidence, KOGlobals::EVENTEDITED); |
2898 | mMoveIncidence = newInc; | 2968 | mMoveIncidence = newInc; |
2899 | 2969 | ||
2900 | #endif | 2970 | #endif |
2901 | } | 2971 | } |
2902 | QTime tim = mMoveIncidence->dtStart().time(); | 2972 | QTime tim = mMoveIncidence->dtStart().time(); |
2903 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); | 2973 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); |
2904 | QDateTime dt ( d,tim ); | 2974 | QDateTime dt ( d,tim ); |
2905 | mMoveIncidence->setDtStart( dt ); | 2975 | mMoveIncidence->setDtStart( dt ); |
2906 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); | 2976 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); |
2907 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); | 2977 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); |
2908 | } else if ( mMoveIncidence->typeID() == journalID ) { | 2978 | } else if ( mMoveIncidence->typeID() == journalID ) { |
2909 | QTime tim = mMoveIncidence->dtStart().time(); | 2979 | QTime tim = mMoveIncidence->dtStart().time(); |
2910 | QDateTime dt ( d,tim ); | 2980 | QDateTime dt ( d,tim ); |
2911 | mMoveIncidence->setDtStart( dt ); | 2981 | mMoveIncidence->setDtStart( dt ); |
2912 | updateView(); | 2982 | updateView(); |
2913 | } | 2983 | } |
2914 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); | 2984 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); |
2915 | } | 2985 | } |
2916 | } | 2986 | } |
2917 | 2987 | ||
2918 | void CalendarView::removeCategories() | 2988 | void CalendarView::removeCategories() |
2919 | { | 2989 | { |
2920 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 2990 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2921 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 2991 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2922 | QStringList catIncList; | 2992 | QStringList catIncList; |
2923 | QStringList newCatList; | 2993 | QStringList newCatList; |
2924 | Incidence* inc = incList.first(); | 2994 | Incidence* inc = incList.first(); |
2925 | uint i; | 2995 | uint i; |
2926 | while ( inc ) { | 2996 | while ( inc ) { |
2927 | newCatList.clear(); | 2997 | newCatList.clear(); |
2928 | catIncList = inc->categories() ; | 2998 | catIncList = inc->categories() ; |
2929 | for( i = 0; i< catIncList.count(); ++i ) { | 2999 | for( i = 0; i< catIncList.count(); ++i ) { |
2930 | if ( catList.contains (catIncList[i])) | 3000 | if ( catList.contains (catIncList[i])) |
2931 | newCatList.append( catIncList[i] ); | 3001 | newCatList.append( catIncList[i] ); |
2932 | } | 3002 | } |
2933 | newCatList.sort(); | 3003 | newCatList.sort(); |
2934 | inc->setCategories( newCatList.join(",") ); | 3004 | inc->setCategories( newCatList.join(",") ); |
2935 | inc = incList.next(); | 3005 | inc = incList.next(); |
2936 | } | 3006 | } |
2937 | } | 3007 | } |
2938 | 3008 | ||
2939 | int CalendarView::addCategories() | 3009 | int CalendarView::addCategories() |
2940 | { | 3010 | { |
2941 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 3011 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2942 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 3012 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2943 | QStringList catIncList; | 3013 | QStringList catIncList; |
2944 | Incidence* inc = incList.first(); | 3014 | Incidence* inc = incList.first(); |
2945 | uint i; | 3015 | uint i; |
2946 | int count = 0; | 3016 | int count = 0; |
2947 | while ( inc ) { | 3017 | while ( inc ) { |
2948 | catIncList = inc->categories() ; | 3018 | catIncList = inc->categories() ; |
2949 | for( i = 0; i< catIncList.count(); ++i ) { | 3019 | for( i = 0; i< catIncList.count(); ++i ) { |
2950 | if ( !catList.contains (catIncList[i])) { | 3020 | if ( !catList.contains (catIncList[i])) { |
2951 | catList.append( catIncList[i] ); | 3021 | catList.append( catIncList[i] ); |
2952 | //qDebug("add cat %s ", catIncList[i].latin1()); | 3022 | //qDebug("add cat %s ", catIncList[i].latin1()); |
2953 | ++count; | 3023 | ++count; |
2954 | } | 3024 | } |
2955 | } | 3025 | } |
2956 | inc = incList.next(); | 3026 | inc = incList.next(); |
2957 | } | 3027 | } |
2958 | catList.sort(); | 3028 | catList.sort(); |
2959 | KOPrefs::instance()->mCustomCategories = catList; | 3029 | KOPrefs::instance()->mCustomCategories = catList; |
2960 | return count; | 3030 | return count; |
2961 | } | 3031 | } |
2962 | 3032 | ||
2963 | void CalendarView::editCategories() | 3033 | void CalendarView::editCategories() |
2964 | { | 3034 | { |
2965 | qDebug("CalendarView::editCategories() "); | 3035 | qDebug("CalendarView::editCategories() "); |
2966 | KPIM::CategoryEditDialog ced (KOPrefs::instance(),this ); | 3036 | KPIM::CategoryEditDialog ced (KOPrefs::instance(),this ); |
2967 | ced.exec(); | 3037 | ced.exec(); |
2968 | } | 3038 | } |
2969 | void CalendarView::manageCategories() | 3039 | void CalendarView::manageCategories() |
2970 | { | 3040 | { |
2971 | KOCatPrefs* cp = new KOCatPrefs(); | 3041 | KOCatPrefs* cp = new KOCatPrefs(); |
2972 | cp->show(); | 3042 | cp->show(); |
2973 | int w =cp->sizeHint().width() ; | 3043 | int w =cp->sizeHint().width() ; |
2974 | int h = cp->sizeHint().height() ; | 3044 | int h = cp->sizeHint().height() ; |
2975 | int dw = QApplication::desktop()->width(); | 3045 | int dw = QApplication::desktop()->width(); |
2976 | int dh = QApplication::desktop()->height(); | 3046 | int dh = QApplication::desktop()->height(); |
2977 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 3047 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2978 | if ( !cp->exec() ) { | 3048 | if ( !cp->exec() ) { |
2979 | delete cp; | 3049 | delete cp; |
2980 | return; | 3050 | return; |
2981 | } | 3051 | } |
2982 | int count = 0; | 3052 | int count = 0; |
2983 | if ( cp->addCat() ) { | 3053 | if ( cp->addCat() ) { |
2984 | count = addCategories(); | 3054 | count = addCategories(); |
2985 | if ( count ) { | 3055 | if ( count ) { |
2986 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); | 3056 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); |
2987 | writeSettings(); | 3057 | writeSettings(); |
2988 | } else | 3058 | } else |
2989 | topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); | 3059 | topLevelWidget()->setCaption(QString::number( 0 )+ i18n(" Categories added to list! ")); |
2990 | } else { | 3060 | } else { |
2991 | removeCategories(); | 3061 | removeCategories(); |
2992 | updateView(); | 3062 | updateView(); |
2993 | } | 3063 | } |
2994 | delete cp; | 3064 | delete cp; |
2995 | } | 3065 | } |
2996 | 3066 | ||
2997 | void CalendarView::beamIncidence(Incidence * Inc) | 3067 | void CalendarView::beamIncidence(Incidence * Inc) |
2998 | { | 3068 | { |
2999 | QPtrList<Incidence> delSel ; | 3069 | QPtrList<Incidence> delSel ; |
3000 | delSel.append(Inc); | 3070 | delSel.append(Inc); |
3001 | beamIncidenceList( delSel ); | 3071 | beamIncidenceList( delSel ); |
3002 | } | 3072 | } |
3003 | void CalendarView::beamCalendar() | 3073 | void CalendarView::beamCalendar() |
3004 | { | 3074 | { |
3005 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); | 3075 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); |
3006 | //qDebug("beamCalendar() "); | 3076 | //qDebug("beamCalendar() "); |
3007 | beamIncidenceList( delSel ); | 3077 | beamIncidenceList( delSel ); |
3008 | } | 3078 | } |
3009 | void CalendarView::beamFilteredCalendar() | 3079 | void CalendarView::beamFilteredCalendar() |
3010 | { | 3080 | { |
3011 | QPtrList<Incidence> delSel = mCalendar->incidences(); | 3081 | QPtrList<Incidence> delSel = mCalendar->incidences(); |
3012 | //qDebug("beamFilteredCalendar() "); | 3082 | //qDebug("beamFilteredCalendar() "); |
3013 | beamIncidenceList( delSel ); | 3083 | beamIncidenceList( delSel ); |
3014 | } | 3084 | } |
3015 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | 3085 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) |
3016 | { | 3086 | { |
3017 | 3087 | ||
3018 | KOBeamPrefs beamDialog; | 3088 | KOBeamPrefs beamDialog; |
3019 | if ( beamDialog.exec () == QDialog::Rejected ) | 3089 | if ( beamDialog.exec () == QDialog::Rejected ) |
3020 | return; | 3090 | return; |
3021 | #ifdef DESKTOP_VERSION | 3091 | #ifdef DESKTOP_VERSION |
3022 | QString fn = locateLocal( "tmp", "kopibeamfile" ); | 3092 | QString fn = locateLocal( "tmp", "kopibeamfile" ); |
3023 | #else | 3093 | #else |
3024 | QString fn = "/tmp/kopibeamfile"; | 3094 | QString fn = "/tmp/kopibeamfile"; |
3025 | #endif | 3095 | #endif |
3026 | QString mes; | 3096 | QString mes; |
3027 | bool createbup = true; | 3097 | bool createbup = true; |
3028 | if ( createbup ) { | 3098 | if ( createbup ) { |
3029 | QString description = "\n"; | 3099 | QString description = "\n"; |
3030 | CalendarLocal* cal = new CalendarLocal(); | 3100 | CalendarLocal* cal = new CalendarLocal(); |
3031 | if ( beamDialog.beamLocal() ) | 3101 | if ( beamDialog.beamLocal() ) |
3032 | cal->setLocalTime(); | 3102 | cal->setLocalTime(); |
3033 | else | 3103 | else |
3034 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 3104 | cal->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
3035 | Incidence *incidence = delSel.first(); | 3105 | Incidence *incidence = delSel.first(); |
3036 | bool addText = false; | 3106 | bool addText = false; |
3037 | if ( delSel.count() < 10 ) | 3107 | if ( delSel.count() < 10 ) |
3038 | addText = true; | 3108 | addText = true; |
3039 | else { | 3109 | else { |
3040 | description.sprintf(i18n(" %d items?"),delSel.count() ); | 3110 | description.sprintf(i18n(" %d items?"),delSel.count() ); |
3041 | } | 3111 | } |
3042 | while ( incidence ) { | 3112 | while ( incidence ) { |
3043 | Incidence *in = incidence->clone(); | 3113 | Incidence *in = incidence->clone(); |
3044 | if ( ! in->summary().isEmpty() ) { | 3114 | if ( ! in->summary().isEmpty() ) { |
3045 | in->setDescription(""); | 3115 | in->setDescription(""); |
3046 | } else { | 3116 | } else { |
3047 | in->setSummary( in->description().left(20)); | 3117 | in->setSummary( in->description().left(20)); |
3048 | in->setDescription(""); | 3118 | in->setDescription(""); |
3049 | } | 3119 | } |
3050 | if ( addText ) | 3120 | if ( addText ) |
3051 | description += in->summary() + "\n"; | 3121 | description += in->summary() + "\n"; |
3052 | cal->addIncidence( in ); | 3122 | cal->addIncidence( in ); |
3053 | incidence = delSel.next(); | 3123 | incidence = delSel.next(); |
3054 | } | 3124 | } |
3055 | if ( beamDialog.beamVcal() ) { | 3125 | if ( beamDialog.beamVcal() ) { |
3056 | fn += ".vcs"; | 3126 | fn += ".vcs"; |
3057 | FileStorage storage( cal, fn, new VCalFormat ); | 3127 | FileStorage storage( cal, fn, new VCalFormat ); |
3058 | storage.save(); | 3128 | storage.save(); |
3059 | } else { | 3129 | } else { |
3060 | fn += ".ics"; | 3130 | fn += ".ics"; |
3061 | FileStorage storage( cal, fn, new ICalFormat( ) ); | 3131 | FileStorage storage( cal, fn, new ICalFormat( ) ); |
3062 | storage.save(); | 3132 | storage.save(); |
3063 | } | 3133 | } |
3064 | delete cal; | 3134 | delete cal; |
3065 | mes = i18n("KO/Pi: Ready for beaming"); | 3135 | mes = i18n("KO/Pi: Ready for beaming"); |
3066 | topLevelWidget()->setCaption(mes); | 3136 | topLevelWidget()->setCaption(mes); |
3067 | KApplication::convert2latin1( fn ); | 3137 | KApplication::convert2latin1( fn ); |
3068 | #ifndef DESKTOP_VERSION | 3138 | #ifndef DESKTOP_VERSION |
3069 | Ir *ir = new Ir( this ); | 3139 | Ir *ir = new Ir( this ); |
3070 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 3140 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
3071 | ir->send( fn, description, "text/x-vCalendar" ); | 3141 | ir->send( fn, description, "text/x-vCalendar" ); |
3072 | #endif | 3142 | #endif |
3073 | } | 3143 | } |
3074 | } | 3144 | } |
3075 | 3145 | ||
3076 | #ifndef DESKTOP_VERSION | 3146 | #ifndef DESKTOP_VERSION |
3077 | void CalendarView::beamDone( Ir *ir ) | 3147 | void CalendarView::beamDone( Ir *ir ) |
3078 | { | 3148 | { |
3079 | delete ir; | 3149 | delete ir; |
3080 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); | 3150 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); |
3081 | topLevelWidget()->raise(); | 3151 | topLevelWidget()->raise(); |
3082 | } | 3152 | } |
3083 | #else | 3153 | #else |
3084 | void CalendarView::beamDone( Ir *){;} | 3154 | void CalendarView::beamDone( Ir *){;} |
3085 | #endif | 3155 | #endif |
3086 | void CalendarView::moveIncidence(Incidence * inc ) | 3156 | void CalendarView::moveIncidence(Incidence * inc ) |
3087 | { | 3157 | { |
3088 | if ( !inc ) return; | 3158 | if ( !inc ) return; |
3089 | showDatePickerPopup(); | 3159 | showDatePickerPopup(); |
3090 | mDatePickerMode = 2; | 3160 | mDatePickerMode = 2; |
3091 | mMoveIncidence = inc ; | 3161 | mMoveIncidence = inc ; |
3092 | QDate da; | 3162 | QDate da; |
3093 | if ( mMoveIncidence->typeID() == todoID ) { | 3163 | if ( mMoveIncidence->typeID() == todoID ) { |
3094 | Todo * to = (Todo *) mMoveIncidence; | 3164 | Todo * to = (Todo *) mMoveIncidence; |
3095 | if ( to->hasDueDate() ) | 3165 | if ( to->hasDueDate() ) |
3096 | da = to->dtDue().date(); | 3166 | da = to->dtDue().date(); |
3097 | else | 3167 | else |
3098 | da = QDate::currentDate(); | 3168 | da = QDate::currentDate(); |
3099 | } else { | 3169 | } else { |
3100 | da = mMoveIncidence->dtStart().date(); | 3170 | da = mMoveIncidence->dtStart().date(); |
3101 | } | 3171 | } |
3102 | //PENDING set date for recurring incidence to date of recurrence | 3172 | //PENDING set date for recurring incidence to date of recurrence |
3103 | //mMoveIncidenceOldDate; | 3173 | //mMoveIncidenceOldDate; |
3104 | mDatePicker->setDate( da ); | 3174 | mDatePicker->setDate( da ); |
3105 | } | 3175 | } |
3106 | void CalendarView::showDatePickerPopup() | 3176 | void CalendarView::showDatePickerPopup() |
3107 | { | 3177 | { |
3108 | if ( mDateFrame->isVisible() ) | 3178 | if ( mDateFrame->isVisible() ) |
3109 | mDateFrame->hide(); | 3179 | mDateFrame->hide(); |
3110 | else { | 3180 | else { |
3111 | int offX = 0, offY = 0; | 3181 | int offX = 0, offY = 0; |
3112 | #ifdef DESKTOP_VERSION | 3182 | #ifdef DESKTOP_VERSION |
3113 | int w =mDatePicker->sizeHint().width() ; | 3183 | int w =mDatePicker->sizeHint().width() ; |
3114 | int h = mDatePicker->sizeHint().height() ; | 3184 | int h = mDatePicker->sizeHint().height() ; |
3115 | int dw = topLevelWidget()->width(); | 3185 | int dw = topLevelWidget()->width(); |
3116 | int dh = topLevelWidget()->height(); | 3186 | int dh = topLevelWidget()->height(); |
3117 | offX = topLevelWidget()->x(); | 3187 | offX = topLevelWidget()->x(); |
3118 | offY = topLevelWidget()->y(); | 3188 | offY = topLevelWidget()->y(); |
3119 | #else | 3189 | #else |
3120 | int w =mDatePicker->sizeHint().width() ; | 3190 | int w =mDatePicker->sizeHint().width() ; |
3121 | int h = mDatePicker->sizeHint().height() ; | 3191 | int h = mDatePicker->sizeHint().height() ; |
3122 | int dw = QApplication::desktop()->width(); | 3192 | int dw = QApplication::desktop()->width(); |
3123 | int dh = QApplication::desktop()->height(); | 3193 | int dh = QApplication::desktop()->height(); |
3124 | #endif | 3194 | #endif |
3125 | mDateFrame->setGeometry( (dw-w)/2+offX, (dh - h )/2+offY ,w,h ); | 3195 | mDateFrame->setGeometry( (dw-w)/2+offX, (dh - h )/2+offY ,w,h ); |
3126 | mDateFrame->show(); | 3196 | mDateFrame->show(); |
3127 | } | 3197 | } |
3128 | } | 3198 | } |
3129 | void CalendarView::showDatePicker( ) | 3199 | void CalendarView::showDatePicker( ) |
3130 | { | 3200 | { |
3131 | showDatePickerPopup(); | 3201 | showDatePickerPopup(); |
3132 | mDatePickerMode = 1; | 3202 | mDatePickerMode = 1; |
3133 | mDatePicker->setDate( mNavigator->selectedDates().first() ); | 3203 | mDatePicker->setDate( mNavigator->selectedDates().first() ); |
3134 | } | 3204 | } |
3135 | 3205 | ||
3136 | void CalendarView::showEventEditor() | 3206 | void CalendarView::showEventEditor() |
3137 | { | 3207 | { |
3138 | #ifdef DESKTOP_VERSION | 3208 | #ifdef DESKTOP_VERSION |
3139 | int x,y,w,h; | 3209 | int x,y,w,h; |
3140 | x = mEventEditor->geometry().x(); | 3210 | x = mEventEditor->geometry().x(); |
3141 | y = mEventEditor->geometry().y(); | 3211 | y = mEventEditor->geometry().y(); |
3142 | w = mEventEditor->width(); | 3212 | w = mEventEditor->width(); |
3143 | h = mEventEditor->height(); | 3213 | h = mEventEditor->height(); |
3144 | mEventEditor->show(); | 3214 | mEventEditor->show(); |
3145 | mEventEditor->setGeometry(x,y,w,h); | 3215 | mEventEditor->setGeometry(x,y,w,h); |
3146 | #else | 3216 | #else |
3147 | if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) { | 3217 | if ( mEventEditor->width() < QApplication::desktop()->width() -60 || mEventEditor->width() > QApplication::desktop()->width() ) { |
3148 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); | 3218 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); |
3149 | qDebug("KO: CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() ); | 3219 | qDebug("KO: CalendarView: recreate mEventEditor %d %d", mEventEditor->width(), QApplication::desktop()->width() ); |
3150 | qApp->processEvents(); | 3220 | qApp->processEvents(); |
3151 | delete mEventEditor; | 3221 | delete mEventEditor; |
3152 | mEventEditor = mDialogManager->getEventEditor(); | 3222 | mEventEditor = mDialogManager->getEventEditor(); |
3153 | topLevelWidget()->setCaption( i18n("") ); | 3223 | topLevelWidget()->setCaption( i18n("") ); |
3154 | } | 3224 | } |
3155 | mEventEditor->showMaximized(); | 3225 | mEventEditor->showMaximized(); |
3156 | #endif | 3226 | #endif |
3157 | } | 3227 | } |
3158 | void CalendarView::showTodoEditor() | 3228 | void CalendarView::showTodoEditor() |
3159 | { | 3229 | { |
3160 | #ifdef DESKTOP_VERSION | 3230 | #ifdef DESKTOP_VERSION |
3161 | int x,y,w,h; | 3231 | int x,y,w,h; |
3162 | x = mTodoEditor->geometry().x(); | 3232 | x = mTodoEditor->geometry().x(); |
3163 | y = mTodoEditor->geometry().y(); | 3233 | y = mTodoEditor->geometry().y(); |
3164 | w = mTodoEditor->width(); | 3234 | w = mTodoEditor->width(); |
3165 | h = mTodoEditor->height(); | 3235 | h = mTodoEditor->height(); |
3166 | mTodoEditor->show(); | 3236 | mTodoEditor->show(); |
3167 | mTodoEditor->setGeometry(x,y,w,h); | 3237 | mTodoEditor->setGeometry(x,y,w,h); |
3168 | #else | 3238 | #else |
3169 | if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) { | 3239 | if ( mTodoEditor->width() < QApplication::desktop()->width() -60|| mTodoEditor->width() > QApplication::desktop()->width() ) { |
3170 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); | 3240 | topLevelWidget()->setCaption( i18n("Recreating edit dialog. Please wait...") ); |
3171 | qDebug("KO: CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() ); | 3241 | qDebug("KO: CalendarView: recreate mTodoEditor %d %d ", mTodoEditor->width() ,QApplication::desktop()->width() ); |
3172 | qApp->processEvents(); | 3242 | qApp->processEvents(); |
3173 | delete mTodoEditor; | 3243 | delete mTodoEditor; |
3174 | mTodoEditor = mDialogManager->getTodoEditor(); | 3244 | mTodoEditor = mDialogManager->getTodoEditor(); |
3175 | topLevelWidget()->setCaption( i18n("") ); | 3245 | topLevelWidget()->setCaption( i18n("") ); |
3176 | } | 3246 | } |
3177 | mTodoEditor->showMaximized(); | 3247 | mTodoEditor->showMaximized(); |
3178 | #endif | 3248 | #endif |
3179 | } | 3249 | } |
3180 | 3250 | ||
3181 | void CalendarView::cloneIncidence() | 3251 | void CalendarView::cloneIncidence() |
3182 | { | 3252 | { |
3183 | Incidence *incidence = currentSelection(); | 3253 | Incidence *incidence = currentSelection(); |
3184 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3254 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3185 | if ( incidence ) { | 3255 | if ( incidence ) { |
3186 | cloneIncidence(incidence); | 3256 | cloneIncidence(incidence); |
3187 | } | 3257 | } |
3188 | } | 3258 | } |
3189 | void CalendarView::moveIncidence() | 3259 | void CalendarView::moveIncidence() |
3190 | { | 3260 | { |
3191 | Incidence *incidence = currentSelection(); | 3261 | Incidence *incidence = currentSelection(); |
3192 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3262 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3193 | if ( incidence ) { | 3263 | if ( incidence ) { |
3194 | moveIncidence(incidence); | 3264 | moveIncidence(incidence); |
3195 | } | 3265 | } |
3196 | } | 3266 | } |
3197 | void CalendarView::beamIncidence() | 3267 | void CalendarView::beamIncidence() |
3198 | { | 3268 | { |
3199 | Incidence *incidence = currentSelection(); | 3269 | Incidence *incidence = currentSelection(); |
3200 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3270 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3201 | if ( incidence ) { | 3271 | if ( incidence ) { |
3202 | beamIncidence(incidence); | 3272 | beamIncidence(incidence); |
3203 | } | 3273 | } |
3204 | } | 3274 | } |
3205 | void CalendarView::toggleCancelIncidence() | 3275 | void CalendarView::toggleCancelIncidence() |
3206 | { | 3276 | { |
3207 | Incidence *incidence = currentSelection(); | 3277 | Incidence *incidence = currentSelection(); |
3208 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 3278 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
3209 | if ( incidence ) { | 3279 | if ( incidence ) { |
3210 | cancelIncidence(incidence); | 3280 | cancelIncidence(incidence); |
3211 | } | 3281 | } |
3212 | } | 3282 | } |
3213 | 3283 | ||
3214 | 3284 | ||
3215 | void CalendarView::cancelIncidence(Incidence * inc ) | 3285 | void CalendarView::cancelIncidence(Incidence * inc ) |
3216 | { | 3286 | { |
3217 | inc->setCancelled( ! inc->cancelled() ); | 3287 | inc->setCancelled( ! inc->cancelled() ); |
3218 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); | 3288 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); |
3219 | updateView(); | 3289 | updateView(); |
3220 | } | 3290 | } |
3221 | void CalendarView::cloneIncidence(Incidence * orgInc ) | 3291 | void CalendarView::cloneIncidence(Incidence * orgInc ) |
3222 | { | 3292 | { |
3223 | Incidence * newInc = orgInc->clone(); | 3293 | Incidence * newInc = orgInc->clone(); |
3224 | newInc->recreate(); | 3294 | newInc->recreate(); |
3225 | 3295 | ||
3226 | if ( newInc->typeID() == todoID ) { | 3296 | if ( newInc->typeID() == todoID ) { |
3227 | Todo* t = (Todo*) newInc; | 3297 | Todo* t = (Todo*) newInc; |
3228 | bool cloneSub = false; | 3298 | bool cloneSub = false; |
3229 | if ( orgInc->relations().count() ) { | 3299 | if ( orgInc->relations().count() ) { |
3230 | int result = KMessageBox::warningYesNoCancel(this, | 3300 | int result = KMessageBox::warningYesNoCancel(this, |
3231 | i18n("The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?").arg( KGlobal::formatMessage ( newInc->summary(),0 ) ), | 3301 | i18n("The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?").arg( KGlobal::formatMessage ( newInc->summary(),0 ) ), |
3232 | i18n("Todo has subtodos"), | 3302 | i18n("Todo has subtodos"), |
3233 | i18n("Yes"), | 3303 | i18n("Yes"), |
3234 | i18n("No")); | 3304 | i18n("No")); |
3235 | 3305 | ||
3236 | if ( result == KMessageBox::Cancel ) { | 3306 | if ( result == KMessageBox::Cancel ) { |
3237 | delete t; | 3307 | delete t; |
3238 | return; | 3308 | return; |
diff --git a/korganizer/calendarview.h b/korganizer/calendarview.h index 51eb1d4..706d05d 100644 --- a/korganizer/calendarview.h +++ b/korganizer/calendarview.h | |||
@@ -1,664 +1,666 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000, 2001 | 3 | Copyright (c) 2000, 2001 |
4 | Cornelius Schumacher <schumacher@kde.org> | 4 | Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify | 6 | This program is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
8 | the Free Software Foundation; either version 2 of the License, or | 8 | the Free Software Foundation; either version 2 of the License, or |
9 | (at your option) any later version. | 9 | (at your option) any later version. |
10 | 10 | ||
11 | This program is distributed in the hope that it will be useful, | 11 | This program is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | GNU General Public License for more details. | 14 | GNU General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | 17 | along with this program; if not, write to the Free Software |
18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | As a special exception, permission is given to link this program | 20 | As a special exception, permission is given to link this program |
21 | with any edition of Qt, and distribute the resulting executable, | 21 | with any edition of Qt, and distribute the resulting executable, |
22 | without including the source code for Qt in the source distribution. | 22 | without including the source code for Qt in the source distribution. |
23 | */ | 23 | */ |
24 | #ifndef CALENDARVIEW_H | 24 | #ifndef CALENDARVIEW_H |
25 | #define CALENDARVIEW_H | 25 | #define CALENDARVIEW_H |
26 | 26 | ||
27 | #include <qframe.h> | 27 | #include <qframe.h> |
28 | #include <qlayout.h> | 28 | #include <qlayout.h> |
29 | #include <qwidget.h> | 29 | #include <qwidget.h> |
30 | #include <qptrlist.h> | 30 | #include <qptrlist.h> |
31 | #include <qvbox.h> | 31 | #include <qvbox.h> |
32 | #include <qmap.h> | 32 | #include <qmap.h> |
33 | #include <qscrollbar.h> | 33 | #include <qscrollbar.h> |
34 | #ifndef DESKTOP_VERSION | 34 | #ifndef DESKTOP_VERSION |
35 | #include <qtopia/ir.h> | 35 | #include <qtopia/ir.h> |
36 | #else | 36 | #else |
37 | #define Ir char | 37 | #define Ir char |
38 | #endif | 38 | #endif |
39 | #include <libkcal/calendar.h> | 39 | #include <libkcal/calendar.h> |
40 | #include <libkcal/scheduler.h> | 40 | #include <libkcal/scheduler.h> |
41 | #include <libkcal/calendarresources.h> | 41 | #include <libkcal/calendarresources.h> |
42 | #include <libkcal/resourcecalendar.h> | 42 | #include <libkcal/resourcecalendar.h> |
43 | #include <KDGanttMinimizeSplitter.h> | 43 | #include <KDGanttMinimizeSplitter.h> |
44 | 44 | ||
45 | #include <korganizer/calendarviewbase.h> | 45 | #include <korganizer/calendarviewbase.h> |
46 | 46 | ||
47 | #include <ksyncmanager.h> | 47 | #include <ksyncmanager.h> |
48 | //#include <koprefs.h> | 48 | //#include <koprefs.h> |
49 | 49 | ||
50 | class QWidgetStack; | 50 | class QWidgetStack; |
51 | class QSplitter; | 51 | class QSplitter; |
52 | class KopiCalendarFile; | 52 | class KopiCalendarFile; |
53 | class CalPrinter; | 53 | class CalPrinter; |
54 | class KOFilterView; | 54 | class KOFilterView; |
55 | class KOCalEditView; | 55 | class KOCalEditView; |
56 | class KOViewManager; | 56 | class KOViewManager; |
57 | class KODialogManager; | 57 | class KODialogManager; |
58 | class KOTodoView; | 58 | class KOTodoView; |
59 | class KDateNavigator; | 59 | class KDateNavigator; |
60 | class DateNavigatorContainer; | 60 | class DateNavigatorContainer; |
61 | class DateNavigator; | 61 | class DateNavigator; |
62 | class KOIncidenceEditor; | 62 | class KOIncidenceEditor; |
63 | class KDatePicker; | 63 | class KDatePicker; |
64 | class ResourceView; | 64 | class ResourceView; |
65 | class KOEventEditor; | 65 | class KOEventEditor; |
66 | class KOTodoEditor ; | 66 | class KOTodoEditor ; |
67 | class KOEventViewerDialog; | 67 | class KOEventViewerDialog; |
68 | class KOBeamPrefs; | 68 | class KOBeamPrefs; |
69 | class KSyncProfile; | 69 | class KSyncProfile; |
70 | class AlarmDialog; | 70 | class AlarmDialog; |
71 | class KCal::Attendee; | 71 | class KCal::Attendee; |
72 | 72 | ||
73 | namespace KCal { class FileStorage; } | 73 | namespace KCal { class FileStorage; } |
74 | 74 | ||
75 | using namespace KCal; | 75 | using namespace KCal; |
76 | 76 | ||
77 | /** | 77 | /** |
78 | This is the main calendar widget. It provides the different vies on t he | 78 | This is the main calendar widget. It provides the different vies on t he |
79 | calendar data as well as the date navigator. It also handles synchronisation | 79 | calendar data as well as the date navigator. It also handles synchronisation |
80 | of the different views and controls the different dialogs like preferences, | 80 | of the different views and controls the different dialogs like preferences, |
81 | event editor, search dialog etc. | 81 | event editor, search dialog etc. |
82 | 82 | ||
83 | @short main calendar view widget | 83 | @short main calendar view widget |
84 | @author Cornelius Schumacher | 84 | @author Cornelius Schumacher |
85 | */ | 85 | */ |
86 | 86 | ||
87 | #include <qtextbrowser.h> | 87 | #include <qtextbrowser.h> |
88 | #include <qtextcodec.h> | 88 | #include <qtextcodec.h> |
89 | 89 | ||
90 | class MissedAlarmTextBrowser : public QTextBrowser { | 90 | class MissedAlarmTextBrowser : public QTextBrowser { |
91 | Q_OBJECT | 91 | Q_OBJECT |
92 | public: | 92 | public: |
93 | MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms ,QDateTime start); | 93 | MissedAlarmTextBrowser(QWidget *parent, QPtrList<Incidence> alarms ,QDateTime start); |
94 | ~MissedAlarmTextBrowser(); | 94 | ~MissedAlarmTextBrowser(); |
95 | void setSource(const QString & n); | 95 | void setSource(const QString & n); |
96 | 96 | ||
97 | private: | 97 | private: |
98 | Incidence * getNextInc(QDateTime start ); | 98 | Incidence * getNextInc(QDateTime start ); |
99 | QPtrList<Incidence> mAlarms; | 99 | QPtrList<Incidence> mAlarms; |
100 | signals: | 100 | signals: |
101 | void showIncidence( QString uid); | 101 | void showIncidence( QString uid); |
102 | }; | 102 | }; |
103 | 103 | ||
104 | 104 | ||
105 | class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Observer, public KSyncInterface | 105 | class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Observer, public KSyncInterface |
106 | { | 106 | { |
107 | Q_OBJECT | 107 | Q_OBJECT |
108 | public: | 108 | public: |
109 | /** | 109 | /** |
110 | Constructs a new calendar view widget. | 110 | Constructs a new calendar view widget. |
111 | 111 | ||
112 | @param calendar calendar document | 112 | @param calendar calendar document |
113 | @param parent parent window | 113 | @param parent parent window |
114 | @param name Qt internal widget object name | 114 | @param name Qt internal widget object name |
115 | */ | 115 | */ |
116 | CalendarView( CalendarResources *calendar, QWidget *parent = 0, | 116 | CalendarView( CalendarResources *calendar, QWidget *parent = 0, |
117 | const char *name = 0 ); | 117 | const char *name = 0 ); |
118 | CalendarView( Calendar *calendar, QWidget *parent = 0, | 118 | CalendarView( Calendar *calendar, QWidget *parent = 0, |
119 | const char *name = 0 ); | 119 | const char *name = 0 ); |
120 | virtual ~CalendarView(); | 120 | virtual ~CalendarView(); |
121 | 121 | ||
122 | Calendar *calendar() { return mCalendar; } | 122 | Calendar *calendar() { return mCalendar; } |
123 | 123 | ||
124 | KOViewManager *viewManager(); | 124 | KOViewManager *viewManager(); |
125 | KODialogManager *dialogManager(); | 125 | KODialogManager *dialogManager(); |
126 | 126 | ||
127 | QDate startDate(); | 127 | QDate startDate(); |
128 | QDate endDate(); | 128 | QDate endDate(); |
129 | 129 | ||
130 | QWidgetStack *viewStack(); | 130 | QWidgetStack *viewStack(); |
131 | QWidget *leftFrame(); | 131 | QWidget *leftFrame(); |
132 | 132 | ||
133 | DateNavigator *dateNavigator(); | 133 | DateNavigator *dateNavigator(); |
134 | KDateNavigator *dateNavigatorWidget(); | 134 | KDateNavigator *dateNavigatorWidget(); |
135 | 135 | ||
136 | void addView(KOrg::BaseView *); | 136 | void addView(KOrg::BaseView *); |
137 | void showView(KOrg::BaseView *); | 137 | void showView(KOrg::BaseView *); |
138 | KOEventViewerDialog* getEventViewerDialog(); | 138 | KOEventViewerDialog* getEventViewerDialog(); |
139 | Incidence *currentSelection(); | 139 | Incidence *currentSelection(); |
140 | void checkSuspendAlarm(); | 140 | void checkSuspendAlarm(); |
141 | 141 | ||
142 | signals: | 142 | signals: |
143 | void save (); | 143 | void save (); |
144 | void saveStopTimer (); | 144 | void saveStopTimer (); |
145 | void tempDisableBR(bool); | 145 | void tempDisableBR(bool); |
146 | /** This todo has been modified */ | 146 | /** This todo has been modified */ |
147 | void todoModified(Todo *, int); | 147 | void todoModified(Todo *, int); |
148 | 148 | ||
149 | /** when change is made to options dialog, the topwidget will catch this | 149 | /** when change is made to options dialog, the topwidget will catch this |
150 | * and emit this signal which notifies all widgets which have registered | 150 | * and emit this signal which notifies all widgets which have registered |
151 | * for notification to update their settings. */ | 151 | * for notification to update their settings. */ |
152 | void configChanged(); | 152 | void configChanged(); |
153 | /** emitted when the topwidget is closing down, so that any attached | 153 | /** emitted when the topwidget is closing down, so that any attached |
154 | child windows can also close. */ | 154 | child windows can also close. */ |
155 | void closingDown(); | 155 | void closingDown(); |
156 | /** emitted right before we die */ | 156 | /** emitted right before we die */ |
157 | void closed(QWidget *); | 157 | void closed(QWidget *); |
158 | 158 | ||
159 | /** Emitted when state of modified flag changes */ | 159 | /** Emitted when state of modified flag changes */ |
160 | void modifiedChanged(bool); | 160 | void modifiedChanged(bool); |
161 | void signalmodified(); | 161 | void signalmodified(); |
162 | 162 | ||
163 | /** Emitted when state of read-only flag changes */ | 163 | /** Emitted when state of read-only flag changes */ |
164 | void readOnlyChanged(bool); | 164 | void readOnlyChanged(bool); |
165 | 165 | ||
166 | /** Emitted when the unit of navigation changes */ | 166 | /** Emitted when the unit of navigation changes */ |
167 | void changeNavStringPrev(const QString &); | 167 | void changeNavStringPrev(const QString &); |
168 | void changeNavStringNext(const QString &); | 168 | void changeNavStringNext(const QString &); |
169 | 169 | ||
170 | /** Emitted when state of events selection has changed and user is organizer*/ | 170 | /** Emitted when state of events selection has changed and user is organizer*/ |
171 | void organizerEventsSelected(bool); | 171 | void organizerEventsSelected(bool); |
172 | /** Emitted when state of events selection has changed and user is attendee*/ | 172 | /** Emitted when state of events selection has changed and user is attendee*/ |
173 | void groupEventsSelected(bool); | 173 | void groupEventsSelected(bool); |
174 | /** | 174 | /** |
175 | Emitted when an incidence gets selected. If the selection is cleared the | 175 | Emitted when an incidence gets selected. If the selection is cleared the |
176 | signal is emitted with 0 as argument. | 176 | signal is emitted with 0 as argument. |
177 | */ | 177 | */ |
178 | void incidenceSelected( Incidence * ); | 178 | void incidenceSelected( Incidence * ); |
179 | /** Emitted, when a todoitem is selected or deselected. */ | 179 | /** Emitted, when a todoitem is selected or deselected. */ |
180 | void todoSelected( bool ); | 180 | void todoSelected( bool ); |
181 | 181 | ||
182 | /** | 182 | /** |
183 | Emitted, when clipboard content changes. Parameter indicates if paste | 183 | Emitted, when clipboard content changes. Parameter indicates if paste |
184 | is possible or not. | 184 | is possible or not. |
185 | */ | 185 | */ |
186 | void pasteEnabled(bool); | 186 | void pasteEnabled(bool); |
187 | 187 | ||
188 | /** Emitted, when the number of incoming messages has changed. */ | 188 | /** Emitted, when the number of incoming messages has changed. */ |
189 | void numIncomingChanged(int); | 189 | void numIncomingChanged(int); |
190 | 190 | ||
191 | /** Emitted, when the number of outgoing messages has changed. */ | 191 | /** Emitted, when the number of outgoing messages has changed. */ |
192 | void numOutgoingChanged(int); | 192 | void numOutgoingChanged(int); |
193 | 193 | ||
194 | /** Send status message, which can e.g. be displayed in the status bar. */ | 194 | /** Send status message, which can e.g. be displayed in the status bar. */ |
195 | void statusMessage(const QString &); | 195 | void statusMessage(const QString &); |
196 | 196 | ||
197 | void calendarViewExpanded( bool ); | 197 | void calendarViewExpanded( bool ); |
198 | void updateSearchDialog(); | 198 | void updateSearchDialog(); |
199 | void filtersUpdated(); | 199 | void filtersUpdated(); |
200 | 200 | ||
201 | 201 | ||
202 | public slots: | 202 | public slots: |
203 | void nextConflict( bool all, bool allday ); | 203 | void nextConflict( bool all, bool allday ); |
204 | void conflictAll(); | 204 | void conflictAll(); |
205 | void conflictAllday(); | 205 | void conflictAllday(); |
206 | void conflictNotAll(); | 206 | void conflictNotAll(); |
207 | void setCalReadOnly( int id, bool readO ); | 207 | void setCalReadOnly( int id, bool readO ); |
208 | void checkAlarms(); | 208 | void checkAlarms(); |
209 | void checkFiles(); | 209 | void checkFiles(); |
210 | void slotprintSelInc(); | 210 | void slotprintSelInc(); |
211 | void showNextAlarms(); | 211 | void showNextAlarms(); |
212 | void showOpenError(); | 212 | void showOpenError(); |
213 | void watchSavedFile(); | 213 | void watchSavedFile(); |
214 | void recheckTimerAlarm(); | 214 | void recheckTimerAlarm(); |
215 | void checkNextTimerAlarm(); | 215 | void checkNextTimerAlarm(); |
216 | void addAlarm(const QDateTime &qdt, const QString ¬i ); | 216 | void addAlarm(const QDateTime &qdt, const QString ¬i ); |
217 | void addSuspendAlarm(const QDateTime &qdt, const QString ¬i ); | 217 | void addSuspendAlarm(const QDateTime &qdt, const QString ¬i ); |
218 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); | 218 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); |
219 | 219 | ||
220 | /** options dialog made a changed to the configuration. we catch this | 220 | /** options dialog made a changed to the configuration. we catch this |
221 | * and notify all widgets which need to update their configuration. */ | 221 | * and notify all widgets which need to update their configuration. */ |
222 | void updateConfig(); | 222 | void updateConfig(); |
223 | 223 | ||
224 | void insertBirthdays(const QString& uid, const QStringList& birthdayList, | 224 | void insertBirthdays(const QString& uid, const QStringList& birthdayList, |
225 | const QStringList& anniversaryList, const QStringList& realNameList, | 225 | const QStringList& anniversaryList, const QStringList& realNameList, |
226 | const QStringList& emailList, const QStringList& assembledNameList, | 226 | const QStringList& emailList, const QStringList& assembledNameList, |
227 | const QStringList& uidList); | 227 | const QStringList& uidList); |
228 | 228 | ||
229 | /** | 229 | /** |
230 | Load calendar from file \a filename. If \a merge is true, load | 230 | Load calendar from file \a filename. If \a merge is true, load |
231 | calendar into existing one, if it is false, clear calendar, before | 231 | calendar into existing one, if it is false, clear calendar, before |
232 | loading. Return true, if calendar could be successfully loaded. | 232 | loading. Return true, if calendar could be successfully loaded. |
233 | */ | 233 | */ |
234 | bool openCalendar(QString filename, bool merge=false); | 234 | bool openCalendar(QString filename, bool merge=false); |
235 | bool loadCalendars(); | 235 | bool loadCalendars(); |
236 | bool saveCalendars(); | 236 | bool saveCalendars(); |
237 | bool restoreCalendarSettings(); | 237 | bool restoreCalendarSettings(); |
238 | bool addCalendar( KopiCalendarFile * ); | 238 | bool addCalendar( KopiCalendarFile * ); |
239 | void addCalendarId( int id ); | 239 | void addCalendarId( int id ); |
240 | bool syncCalendar(QString filename,int mode = 0 ); | 240 | bool syncCalendar(QString filename,int mode = 0 ); |
241 | 241 | ||
242 | /** | 242 | /** |
243 | Save calendar data to file. Return true if calendar could be | 243 | Save calendar data to file. Return true if calendar could be |
244 | successfully saved. | 244 | successfully saved. |
245 | */ | 245 | */ |
246 | bool saveCalendar(QString filename); | 246 | bool saveCalendar(QString filename); |
247 | 247 | ||
248 | /** | 248 | /** |
249 | Close calendar. Clear calendar data and reset views to display an empty | 249 | Close calendar. Clear calendar data and reset views to display an empty |
250 | calendar. | 250 | calendar. |
251 | */ | 251 | */ |
252 | void closeCalendar(); | 252 | void closeCalendar(); |
253 | 253 | ||
254 | /** Archive old events of calendar */ | 254 | /** Archive old events of calendar */ |
255 | void archiveCalendar(); | 255 | void archiveCalendar(); |
256 | 256 | ||
257 | void showIncidence(); | 257 | void showIncidence(); |
258 | void editIncidence(); | 258 | void editIncidence(); |
259 | void editIncidenceDescription(); | 259 | void editIncidenceDescription(); |
260 | void deleteIncidence(); | 260 | void deleteIncidence(); |
261 | void cloneIncidence(); | 261 | void cloneIncidence(); |
262 | void moveIncidence(); | 262 | void moveIncidence(); |
263 | void beamIncidence(); | 263 | void beamIncidence(); |
264 | void toggleCancelIncidence(); | 264 | void toggleCancelIncidence(); |
265 | 265 | ||
266 | /** create an editeventwin with supplied date/time, and if bool is true, | 266 | /** create an editeventwin with supplied date/time, and if bool is true, |
267 | * make the event take all day. */ | 267 | * make the event take all day. */ |
268 | void newEvent(QDateTime, QDateTime, bool allDay ); | 268 | void newEvent(QDateTime, QDateTime, bool allDay ); |
269 | void newEvent(QDateTime, QDateTime); | 269 | void newEvent(QDateTime, QDateTime); |
270 | void newEvent(QDateTime fh); | 270 | void newEvent(QDateTime fh); |
271 | void newEvent(QDate dt); | 271 | void newEvent(QDate dt); |
272 | /** create new event without having a date hint. Takes current date as | 272 | /** create new event without having a date hint. Takes current date as |
273 | default hint. */ | 273 | default hint. */ |
274 | void newEvent(); | 274 | void newEvent(); |
275 | void newFloatingEvent(); | 275 | void newFloatingEvent(); |
276 | 276 | ||
277 | /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/ | 277 | /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/ |
278 | void showIncidence(Incidence *); | 278 | void showIncidence(Incidence *); |
279 | void showIncidence(QString uid); | 279 | void showIncidence(QString uid); |
280 | /** Create an editor for the supplied incidence. It calls the correct editXXX method*/ | 280 | /** Create an editor for the supplied incidence. It calls the correct editXXX method*/ |
281 | void editIncidence(Incidence *); | 281 | void editIncidence(Incidence *); |
282 | /** Delete the supplied incidence. It calls the correct deleteXXX method*/ | 282 | /** Delete the supplied incidence. It calls the correct deleteXXX method*/ |
283 | void deleteIncidence(Incidence *); | 283 | void deleteIncidence(Incidence *); |
284 | void cloneIncidence(Incidence *); | 284 | void cloneIncidence(Incidence *); |
285 | void cancelIncidence(Incidence *); | 285 | void cancelIncidence(Incidence *); |
286 | /** Create an editor for the supplied event. */ | 286 | /** Create an editor for the supplied event. */ |
287 | void editEvent(Event *); | 287 | void editEvent(Event *); |
288 | /** Delete the supplied event. */ | 288 | /** Delete the supplied event. */ |
289 | void deleteEvent(Event *); | 289 | void deleteEvent(Event *); |
290 | /** Delete the event with the given unique ID. Returns false, if event wasn't | 290 | /** Delete the event with the given unique ID. Returns false, if event wasn't |
291 | found. */ | 291 | found. */ |
292 | bool deleteEvent(const QString &uid); | 292 | bool deleteEvent(const QString &uid); |
293 | /** Create a read-only viewer dialog for the supplied event. */ | 293 | /** Create a read-only viewer dialog for the supplied event. */ |
294 | void showEvent(Event *); | 294 | void showEvent(Event *); |
295 | 295 | ||
296 | void editJournal(Journal *); | 296 | void editJournal(Journal *); |
297 | void showJournal(Journal *); | 297 | void showJournal(Journal *); |
298 | void deleteJournal(Journal *); | 298 | void deleteJournal(Journal *); |
299 | /** Create an editor dialog for a todo */ | 299 | /** Create an editor dialog for a todo */ |
300 | void editTodo(Todo *); | 300 | void editTodo(Todo *); |
301 | /** Create a read-only viewer dialog for the supplied todo */ | 301 | /** Create a read-only viewer dialog for the supplied todo */ |
302 | void showTodo(Todo *); | 302 | void showTodo(Todo *); |
303 | /** create new todo */ | 303 | /** create new todo */ |
304 | void newTodo(); | 304 | void newTodo(); |
305 | void newTodoDateTime(QDateTime, bool allday); | 305 | void newTodoDateTime(QDateTime, bool allday); |
306 | /** create new todo with a parent todo */ | 306 | /** create new todo with a parent todo */ |
307 | void newSubTodo(); | 307 | void newSubTodo(); |
308 | /** create new todo with a parent todo */ | 308 | /** create new todo with a parent todo */ |
309 | void newSubTodo(Todo *); | 309 | void newSubTodo(Todo *); |
310 | /** Delete todo */ | 310 | /** Delete todo */ |
311 | void deleteTodo(Todo *); | 311 | void deleteTodo(Todo *); |
312 | 312 | ||
313 | 313 | ||
314 | /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is | 314 | /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is |
315 | * emitted as result. */ | 315 | * emitted as result. */ |
316 | void checkClipboard(); | 316 | void checkClipboard(); |
317 | 317 | ||
318 | /** using the KConfig associated with the kapp variable, read in the | 318 | /** using the KConfig associated with the kapp variable, read in the |
319 | * settings from the config file. | 319 | * settings from the config file. |
320 | */ | 320 | */ |
321 | void readSettings(); | 321 | void readSettings(); |
322 | 322 | ||
323 | /** write current state to config file. */ | 323 | /** write current state to config file. */ |
324 | void writeSettings(); | 324 | void writeSettings(); |
325 | 325 | ||
326 | /** read settings for calendar filters */ | 326 | /** read settings for calendar filters */ |
327 | void readFilterSettings(KConfig *config); | 327 | void readFilterSettings(KConfig *config); |
328 | 328 | ||
329 | /** write settings for calendar filters */ | 329 | /** write settings for calendar filters */ |
330 | void writeFilterSettings(KConfig *config); | 330 | void writeFilterSettings(KConfig *config); |
331 | 331 | ||
332 | /** passes on the message that an event has changed to the currently | 332 | /** passes on the message that an event has changed to the currently |
333 | * activated view so that it can make appropriate display changes. */ | 333 | * activated view so that it can make appropriate display changes. */ |
334 | void changeEventDisplay(Event *, int); | 334 | void changeEventDisplay(Event *, int); |
335 | void changeIncidenceDisplay(Incidence *, int); | 335 | void changeIncidenceDisplay(Incidence *, int); |
336 | void changeTodoDisplay(Todo *, int); | 336 | void changeTodoDisplay(Todo *, int); |
337 | 337 | ||
338 | void eventAdded(Event *); | 338 | void eventAdded(Event *); |
339 | void eventChanged(Event *); | 339 | void eventChanged(Event *); |
340 | void eventToBeDeleted(Event *); | 340 | void eventToBeDeleted(Event *); |
341 | void eventDeleted(); | 341 | void eventDeleted(); |
342 | 342 | ||
343 | void todoAdded(Todo *); | 343 | void todoAdded(Todo *); |
344 | void todoChanged(Todo *); | 344 | void todoChanged(Todo *); |
345 | void todoToBeDeleted(Todo *); | 345 | void todoToBeDeleted(Todo *); |
346 | void todoDeleted(); | 346 | void todoDeleted(); |
347 | 347 | ||
348 | void updateView(const QDate &start, const QDate &end); | 348 | void updateView(const QDate &start, const QDate &end); |
349 | void updateView(); | 349 | void updateView(); |
350 | void clearAllViews(); | 350 | void clearAllViews(); |
351 | 351 | ||
352 | /** Full update of visible todo views */ | 352 | /** Full update of visible todo views */ |
353 | void updateTodoViews(); | 353 | void updateTodoViews(); |
354 | 354 | ||
355 | void updateUnmanagedViews(); | 355 | void updateUnmanagedViews(); |
356 | 356 | ||
357 | /** cut the current appointment to the clipboard */ | 357 | /** cut the current appointment to the clipboard */ |
358 | void edit_cut(); | 358 | void edit_cut(); |
359 | 359 | ||
360 | /** copy the current appointment(s) to the clipboard */ | 360 | /** copy the current appointment(s) to the clipboard */ |
361 | void edit_copy(); | 361 | void edit_copy(); |
362 | 362 | ||
363 | /** paste the current vobject(s) in the clipboard buffer into calendar */ | 363 | /** paste the current vobject(s) in the clipboard buffer into calendar */ |
364 | void edit_paste(); | 364 | void edit_paste(); |
365 | 365 | ||
366 | /** edit viewing and configuration options. */ | 366 | /** edit viewing and configuration options. */ |
367 | void edit_options(); | 367 | void edit_options(); |
368 | void edit_global_options(); | 368 | void edit_global_options(); |
369 | /** | 369 | /** |
370 | Functions for printing, previewing a print, and setting up printing | 370 | Functions for printing, previewing a print, and setting up printing |
371 | parameters. | 371 | parameters. |
372 | */ | 372 | */ |
373 | void print(); | 373 | void print(); |
374 | void printSetup(); | 374 | void printSetup(); |
375 | void printPreview(); | 375 | void printPreview(); |
376 | 376 | ||
377 | /** Export as iCalendar file */ | 377 | /** Export as iCalendar file */ |
378 | void exportICalendar(); | 378 | void exportICalendar(); |
379 | 379 | ||
380 | /** Export as vCalendar file */ | 380 | /** Export as vCalendar file */ |
381 | bool exportVCalendar( QString fn); | 381 | bool exportVCalendar( QString fn); |
382 | 382 | ||
383 | /** pop up a dialog to show an existing appointment. */ | 383 | /** pop up a dialog to show an existing appointment. */ |
384 | void appointment_show(); | 384 | void appointment_show(); |
385 | /** | 385 | /** |
386 | * pop up an Appointment Dialog to edit an existing appointment.Get | 386 | * pop up an Appointment Dialog to edit an existing appointment.Get |
387 | * information on the appointment from the list of unique IDs that is | 387 | * information on the appointment from the list of unique IDs that is |
388 | * currently in the View, called currIds. | 388 | * currently in the View, called currIds. |
389 | */ | 389 | */ |
390 | void appointment_edit(); | 390 | void appointment_edit(); |
391 | /** | 391 | /** |
392 | * pop up dialog confirming deletion of currently selected event in the | 392 | * pop up dialog confirming deletion of currently selected event in the |
393 | * View. | 393 | * View. |
394 | */ | 394 | */ |
395 | void appointment_delete(); | 395 | void appointment_delete(); |
396 | 396 | ||
397 | /** mails the currently selected event to a particular user as a vCalendar | 397 | /** mails the currently selected event to a particular user as a vCalendar |
398 | attachment. */ | 398 | attachment. */ |
399 | void action_mail(); | 399 | void action_mail(); |
400 | 400 | ||
401 | /* frees a subtodo from it's relation */ | 401 | /* frees a subtodo from it's relation */ |
402 | void todo_unsub( Todo * ); | 402 | void todo_unsub( Todo * ); |
403 | void todo_resub( Todo * parent, Todo * sub ); | 403 | void todo_resub( Todo * parent, Todo * sub ); |
404 | 404 | ||
405 | /** Take ownership of selected event. */ | 405 | /** Take ownership of selected event. */ |
406 | void takeOverEvent(); | 406 | void takeOverEvent(); |
407 | 407 | ||
408 | /** Take ownership of all events in calendar. */ | 408 | /** Take ownership of all events in calendar. */ |
409 | void takeOverCalendar(); | 409 | void takeOverCalendar(); |
410 | 410 | ||
411 | /** query whether or not the calendar is "dirty". */ | 411 | /** query whether or not the calendar is "dirty". */ |
412 | bool isModified(); | 412 | bool isModified(); |
413 | /** set the state of calendar. Modified means "dirty", i.e. needing a save. */ | 413 | /** set the state of calendar. Modified means "dirty", i.e. needing a save. */ |
414 | void setModified(bool modified=true); | 414 | void setModified(bool modified=true); |
415 | 415 | ||
416 | /** query if the calendar is read-only. */ | 416 | /** query if the calendar is read-only. */ |
417 | bool isReadOnly(); | 417 | bool isReadOnly(); |
418 | /** set state of calendar to read-only */ | 418 | /** set state of calendar to read-only */ |
419 | void setReadOnly(bool readOnly=true); | 419 | void setReadOnly(bool readOnly=true); |
420 | 420 | ||
421 | void eventUpdated(Incidence *); | 421 | void eventUpdated(Incidence *); |
422 | 422 | ||
423 | /* iTIP scheduling actions */ | 423 | /* iTIP scheduling actions */ |
424 | void schedule_publish(Incidence *incidence = 0); | 424 | void schedule_publish(Incidence *incidence = 0); |
425 | void schedule_request(Incidence *incidence = 0); | 425 | void schedule_request(Incidence *incidence = 0); |
426 | void schedule_refresh(Incidence *incidence = 0); | 426 | void schedule_refresh(Incidence *incidence = 0); |
427 | void schedule_cancel(Incidence *incidence = 0); | 427 | void schedule_cancel(Incidence *incidence = 0); |
428 | void schedule_add(Incidence *incidence = 0); | 428 | void schedule_add(Incidence *incidence = 0); |
429 | void schedule_reply(Incidence *incidence = 0); | 429 | void schedule_reply(Incidence *incidence = 0); |
430 | void schedule_counter(Incidence *incidence = 0); | 430 | void schedule_counter(Incidence *incidence = 0); |
431 | void schedule_declinecounter(Incidence *incidence = 0); | 431 | void schedule_declinecounter(Incidence *incidence = 0); |
432 | void schedule_publish_freebusy(int daysToPublish = 30); | 432 | void schedule_publish_freebusy(int daysToPublish = 30); |
433 | 433 | ||
434 | void openAddressbook(); | 434 | void openAddressbook(); |
435 | 435 | ||
436 | void editFilters(); | 436 | void editFilters(); |
437 | void toggleFilerEnabled(); | 437 | void toggleFilerEnabled(); |
438 | QPtrList<CalFilter> filters(); | 438 | QPtrList<CalFilter> filters(); |
439 | void toggleFilter(); | 439 | void toggleFilter(); |
440 | void showFilter(bool visible); | 440 | void showFilter(bool visible); |
441 | void updateFilter(); | 441 | void updateFilter(); |
442 | void filterEdited(); | 442 | void filterEdited(); |
443 | void selectFilter( int ); | 443 | void selectFilter( int ); |
444 | KOFilterView *filterView(); | 444 | KOFilterView *filterView(); |
445 | 445 | ||
446 | void showIntro(); | 446 | void showIntro(); |
447 | 447 | ||
448 | /** Move the curdatepient view date to today */ | 448 | /** Move the curdatepient view date to today */ |
449 | void goToday(); | 449 | void goToday(); |
450 | 450 | ||
451 | /** Move to the next date(s) in the current view */ | 451 | /** Move to the next date(s) in the current view */ |
452 | void goNext(); | 452 | void goNext(); |
453 | 453 | ||
454 | /** Move to the previous date(s) in the current view */ | 454 | /** Move to the previous date(s) in the current view */ |
455 | void goPrevious(); | 455 | void goPrevious(); |
456 | /** Move to the next date(s) in the current view */ | 456 | /** Move to the next date(s) in the current view */ |
457 | void goNextMonth(); | 457 | void goNextMonth(); |
458 | 458 | ||
459 | /** Move to the previous date(s) in the current view */ | 459 | /** Move to the previous date(s) in the current view */ |
460 | void goPreviousMonth(); | 460 | void goPreviousMonth(); |
461 | 461 | ||
462 | void toggleExpand(); | 462 | void toggleExpand(); |
463 | void toggleDateNavigatorWidget(); | 463 | void toggleDateNavigatorWidget(); |
464 | void toggleAllDaySize(); | 464 | void toggleAllDaySize(); |
465 | 465 | ||
466 | /** Look for new messages in the inbox */ | 466 | /** Look for new messages in the inbox */ |
467 | void lookForIncomingMessages(); | 467 | void lookForIncomingMessages(); |
468 | /** Look for new messages in the outbox */ | 468 | /** Look for new messages in the outbox */ |
469 | void lookForOutgoingMessages(); | 469 | void lookForOutgoingMessages(); |
470 | 470 | ||
471 | void processMainViewSelection( Incidence * ); | 471 | void processMainViewSelection( Incidence * ); |
472 | void processTodoListSelection( Incidence * ); | 472 | void processTodoListSelection( Incidence * ); |
473 | 473 | ||
474 | void processIncidenceSelection( Incidence * ); | 474 | void processIncidenceSelection( Incidence * ); |
475 | 475 | ||
476 | void purgeCompleted(); | 476 | void purgeCompleted(); |
477 | bool removeCompletedSubTodos( Todo* ); | 477 | bool removeCompletedSubTodos( Todo* ); |
478 | void slotCalendarChanged(); | 478 | void slotCalendarChanged(); |
479 | bool importBday(); | 479 | bool importBday(); |
480 | bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday ); | 480 | bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday ); |
481 | bool importQtopia( const QString &categoriesFile, | 481 | bool importQtopia( const QString &categoriesFile, |
482 | const QString &datebookFile, | 482 | const QString &datebookFile, |
483 | const QString &tasklistFile ); | 483 | const QString &tasklistFile ); |
484 | void syncExternal( int mode ); | 484 | void syncExternal( int mode ); |
485 | void slotSelectPickerDate( QDate ) ; | 485 | void slotSelectPickerDate( QDate ) ; |
486 | void showDatePicker() ; | 486 | void showDatePicker() ; |
487 | void showDatePickerPopup() ; | 487 | void showDatePickerPopup() ; |
488 | void moveIncidence(Incidence *) ; | 488 | void moveIncidence(Incidence *) ; |
489 | void beamIncidence(Incidence *) ; | 489 | void beamIncidence(Incidence *) ; |
490 | void beamCalendar() ; | 490 | void beamCalendar() ; |
491 | void beamFilteredCalendar() ; | 491 | void beamFilteredCalendar() ; |
492 | void beamIncidenceList(QPtrList<Incidence>) ; | 492 | void beamIncidenceList(QPtrList<Incidence>) ; |
493 | void manageCategories(); | 493 | void manageCategories(); |
494 | void editCategories(); | 494 | void editCategories(); |
495 | int addCategories(); | 495 | int addCategories(); |
496 | void removeCategories(); | 496 | void removeCategories(); |
497 | void setSyncDevice( QString ); | 497 | void setSyncDevice( QString ); |
498 | void setSyncName( QString ); | 498 | void setSyncName( QString ); |
499 | void showDay( QDate ); | 499 | void showDay( QDate ); |
500 | void undo_delete(); | 500 | void undo_delete(); |
501 | protected slots: | 501 | protected slots: |
502 | void resetFocus(); | 502 | void resetFocus(); |
503 | void scrollBarValue(int); | 503 | void scrollBarValue(int); |
504 | void slotViewerClosed(); | 504 | void slotViewerClosed(); |
505 | void timerAlarm(); | 505 | void timerAlarm(); |
506 | void suspendAlarm(); | 506 | void suspendAlarm(); |
507 | void beamDone( Ir *ir ); | 507 | void beamDone( Ir *ir ); |
508 | /** Select a view or adapt the current view to display the specified dates. */ | 508 | /** Select a view or adapt the current view to display the specified dates. */ |
509 | void showDates( const KCal::DateList & ); | 509 | void showDates( const KCal::DateList & ); |
510 | void selectWeekNum ( int ); | 510 | void selectWeekNum ( int ); |
511 | void checkConflictForEvent(); | ||
511 | 512 | ||
512 | public: | 513 | public: |
513 | // show a standard warning | 514 | // show a standard warning |
514 | // returns KMsgBox::yesNoCancel() | 515 | // returns KMsgBox::yesNoCancel() |
515 | int msgCalModified(); | 516 | int msgCalModified(); |
516 | virtual bool sync(KSyncManager* manager, QString filename, int mode); | 517 | virtual bool sync(KSyncManager* manager, QString filename, int mode); |
517 | 518 | ||
518 | virtual bool syncExternal(KSyncManager* manager, QString resource); | 519 | virtual bool syncExternal(KSyncManager* manager, QString resource); |
519 | virtual void removeSyncInfo( QString syncProfile); | 520 | virtual void removeSyncInfo( QString syncProfile); |
520 | void setSyncManager(KSyncManager* manager); | 521 | void setSyncManager(KSyncManager* manager); |
521 | void setLoadedFileVersion(QDateTime); | 522 | void setLoadedFileVersion(QDateTime); |
522 | bool checkFileVersion(QString fn); | 523 | bool checkFileVersion(QString fn); |
523 | bool checkAllFileVersions(); | 524 | bool checkAllFileVersions(); |
524 | bool checkFileChanged(QString fn); | 525 | bool checkFileChanged(QString fn); |
525 | Event* getLastSyncEvent(); | 526 | Event* getLastSyncEvent(); |
526 | /** Adapt navigation units correpsonding to step size of navigation of the | 527 | /** Adapt navigation units correpsonding to step size of navigation of the |
527 | * current view. | 528 | * current view. |
528 | */ | 529 | */ |
529 | void adaptNavigationUnits(); | 530 | void adaptNavigationUnits(); |
530 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); | 531 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); |
531 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); | 532 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); |
532 | //Attendee* getYourAttendee(Event *event); | 533 | //Attendee* getYourAttendee(Event *event); |
533 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} | 534 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} |
534 | void setScrollBarStep(int val ); | 535 | void setScrollBarStep(int val ); |
535 | 536 | ||
536 | protected: | 537 | protected: |
538 | Event *mConflictingEvent; | ||
537 | void schedule(Scheduler::Method, Incidence *incidence = 0); | 539 | void schedule(Scheduler::Method, Incidence *incidence = 0); |
538 | 540 | ||
539 | // returns KMsgBox::OKCandel() | 541 | // returns KMsgBox::OKCandel() |
540 | int msgItemDelete(const QString name); | 542 | int msgItemDelete(const QString name); |
541 | void showEventEditor(); | 543 | void showEventEditor(); |
542 | void showTodoEditor(); | 544 | void showTodoEditor(); |
543 | Todo *selectedTodo(); | 545 | Todo *selectedTodo(); |
544 | private: | 546 | private: |
545 | #ifdef DESKTOP_VERSION | 547 | #ifdef DESKTOP_VERSION |
546 | QScrollBar * mDateScrollBar; | 548 | QScrollBar * mDateScrollBar; |
547 | #endif | 549 | #endif |
548 | QDateTime mNextAlarmDateTime; | 550 | QDateTime mNextAlarmDateTime; |
549 | bool mViewerCallerIsSearchDialog; | 551 | bool mViewerCallerIsSearchDialog; |
550 | bool mBlockShowDates; | 552 | bool mBlockShowDates; |
551 | KSyncManager* mSyncManager; | 553 | KSyncManager* mSyncManager; |
552 | AlarmDialog * mAlarmDialog; | 554 | AlarmDialog * mAlarmDialog; |
553 | QString mAlarmNotification; | 555 | QString mAlarmNotification; |
554 | QString mSuspendAlarmNotification; | 556 | QString mSuspendAlarmNotification; |
555 | QTimer* mSuspendTimer; | 557 | QTimer* mSuspendTimer; |
556 | QTimer* mAlarmTimer; | 558 | QTimer* mAlarmTimer; |
557 | QTimer* mRecheckAlarmTimer; | 559 | QTimer* mRecheckAlarmTimer; |
558 | void computeAlarm( QString ); | 560 | void computeAlarm( QString ); |
559 | void startAlarm( QString, QString ); | 561 | void startAlarm( QString, QString ); |
560 | void setSyncEventsReadOnly(); | 562 | void setSyncEventsReadOnly(); |
561 | 563 | ||
562 | QDateTime loadedFileVersion; | 564 | QDateTime loadedFileVersion; |
563 | void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ); | 565 | void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ); |
564 | void checkExternalId( Incidence * inc ); | 566 | void checkExternalId( Incidence * inc ); |
565 | int mGlobalSyncMode; | 567 | int mGlobalSyncMode; |
566 | QString mCurrentSyncDevice; | 568 | QString mCurrentSyncDevice; |
567 | QString mCurrentSyncName; | 569 | QString mCurrentSyncName; |
568 | void init(); | 570 | void init(); |
569 | int mDatePickerMode; | 571 | int mDatePickerMode; |
570 | bool mFlagEditDescription; | 572 | bool mFlagEditDescription; |
571 | QDateTime mLastCalendarSync; | 573 | QDateTime mLastCalendarSync; |
572 | void createPrinter(); | 574 | void createPrinter(); |
573 | 575 | ||
574 | void calendarModified( bool, Calendar * ); | 576 | void calendarModified( bool, Calendar * ); |
575 | 577 | ||
576 | CalPrinter *mCalPrinter; | 578 | CalPrinter *mCalPrinter; |
577 | 579 | ||
578 | QSplitter *mPanner; | 580 | QSplitter *mPanner; |
579 | QSplitter *mLeftSplitter; | 581 | QSplitter *mLeftSplitter; |
580 | KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame; | 582 | KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame; |
581 | QWidgetStack *mRightFrame; | 583 | QWidgetStack *mRightFrame; |
582 | 584 | ||
583 | KDatePicker* mDatePicker; | 585 | KDatePicker* mDatePicker; |
584 | QVBox* mDateFrame; | 586 | QVBox* mDateFrame; |
585 | 587 | ||
586 | DateNavigatorContainer *mDateNavigator; // widget showing small month view. | 588 | DateNavigatorContainer *mDateNavigator; // widget showing small month view. |
587 | 589 | ||
588 | KOFilterView *mFilterView; | 590 | KOFilterView *mFilterView; |
589 | KOCalEditView *mCalEditView; | 591 | KOCalEditView *mCalEditView; |
590 | 592 | ||
591 | ResourceView *mResourceView; | 593 | ResourceView *mResourceView; |
592 | 594 | ||
593 | // calendar object for this viewing instance | 595 | // calendar object for this viewing instance |
594 | Calendar *mCalendar; | 596 | Calendar *mCalendar; |
595 | 597 | ||
596 | CalendarResourceManager *mResourceManager; | 598 | CalendarResourceManager *mResourceManager; |
597 | 599 | ||
598 | FileStorage *mStorage; | 600 | FileStorage *mStorage; |
599 | 601 | ||
600 | DateNavigator *mNavigator; | 602 | DateNavigator *mNavigator; |
601 | 603 | ||
602 | KOViewManager *mViewManager; | 604 | KOViewManager *mViewManager; |
603 | KODialogManager *mDialogManager; | 605 | KODialogManager *mDialogManager; |
604 | 606 | ||
605 | // Calendar filters | 607 | // Calendar filters |
606 | QPtrList<CalFilter> mFilters; | 608 | QPtrList<CalFilter> mFilters; |
607 | 609 | ||
608 | // various housekeeping variables. | 610 | // various housekeeping variables. |
609 | bool mModified; // flag indicating if calendar is modified | 611 | bool mModified; // flag indicating if calendar is modified |
610 | bool mReadOnly; // flag indicating if calendar is read-only | 612 | bool mReadOnly; // flag indicating if calendar is read-only |
611 | QDate mSaveSingleDate; | 613 | QDate mSaveSingleDate; |
612 | 614 | ||
613 | Incidence *mSelectedIncidence; | 615 | Incidence *mSelectedIncidence; |
614 | Incidence *mMoveIncidence; | 616 | Incidence *mMoveIncidence; |
615 | QDate mMoveIncidenceOldDate; | 617 | QDate mMoveIncidenceOldDate; |
616 | KOTodoView *mTodoList; | 618 | KOTodoView *mTodoList; |
617 | KOEventEditor * mEventEditor; | 619 | KOEventEditor * mEventEditor; |
618 | KOTodoEditor * mTodoEditor; | 620 | KOTodoEditor * mTodoEditor; |
619 | KOEventViewerDialog * mEventViewerDialog; | 621 | KOEventViewerDialog * mEventViewerDialog; |
620 | void keyPressEvent ( QKeyEvent *e) ; | 622 | void keyPressEvent ( QKeyEvent *e) ; |
621 | //QMap<Incidence*,KOIncidenceEditor*> mDialogList; | 623 | //QMap<Incidence*,KOIncidenceEditor*> mDialogList; |
622 | }; | 624 | }; |
623 | 625 | ||
624 | 626 | ||
625 | class CalendarViewVisitor : public Incidence::Visitor | 627 | class CalendarViewVisitor : public Incidence::Visitor |
626 | { | 628 | { |
627 | public: | 629 | public: |
628 | CalendarViewVisitor() : mView( 0 ) {} | 630 | CalendarViewVisitor() : mView( 0 ) {} |
629 | 631 | ||
630 | bool act( Incidence *incidence, CalendarView *view ) | 632 | bool act( Incidence *incidence, CalendarView *view ) |
631 | { | 633 | { |
632 | mView = view; | 634 | mView = view; |
633 | return incidence->accept( *this ); | 635 | return incidence->accept( *this ); |
634 | } | 636 | } |
635 | 637 | ||
636 | protected: | 638 | protected: |
637 | CalendarView *mView; | 639 | CalendarView *mView; |
638 | }; | 640 | }; |
639 | 641 | ||
640 | class ShowIncidenceVisitor : public CalendarViewVisitor | 642 | class ShowIncidenceVisitor : public CalendarViewVisitor |
641 | { | 643 | { |
642 | protected: | 644 | protected: |
643 | bool visit( Event *event ) { mView->showEvent( event ); return true; } | 645 | bool visit( Event *event ) { mView->showEvent( event ); return true; } |
644 | bool visit( Todo *todo ) { mView->showTodo( todo ); return true; } | 646 | bool visit( Todo *todo ) { mView->showTodo( todo ); return true; } |
645 | bool visit( Journal * j ) { mView->showJournal( j );return true; } | 647 | bool visit( Journal * j ) { mView->showJournal( j );return true; } |
646 | }; | 648 | }; |
647 | 649 | ||
648 | class EditIncidenceVisitor : public CalendarViewVisitor | 650 | class EditIncidenceVisitor : public CalendarViewVisitor |
649 | { | 651 | { |
650 | protected: | 652 | protected: |
651 | bool visit( Event *event ) { mView->editEvent( event ); return true; } | 653 | bool visit( Event *event ) { mView->editEvent( event ); return true; } |
652 | bool visit( Todo *todo ) { mView->editTodo( todo ); return true; } | 654 | bool visit( Todo *todo ) { mView->editTodo( todo ); return true; } |
653 | bool visit( Journal *j ) { mView->editJournal( j); return true; } | 655 | bool visit( Journal *j ) { mView->editJournal( j); return true; } |
654 | }; | 656 | }; |
655 | 657 | ||
656 | class DeleteIncidenceVisitor : public CalendarViewVisitor | 658 | class DeleteIncidenceVisitor : public CalendarViewVisitor |
657 | { | 659 | { |
658 | protected: | 660 | protected: |
659 | bool visit( Event *event ) { mView->deleteEvent( event ); return true; } | 661 | bool visit( Event *event ) { mView->deleteEvent( event ); return true; } |
660 | bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; } | 662 | bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; } |
661 | bool visit( Journal * j) {mView->deleteJournal( j ); return true; } | 663 | bool visit( Journal * j) {mView->deleteJournal( j ); return true; } |
662 | }; | 664 | }; |
663 | 665 | ||
664 | #endif | 666 | #endif |
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp index 7783dd4..d25f671 100644 --- a/korganizer/kolistview.cpp +++ b/korganizer/kolistview.cpp | |||
@@ -8,1049 +8,1044 @@ | |||
8 | the Free Software Foundation; either version 2 of the License, or | 8 | the Free Software Foundation; either version 2 of the License, or |
9 | (at your option) any later version. | 9 | (at your option) any later version. |
10 | 10 | ||
11 | This program is distributed in the hope that it will be useful, | 11 | This program is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | GNU General Public License for more details. | 14 | GNU General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | 17 | along with this program; if not, write to the Free Software |
18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | As a special exception, permission is given to link this program | 20 | As a special exception, permission is given to link this program |
21 | with any edition of Qt, and distribute the resulting executable, | 21 | with any edition of Qt, and distribute the resulting executable, |
22 | without including the source code for Qt in the source distribution. | 22 | without including the source code for Qt in the source distribution. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include <qlistview.h> | 25 | #include <qlistview.h> |
26 | #include <qlayout.h> | 26 | #include <qlayout.h> |
27 | #include <qlabel.h> | 27 | #include <qlabel.h> |
28 | #include <qpopupmenu.h> | 28 | #include <qpopupmenu.h> |
29 | #include <qprogressbar.h> | 29 | #include <qprogressbar.h> |
30 | #include <qfileinfo.h> | 30 | #include <qfileinfo.h> |
31 | #include <qmessagebox.h> | 31 | #include <qmessagebox.h> |
32 | #include <qdialog.h> | 32 | #include <qdialog.h> |
33 | #include <qtextstream.h> | 33 | #include <qtextstream.h> |
34 | #include <qdir.h> | 34 | #include <qdir.h> |
35 | #include <qwhatsthis.h> | 35 | #include <qwhatsthis.h> |
36 | #include <qregexp.h> | 36 | #include <qregexp.h> |
37 | #include <qpainter.h> | 37 | #include <qpainter.h> |
38 | #include <qpaintdevicemetrics.h> | 38 | #include <qpaintdevicemetrics.h> |
39 | 39 | ||
40 | #include <klocale.h> | 40 | #include <klocale.h> |
41 | #include <kdebug.h> | 41 | #include <kdebug.h> |
42 | #include <kiconloader.h> | 42 | #include <kiconloader.h> |
43 | #include <kglobal.h> | 43 | #include <kglobal.h> |
44 | 44 | ||
45 | #include <libkdepim/kpimglobalprefs.h> | 45 | #include <libkdepim/kpimglobalprefs.h> |
46 | #include <libkcal/calendar.h> | 46 | #include <libkcal/calendar.h> |
47 | #include <libkcal/calendarlocal.h> | 47 | #include <libkcal/calendarlocal.h> |
48 | #include <libkcal/icalformat.h> | 48 | #include <libkcal/icalformat.h> |
49 | #include <libkcal/vcalformat.h> | 49 | #include <libkcal/vcalformat.h> |
50 | #include <libkcal/recurrence.h> | 50 | #include <libkcal/recurrence.h> |
51 | #include <libkcal/filestorage.h> | 51 | #include <libkcal/filestorage.h> |
52 | #include <libkdepim/categoryselectdialog.h> | 52 | #include <libkdepim/categoryselectdialog.h> |
53 | #include <libkcal/kincidenceformatter.h> | 53 | #include <libkcal/kincidenceformatter.h> |
54 | #ifndef DESKTOP_VERSION | 54 | #ifndef DESKTOP_VERSION |
55 | #include <qpe/qpeapplication.h> | 55 | #include <qpe/qpeapplication.h> |
56 | #else | 56 | #else |
57 | #include <qapplication.h> | 57 | #include <qapplication.h> |
58 | #endif | 58 | #endif |
59 | 59 | ||
60 | #ifndef KORG_NOPRINTER | 60 | #ifndef KORG_NOPRINTER |
61 | #include "calprinter.h" | 61 | #include "calprinter.h" |
62 | #endif | 62 | #endif |
63 | #include "koglobals.h" | 63 | #include "koglobals.h" |
64 | #include "koprefs.h" | 64 | #include "koprefs.h" |
65 | #include "kfiledialog.h" | 65 | #include "kfiledialog.h" |
66 | 66 | ||
67 | #include "kolistview.h" | 67 | #include "kolistview.h" |
68 | #include "koeventviewer.h" | 68 | #include "koeventviewer.h" |
69 | 69 | ||
70 | extern QPixmap* sgListViewCompletedPix[6]; | 70 | extern QPixmap* sgListViewCompletedPix[6]; |
71 | extern QPixmap* sgListViewJournalPix; | 71 | extern QPixmap* sgListViewJournalPix; |
72 | 72 | ||
73 | class KOListViewWhatsThis :public QWhatsThis | 73 | class KOListViewWhatsThis :public QWhatsThis |
74 | { | 74 | { |
75 | public: | 75 | public: |
76 | KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; | 76 | KOListViewWhatsThis( QWidget *wid, KOListView* view ) : QWhatsThis( wid ), _wid(wid),_view (view) { }; |
77 | 77 | ||
78 | protected: | 78 | protected: |
79 | virtual QString text( const QPoint& p) | 79 | virtual QString text( const QPoint& p) |
80 | { | 80 | { |
81 | return _view->getWhatsThisText(p) ; | 81 | return _view->getWhatsThisText(p) ; |
82 | } | 82 | } |
83 | private: | 83 | private: |
84 | QWidget* _wid; | 84 | QWidget* _wid; |
85 | KOListView * _view; | 85 | KOListView * _view; |
86 | }; | 86 | }; |
87 | 87 | ||
88 | 88 | ||
89 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) | 89 | ListItemVisitor::ListItemVisitor(KOListViewItem *item, QDate date ) |
90 | { | 90 | { |
91 | mItem = item; | 91 | mItem = item; |
92 | mDate = date; | 92 | mDate = date; |
93 | } | 93 | } |
94 | 94 | ||
95 | ListItemVisitor::~ListItemVisitor() | 95 | ListItemVisitor::~ListItemVisitor() |
96 | { | 96 | { |
97 | } | 97 | } |
98 | 98 | ||
99 | bool ListItemVisitor::visit(Event *e) | 99 | bool ListItemVisitor::visit(Event *e) |
100 | { | 100 | { |
101 | bool ok = false; | 101 | bool ok = false; |
102 | QString start, end; | 102 | QString start, end; |
103 | QDate ds, de; | 103 | QDate ds, de; |
104 | if ( e->doesRecur() ) { | 104 | if ( e->doesRecur() ) { |
105 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); | 105 | ds = e->getNextOccurence( QDateTime( mDate, QTime(0,0,0)), &ok ).date(); |
106 | if ( ok ) { | 106 | if ( ok ) { |
107 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); | 107 | int days = e->dtStart().date().daysTo(e->dtEnd().date() ); |
108 | start = KGlobal::locale()->formatDate(ds,true); | 108 | start = KGlobal::locale()->formatDate(ds,true); |
109 | de = ds.addDays( days); | 109 | de = ds.addDays( days); |
110 | end = KGlobal::locale()->formatDate(de,true); | 110 | end = KGlobal::locale()->formatDate(de,true); |
111 | } | 111 | } |
112 | 112 | ||
113 | } | 113 | } |
114 | if ( ! ok ) { | 114 | if ( ! ok ) { |
115 | start =e->dtStartDateStr(); | 115 | start =e->dtStartDateStr(); |
116 | end = e->dtEndDateStr(); | 116 | end = e->dtEndDateStr(); |
117 | ds = e->dtStart().date(); | 117 | ds = e->dtStart().date(); |
118 | de = e->dtEnd().date(); | 118 | de = e->dtEnd().date(); |
119 | } | 119 | } |
120 | mItem->setText(0,e->summary()); | 120 | mItem->setText(0,e->summary()); |
121 | mItem->setText(1,start); | 121 | mItem->setText(1,start); |
122 | if ( e->doesFloat() ) | 122 | if ( e->doesFloat() ) |
123 | mItem->setText(2,"---"); | 123 | mItem->setText(2,"---"); |
124 | else | 124 | else |
125 | mItem->setText(2,e->dtStartTimeStr()); | 125 | mItem->setText(2,e->dtStartTimeStr()); |
126 | mItem->setText(3,end); | 126 | mItem->setText(3,end); |
127 | if ( e->doesFloat() ) | 127 | if ( e->doesFloat() ) |
128 | mItem->setText(4,"---"); | 128 | mItem->setText(4,"---"); |
129 | else | 129 | else |
130 | mItem->setText(4,e->dtEndTimeStr()); | 130 | mItem->setText(4,e->dtEndTimeStr()); |
131 | if ( e->isAlarmEnabled() ) { | 131 | if ( e->isAlarmEnabled() ) { |
132 | mItem->setText(5,e->alarms().first()->offsetText() ); | 132 | mItem->setText(5,e->alarms().first()->offsetText() ); |
133 | } else { | 133 | } else { |
134 | mItem->setText(5, i18n("No")); | 134 | mItem->setText(5, i18n("No")); |
135 | } | 135 | } |
136 | mItem->setText(6, e->recurrence()->recurrenceText()); | 136 | mItem->setText(6, e->recurrence()->recurrenceText()); |
137 | if( ! e->doesRecur() ) | 137 | if( ! e->doesRecur() ) |
138 | mItem->setSortKey( 6, "-" ); | 138 | mItem->setSortKey( 6, "-" ); |
139 | mItem->setText(7,"---"); | 139 | mItem->setText(7,"---"); |
140 | mItem->setText(8,"---"); | 140 | mItem->setText(8,"---"); |
141 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); | 141 | mItem->setText(9, e->cancelled() ? i18n("Yes") : i18n("No")); |
142 | mItem->setText(10,e->categoriesStr()); | 142 | mItem->setText(10,e->categoriesStr()); |
143 | mItem->setText(11, KOPrefs::instance()->calName( e->calID() )); | 143 | mItem->setText(11, KOPrefs::instance()->calName( e->calID() )); |
144 | mItem->setText(12, KGlobal::locale()->formatDateTime( e->lastModified(), true, true )); | 144 | mItem->setText(12, KGlobal::locale()->formatDateTime( e->lastModified(), true, true )); |
145 | 145 | ||
146 | QString key; | 146 | QString key; |
147 | QDate d = e->lastModified().date(); | 147 | QDate d = e->lastModified().date(); |
148 | QTime t = e->lastModified().time(); | 148 | QTime t = e->lastModified().time(); |
149 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() ); | 149 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),t.hour(),t.minute(),t.second() ); |
150 | mItem->setSortKey(12,key); | 150 | mItem->setSortKey(12,key); |
151 | t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); | 151 | t = e->doesFloat() ? QTime(0,0) : e->dtStart().time(); |
152 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); | 152 | key.sprintf("%04d%02d%02d%02d%02d",ds.year(),ds.month(),ds.day(),t.hour(),t.minute()); |
153 | mItem->setSortKey(1,key); | 153 | mItem->setSortKey(1,key); |
154 | 154 | ||
155 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); | 155 | t = e->doesFloat() ? QTime(0,0) : e->dtEnd().time(); |
156 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); | 156 | key.sprintf("%04d%02d%02d%02d%02d",de.year(),de.month(),de.day(),t.hour(),t.minute()); |
157 | mItem->setSortKey(3,key); | 157 | mItem->setSortKey(3,key); |
158 | return true; | 158 | return true; |
159 | } | 159 | } |
160 | 160 | ||
161 | bool ListItemVisitor::visit(Todo *t) | 161 | bool ListItemVisitor::visit(Todo *t) |
162 | { | 162 | { |
163 | mItem->setText(0,t->summary()); | 163 | mItem->setText(0,t->summary()); |
164 | if ( t->isCompleted() ) { | 164 | if ( t->isCompleted() ) { |
165 | mItem->setSortKey(0,"99"+ t->summary().left(10)); | 165 | mItem->setSortKey(0,"99"+ t->summary().left(10)); |
166 | } else | 166 | } else |
167 | mItem->setSortKey(0,QString::number( t->percentComplete()+1 )+ t->summary().left(10)); | 167 | mItem->setSortKey(0,QString::number( t->percentComplete()+1 )+ t->summary().left(10)); |
168 | mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20])); | 168 | mItem->setPixmap( 0, *(sgListViewCompletedPix[t->percentComplete()/20])); |
169 | if (t->hasStartDate()) { | 169 | if (t->hasStartDate()) { |
170 | mItem->setText(1,t->dtStartDateStr()); | 170 | mItem->setText(1,t->dtStartDateStr()); |
171 | if (t->doesFloat()) { | 171 | if (t->doesFloat()) { |
172 | mItem->setText(2,"---"); | 172 | mItem->setText(2,"---"); |
173 | } else { | 173 | } else { |
174 | mItem->setText(2,t->dtStartTimeStr()); | 174 | mItem->setText(2,t->dtStartTimeStr()); |
175 | } | 175 | } |
176 | } else { | 176 | } else { |
177 | mItem->setText(1,"---"); | 177 | mItem->setText(1,"---"); |
178 | mItem->setText(2,"---"); | 178 | mItem->setText(2,"---"); |
179 | } | 179 | } |
180 | mItem->setText(3,"---"); | 180 | mItem->setText(3,"---"); |
181 | mItem->setText(4,"---"); | 181 | mItem->setText(4,"---"); |
182 | if ( t->isAlarmEnabled() ) { | 182 | if ( t->isAlarmEnabled() ) { |
183 | mItem->setText(5,t->alarms().first()->offsetText() ); | 183 | mItem->setText(5,t->alarms().first()->offsetText() ); |
184 | } else { | 184 | } else { |
185 | mItem->setText(5, i18n("No")); | 185 | mItem->setText(5, i18n("No")); |
186 | } | 186 | } |
187 | mItem->setText(6, t->recurrence()->recurrenceText()); | 187 | mItem->setText(6, t->recurrence()->recurrenceText()); |
188 | if( ! t->doesRecur() ) | 188 | if( ! t->doesRecur() ) |
189 | mItem->setSortKey( 6, "-" ); | 189 | mItem->setSortKey( 6, "-" ); |
190 | if (t->hasDueDate()) { | 190 | if (t->hasDueDate()) { |
191 | mItem->setText(7,t->dtDueDateStr()); | 191 | mItem->setText(7,t->dtDueDateStr()); |
192 | if (t->doesFloat()) { | 192 | if (t->doesFloat()) { |
193 | mItem->setText(8,"---"); | 193 | mItem->setText(8,"---"); |
194 | } else { | 194 | } else { |
195 | mItem->setText(8,t->dtDueTimeStr()); | 195 | mItem->setText(8,t->dtDueTimeStr()); |
196 | } | 196 | } |
197 | } else { | 197 | } else { |
198 | mItem->setText(7,"---"); | 198 | mItem->setText(7,"---"); |
199 | mItem->setText(8,"---"); | 199 | mItem->setText(8,"---"); |
200 | } | 200 | } |
201 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); | 201 | mItem->setText(9, t->cancelled() ? i18n("Yes") : i18n("No")); |
202 | mItem->setText(10,t->categoriesStr()); | 202 | mItem->setText(10,t->categoriesStr()); |
203 | mItem->setText(11, KOPrefs::instance()->calName( t->calID() )); | 203 | mItem->setText(11, KOPrefs::instance()->calName( t->calID() )); |
204 | mItem->setText(12, KGlobal::locale()->formatDateTime( t->lastModified(), true, true )); | 204 | mItem->setText(12, KGlobal::locale()->formatDateTime( t->lastModified(), true, true )); |
205 | QString key; | 205 | QString key; |
206 | QDate d = t->lastModified().date(); | 206 | QDate d = t->lastModified().date(); |
207 | QTime tm = t->lastModified().time(); | 207 | QTime tm = t->lastModified().time(); |
208 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); | 208 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); |
209 | mItem->setSortKey(12,key); | 209 | mItem->setSortKey(12,key); |
210 | if (t->hasDueDate()) { | 210 | if (t->hasDueDate()) { |
211 | d = t->dtDue().date(); | 211 | d = t->dtDue().date(); |
212 | tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); | 212 | tm = t->doesFloat() ? QTime(0,0) : t->dtDue().time(); |
213 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 213 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
214 | mItem->setSortKey(7,key); | 214 | mItem->setSortKey(7,key); |
215 | } | 215 | } |
216 | if ( t->hasStartDate() ) { | 216 | if ( t->hasStartDate() ) { |
217 | d = t->dtStart().date(); | 217 | d = t->dtStart().date(); |
218 | tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); | 218 | tm = t->doesFloat() ? QTime(0,0) : t->dtStart().time(); |
219 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); | 219 | key.sprintf("%04d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute()); |
220 | mItem->setSortKey(1,key); | 220 | mItem->setSortKey(1,key); |
221 | } | 221 | } |
222 | return true; | 222 | return true; |
223 | } | 223 | } |
224 | 224 | ||
225 | bool ListItemVisitor::visit(Journal * j) | 225 | bool ListItemVisitor::visit(Journal * j) |
226 | { | 226 | { |
227 | 227 | ||
228 | QString des; | 228 | QString des; |
229 | mItem->setPixmap( 0, *sgListViewJournalPix); | 229 | mItem->setPixmap( 0, *sgListViewJournalPix); |
230 | if ( !j->summary().isEmpty() ) { | 230 | if ( !j->summary().isEmpty() ) { |
231 | des = j->summary(); | 231 | des = j->summary(); |
232 | } else { | 232 | } else { |
233 | des = j->description().left(30); | 233 | des = j->description().left(30); |
234 | des = des.simplifyWhiteSpace (); | 234 | des = des.simplifyWhiteSpace (); |
235 | des.replace (QRegExp ("\\n"),"" ); | 235 | des.replace (QRegExp ("\\n"),"" ); |
236 | des.replace (QRegExp ("\\r"),"" ); | 236 | des.replace (QRegExp ("\\r"),"" ); |
237 | } | 237 | } |
238 | mItem->setText(0,des.left(25)); | 238 | mItem->setText(0,des.left(25)); |
239 | mItem->setSortKey(0,"0"+ des.left(25)); | 239 | mItem->setSortKey(0,"0"+ des.left(25)); |
240 | mItem->setText(1,j->dtStartDateStr()); | 240 | mItem->setText(1,j->dtStartDateStr()); |
241 | mItem->setText(2,"---"); | 241 | mItem->setText(2,"---"); |
242 | mItem->setText(3,"---"); | 242 | mItem->setText(3,"---"); |
243 | mItem->setText(4,"---"); | 243 | mItem->setText(4,"---"); |
244 | mItem->setText(5,"---"); | 244 | mItem->setText(5,"---"); |
245 | mItem->setText(6,"---"); | 245 | mItem->setText(6,"---"); |
246 | mItem->setText(7,j->dtStartDateStr()); | 246 | mItem->setText(7,j->dtStartDateStr()); |
247 | mItem->setText(8,"---"); | 247 | mItem->setText(8,"---"); |
248 | mItem->setText(9,"---"); | 248 | mItem->setText(9,"---"); |
249 | mItem->setText(10,j->categoriesStr()); | 249 | mItem->setText(10,j->categoriesStr()); |
250 | mItem->setText(11, KOPrefs::instance()->calName( j->calID() )); | 250 | mItem->setText(11, KOPrefs::instance()->calName( j->calID() )); |
251 | mItem->setText(12, KGlobal::locale()->formatDateTime( j->lastModified(), true, true )); | 251 | mItem->setText(12, KGlobal::locale()->formatDateTime( j->lastModified(), true, true )); |
252 | 252 | ||
253 | QString key; | 253 | QString key; |
254 | QDate d = j->lastModified().date(); | 254 | QDate d = j->lastModified().date(); |
255 | QTime tm = j->lastModified().time(); | 255 | QTime tm = j->lastModified().time(); |
256 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); | 256 | key.sprintf("%04d%02d%02d%02d%02d%02d",d.year(),d.month(),d.day(),tm.hour(),tm.minute(),tm.second() ); |
257 | mItem->setSortKey(12,key); | 257 | mItem->setSortKey(12,key); |
258 | d = j->dtStart().date(); | 258 | d = j->dtStart().date(); |
259 | key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); | 259 | key.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); |
260 | mItem->setSortKey(1,key); | 260 | mItem->setSortKey(1,key); |
261 | mItem->setSortKey(7,key); | 261 | mItem->setSortKey(7,key); |
262 | 262 | ||
263 | return true; | 263 | return true; |
264 | } | 264 | } |
265 | 265 | ||
266 | KOListView::KOListView(Calendar *calendar, QWidget *parent, | 266 | KOListView::KOListView(Calendar *calendar, QWidget *parent, |
267 | const char *name) | 267 | const char *name) |
268 | : KOEventView(calendar, parent, name) | 268 | : KOEventView(calendar, parent, name) |
269 | { | 269 | { |
270 | 270 | ||
271 | mActiveItem = 0; | 271 | mActiveItem = 0; |
272 | mForceShowCompletedTodos = false; | 272 | mForceShowCompletedTodos = false; |
273 | mListView = new KOListViewListView(this); | 273 | mListView = new KOListViewListView(this); |
274 | mListView->addColumn(i18n("Summary")); | 274 | mListView->addColumn(i18n("Summary")); |
275 | mListView->addColumn(i18n("Start Date")); | 275 | mListView->addColumn(i18n("Start Date")); |
276 | mListView->addColumn(i18n("Start Time")); | 276 | mListView->addColumn(i18n("Start Time")); |
277 | mListView->addColumn(i18n("End Date")); | 277 | mListView->addColumn(i18n("End Date")); |
278 | mListView->addColumn(i18n("End Time")); | 278 | mListView->addColumn(i18n("End Time")); |
279 | mListView->addColumn(i18n("Alarm")); // alarm set? | 279 | mListView->addColumn(i18n("Alarm")); // alarm set? |
280 | mListView->addColumn(i18n("Recurs")); // recurs? | 280 | mListView->addColumn(i18n("Recurs")); // recurs? |
281 | mListView->addColumn(i18n("Due Date")); | 281 | mListView->addColumn(i18n("Due Date")); |
282 | mListView->addColumn(i18n("Due Time")); | 282 | mListView->addColumn(i18n("Due Time")); |
283 | mListView->addColumn(i18n("Cancelled")); | 283 | mListView->addColumn(i18n("Cancelled")); |
284 | mListView->addColumn(i18n("Categories")); | 284 | mListView->addColumn(i18n("Categories")); |
285 | mListView->addColumn(i18n("Calendar")); | 285 | mListView->addColumn(i18n("Calendar")); |
286 | mListView->addColumn(i18n("Last Modified")); | 286 | mListView->addColumn(i18n("Last Modified")); |
287 | 287 | ||
288 | mListView->setColumnAlignment(0,AlignLeft); | 288 | mListView->setColumnAlignment(0,AlignLeft); |
289 | mListView->setColumnAlignment(1,AlignLeft); | 289 | mListView->setColumnAlignment(1,AlignLeft); |
290 | mListView->setColumnAlignment(2,AlignHCenter); | 290 | mListView->setColumnAlignment(2,AlignHCenter); |
291 | mListView->setColumnAlignment(3,AlignLeft); | 291 | mListView->setColumnAlignment(3,AlignLeft); |
292 | mListView->setColumnAlignment(4,AlignHCenter); | 292 | mListView->setColumnAlignment(4,AlignHCenter); |
293 | mListView->setColumnAlignment(5,AlignLeft); | 293 | mListView->setColumnAlignment(5,AlignLeft); |
294 | mListView->setColumnAlignment(6,AlignLeft); | 294 | mListView->setColumnAlignment(6,AlignLeft); |
295 | mListView->setColumnAlignment(7,AlignLeft); | 295 | mListView->setColumnAlignment(7,AlignLeft); |
296 | mListView->setColumnAlignment(8,AlignLeft); | 296 | mListView->setColumnAlignment(8,AlignLeft); |
297 | mListView->setColumnAlignment(9,AlignLeft); | 297 | mListView->setColumnAlignment(9,AlignLeft); |
298 | mListView->setColumnAlignment(10,AlignLeft); | 298 | mListView->setColumnAlignment(10,AlignLeft); |
299 | mListView->setColumnAlignment(11,AlignLeft); | 299 | mListView->setColumnAlignment(11,AlignLeft); |
300 | mListView->setColumnAlignment(12,AlignLeft); | 300 | mListView->setColumnAlignment(12,AlignLeft); |
301 | mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this); | 301 | mKOListViewWhatsThis = new KOListViewWhatsThis(mListView->viewport(),this); |
302 | 302 | ||
303 | int iii = 0; | 303 | int iii = 0; |
304 | for ( iii = 0; iii< 13 ; ++iii ) | 304 | for ( iii = 0; iii< 13 ; ++iii ) |
305 | mListView->setColumnWidthMode( iii, QListView::Manual ); | 305 | mListView->setColumnWidthMode( iii, QListView::Manual ); |
306 | 306 | ||
307 | QBoxLayout *layoutTop = new QVBoxLayout(this); | 307 | QBoxLayout *layoutTop = new QVBoxLayout(this); |
308 | layoutTop->addWidget(mListView); | 308 | layoutTop->addWidget(mListView); |
309 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); | 309 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); |
310 | mPopupMenu = eventPopup(); | 310 | mPopupMenu = eventPopup(); |
311 | QPopupMenu* selPopup = new QPopupMenu ( this ); | 311 | QPopupMenu* selPopup = new QPopupMenu ( this ); |
312 | mPopupMenu->insertSeparator(); | 312 | mPopupMenu->insertSeparator(); |
313 | 313 | ||
314 | selPopup->insertItem(i18n("All"),this, | 314 | selPopup->insertItem(i18n("All"),this, |
315 | SLOT(allSelection())); | 315 | SLOT(allSelection())); |
316 | selPopup->insertItem(i18n("None"),this, | 316 | selPopup->insertItem(i18n("None"),this, |
317 | SLOT(clearSelection())); | 317 | SLOT(clearSelection())); |
318 | selPopup->insertItem(i18n("Delete selected..."),this, | 318 | selPopup->insertItem(i18n("Delete selected..."),this, |
319 | SLOT(deleteAll())); | 319 | SLOT(deleteAll())); |
320 | mPopupMenu->insertItem(i18n("Selection"), selPopup ); | 320 | mPopupMenu->insertItem(i18n("Selection"), selPopup ); |
321 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 321 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
322 | i18n("Hide all selected"),this, | 322 | i18n("Hide all selected"),this, |
323 | SLOT(hideAll()),true); | 323 | SLOT(hideAll()),true); |
324 | 324 | ||
325 | selPopup->insertSeparator(); | 325 | selPopup->insertSeparator(); |
326 | QPopupMenu * exportPO = new QPopupMenu ( this ); | 326 | QPopupMenu * exportPO = new QPopupMenu ( this ); |
327 | selPopup->insertItem( i18n("Export"), exportPO ); | 327 | selPopup->insertItem( i18n("Export"), exportPO ); |
328 | #ifdef DESKTOP_VERSION | 328 | #ifdef DESKTOP_VERSION |
329 | mPopupMenu->insertSeparator(); | 329 | mPopupMenu->insertSeparator(); |
330 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 330 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
331 | i18n("Print complete list..."),this, | 331 | i18n("Print complete list..."),this, |
332 | SLOT(printList()),true); | 332 | SLOT(printList()),true); |
333 | #endif | 333 | #endif |
334 | mCalPopup = new QPopupMenu ( this ); | 334 | mCalPopup = new QPopupMenu ( this ); |
335 | selPopup->insertItem( i18n("Set Calendar"), mCalPopup ); | 335 | selPopup->insertItem( i18n("Set Calendar"), mCalPopup ); |
336 | 336 | ||
337 | selPopup->insertItem(i18n("Set categories")+"...",this, | 337 | selPopup->insertItem(i18n("Set categories")+"...",this, |
338 | SLOT(setCat()) ); | 338 | SLOT(setCat()) ); |
339 | selPopup->insertItem( i18n("Set alarm..."),this, | 339 | selPopup->insertItem( i18n("Set alarm..."),this, |
340 | SLOT(setAlarm())); | 340 | SLOT(setAlarm())); |
341 | #if 0 | 341 | #if 0 |
342 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 342 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
343 | i18n("Set categories")+"...",this, | 343 | i18n("Set categories")+"...",this, |
344 | SLOT(setCat()),true); | 344 | SLOT(setCat()),true); |
345 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 345 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
346 | i18n("Set alarm..."),this, | 346 | i18n("Set alarm..."),this, |
347 | SLOT(setAlarm()),true); | 347 | SLOT(setAlarm()),true); |
348 | #endif | 348 | #endif |
349 | QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this, | 349 | QObject::connect(mCalPopup,SIGNAL(aboutToShow()),this, |
350 | SLOT( populateCalPopup() )); | 350 | SLOT( populateCalPopup() )); |
351 | QObject::connect(mCalPopup,SIGNAL(activated( int )),this, | 351 | QObject::connect(mCalPopup,SIGNAL(activated( int )),this, |
352 | SLOT( setCalendar( int ) )); | 352 | SLOT( setCalendar( int ) )); |
353 | QObject::connect(mPopupMenu,SIGNAL(categoryChanged( Incidence * )),this, | 353 | QObject::connect(mPopupMenu,SIGNAL(categoryChanged( Incidence * )),this, |
354 | SLOT( catChanged( Incidence * ) )); | 354 | SLOT( catChanged( Incidence * ) )); |
355 | exportPO->insertItem( i18n("As iCal (ics) file..."),this, | 355 | exportPO->insertItem( i18n("As iCal (ics) file..."),this, |
356 | SLOT(saveToFile())); | 356 | SLOT(saveToFile())); |
357 | exportPO->insertItem( i18n("As vCal (vcs) file..."),this, | 357 | exportPO->insertItem( i18n("As vCal (vcs) file..."),this, |
358 | SLOT(saveToFileVCS())); | 358 | SLOT(saveToFileVCS())); |
359 | exportPO->insertItem( i18n("Journal/Details..."),this, | 359 | exportPO->insertItem( i18n("Journal/Details..."),this, |
360 | SLOT(saveDescriptionToFile())); | 360 | SLOT(saveDescriptionToFile())); |
361 | // mPopupMenu->insertSeparator(); | 361 | // mPopupMenu->insertSeparator(); |
362 | // mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 362 | // mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
363 | // i18n("Add Categ. to selected..."),this, | 363 | // i18n("Add Categ. to selected..."),this, |
364 | // SLOT(addCat()),true); | 364 | // SLOT(addCat()),true); |
365 | //mPopupMenu->insertSeparator(); | 365 | //mPopupMenu->insertSeparator(); |
366 | #ifndef DESKTOP_VERSION | 366 | #ifndef DESKTOP_VERSION |
367 | selPopup->insertSeparator(); | 367 | selPopup->insertSeparator(); |
368 | selPopup->insertItem( i18n("Beam via IR..."),this, | 368 | selPopup->insertItem( i18n("Beam via IR..."),this, |
369 | SLOT(beamSelected())); | 369 | SLOT(beamSelected())); |
370 | #if 0 | 370 | #if 0 |
371 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), | 371 | mPopupMenu->addAdditionalItem(QIconSet(QPixmap()), |
372 | i18n("Beam via IR"),this, | 372 | i18n("Beam via IR"),this, |
373 | SLOT(beamSelected()),true); | 373 | SLOT(beamSelected()),true); |
374 | #endif | 374 | #endif |
375 | #endif | 375 | #endif |
376 | /* | 376 | /* |
377 | mPopupMenu = new QPopupMenu; | 377 | mPopupMenu = new QPopupMenu; |
378 | mPopupMenu->insertItem(i18n("Edit Event"), this, | 378 | mPopupMenu->insertItem(i18n("Edit Event"), this, |
379 | SLOT (editEvent())); | 379 | SLOT (editEvent())); |
380 | mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this, | 380 | mPopupMenu->insertItem(SmallIcon("delete"), i18n("Delete Event"), this, |
381 | SLOT (deleteEvent())); | 381 | SLOT (deleteEvent())); |
382 | mPopupMenu->insertSeparator(); | 382 | mPopupMenu->insertSeparator(); |
383 | mPopupMenu->insertItem(i18n("Show Dates"), this, | 383 | mPopupMenu->insertItem(i18n("Show Dates"), this, |
384 | SLOT(showDates())); | 384 | SLOT(showDates())); |
385 | mPopupMenu->insertItem(i18n("Hide Dates"), this, | 385 | mPopupMenu->insertItem(i18n("Hide Dates"), this, |
386 | SLOT(hideDates())); | 386 | SLOT(hideDates())); |
387 | */ | 387 | */ |
388 | QObject::connect(mListView,SIGNAL( newEvent()), | 388 | QObject::connect(mListView,SIGNAL( newEvent()), |
389 | this,SIGNAL(signalNewEvent())); | 389 | this,SIGNAL(signalNewEvent())); |
390 | QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)), | 390 | QObject::connect(mListView,SIGNAL(doubleClicked(QListViewItem *)), |
391 | this,SLOT(defaultItemAction(QListViewItem *))); | 391 | this,SLOT(defaultItemAction(QListViewItem *))); |
392 | QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *, | 392 | QObject::connect(mListView,SIGNAL(rightButtonPressed( QListViewItem *, |
393 | const QPoint &, int )), | 393 | const QPoint &, int )), |
394 | this,SLOT(popupMenu(QListViewItem *,const QPoint &,int))); | 394 | this,SLOT(popupMenu(QListViewItem *,const QPoint &,int))); |
395 | QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)), | 395 | QObject::connect(mListView,SIGNAL(currentChanged(QListViewItem *)), |
396 | SLOT(processSelectionChange(QListViewItem *))); | 396 | SLOT(processSelectionChange(QListViewItem *))); |
397 | QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)), | 397 | QObject::connect(mListView,SIGNAL(showIncidence(Incidence *)), |
398 | SIGNAL(showIncidenceSignal(Incidence *)) ); | 398 | SIGNAL(showIncidenceSignal(Incidence *)) ); |
399 | 399 | ||
400 | readSettings(KOGlobals::config(),"KOListView Layout"); | 400 | readSettings(KOGlobals::config(),"KOListView Layout"); |
401 | } | 401 | } |
402 | 402 | ||
403 | KOListView::~KOListView() | 403 | KOListView::~KOListView() |
404 | { | 404 | { |
405 | delete mPopupMenu; | 405 | delete mPopupMenu; |
406 | #if QT_VERSION >= 0x030000 | 406 | #if QT_VERSION >= 0x030000 |
407 | 407 | ||
408 | #else | 408 | #else |
409 | delete mKOListViewWhatsThis; | 409 | delete mKOListViewWhatsThis; |
410 | #endif | 410 | #endif |
411 | } | 411 | } |
412 | 412 | ||
413 | void KOListView::catChanged( Incidence* inc) | 413 | void KOListView::catChanged( Incidence* inc) |
414 | { | 414 | { |
415 | KOListViewItem* item = getItemForEvent(inc); | 415 | KOListViewItem* item = getItemForEvent(inc); |
416 | if (item) { | 416 | if (item) { |
417 | ListItemVisitor v(item, mStartDate ); | 417 | ListItemVisitor v(item, mStartDate ); |
418 | inc->accept(v); | 418 | inc->accept(v); |
419 | } | 419 | } |
420 | } | 420 | } |
421 | QString KOListView::getWhatsThisText(QPoint p) | 421 | QString KOListView::getWhatsThisText(QPoint p) |
422 | { | 422 | { |
423 | KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p ); | 423 | KOListViewItem* item = ( KOListViewItem* ) mListView->itemAt( p ); |
424 | if ( item ) | 424 | if ( item ) |
425 | return KIncidenceFormatter::instance()->getFormattedText( item->data(), | 425 | return KIncidenceFormatter::instance()->getFormattedText( item->data(), |
426 | KOPrefs::instance()->mWTshowDetails, | 426 | KOPrefs::instance()->mWTshowDetails, |
427 | KOPrefs::instance()->mWTshowCreated, | 427 | KOPrefs::instance()->mWTshowCreated, |
428 | KOPrefs::instance()->mWTshowChanged); | 428 | KOPrefs::instance()->mWTshowChanged); |
429 | return i18n("That is the list view" ); | 429 | return i18n("That is the list view" ); |
430 | 430 | ||
431 | } | 431 | } |
432 | 432 | ||
433 | void KOListView::setCalendar( int c ) | 433 | void KOListView::setCalendar( int c ) |
434 | { | 434 | { |
435 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), | 435 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), |
436 | i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ), | 436 | i18n("This adds the selected\nitems to the calendar\n%1\nand removes them from\ntheir current calendar!").arg( KOPrefs::instance()->calName( c ) ), |
437 | i18n("Continue"), i18n("Cancel"), 0, | 437 | i18n("Continue"), i18n("Cancel"), 0, |
438 | 0, 1 ); | 438 | 0, 1 ); |
439 | if ( result != 0 ) { | 439 | if ( result != 0 ) { |
440 | return; | 440 | return; |
441 | } | 441 | } |
442 | 442 | ||
443 | QPtrList<Incidence> delSel = getSelectedIncidences() ; | 443 | QPtrList<Incidence> delSel = getSelectedIncidences() ; |
444 | int icount = delSel.count(); | 444 | int icount = delSel.count(); |
445 | if ( icount ) { | 445 | if ( icount ) { |
446 | Incidence *incidence = delSel.first(); | 446 | Incidence *incidence = delSel.first(); |
447 | while ( incidence ) { | 447 | while ( incidence ) { |
448 | incidence->setCalID( c ); | 448 | incidence->setCalID( c ); |
449 | KOListViewItem * item = getItemForEvent( incidence ); | 449 | KOListViewItem * item = getItemForEvent( incidence ); |
450 | if ( item ) { | 450 | if ( item ) { |
451 | ListItemVisitor v(item, mStartDate ); | 451 | ListItemVisitor v(item, mStartDate ); |
452 | incidence->accept(v); | 452 | incidence->accept(v); |
453 | } | 453 | } |
454 | incidence = delSel.next(); | 454 | incidence = delSel.next(); |
455 | } | 455 | } |
456 | } | 456 | } |
457 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 457 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
458 | KopiCalendarFile * cal = calendars.first(); | 458 | KopiCalendarFile * cal = calendars.first(); |
459 | while ( cal ) { | 459 | while ( cal ) { |
460 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); | 460 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); |
461 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); | 461 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); |
462 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); | 462 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); |
463 | if ( cal->isStandard ) | 463 | if ( cal->isStandard ) |
464 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | 464 | mCalendar->setDefaultCalendar( cal->mCalNumber ); |
465 | cal = calendars.next(); | 465 | cal = calendars.next(); |
466 | } | 466 | } |
467 | mCalendar->setSyncEventsReadOnly(); | 467 | mCalendar->setSyncEventsReadOnly(); |
468 | mCalendar->reInitAlarmSettings(); | 468 | mCalendar->reInitAlarmSettings(); |
469 | 469 | ||
470 | } | 470 | } |
471 | void KOListView::populateCalPopup() | 471 | void KOListView::populateCalPopup() |
472 | { | 472 | { |
473 | mCalPopup->clear(); | 473 | mCalPopup->clear(); |
474 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 474 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
475 | while ( kkf ) { | 475 | while ( kkf ) { |
476 | int index = mCalPopup->insertItem( kkf->mName+"...", kkf->mCalNumber); | 476 | int index = mCalPopup->insertItem( kkf->mName+"...", kkf->mCalNumber); |
477 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) | 477 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) |
478 | mCalPopup->setItemEnabled( index, false ); | 478 | mCalPopup->setItemEnabled( index, false ); |
479 | kkf = KOPrefs::instance()->mCalendars.next(); | 479 | kkf = KOPrefs::instance()->mCalendars.next(); |
480 | } | 480 | } |
481 | } | 481 | } |
482 | void KOListView::updateList() | 482 | void KOListView::updateList() |
483 | { | 483 | { |
484 | // qDebug(" KOListView::updateList() "); | 484 | // qDebug(" KOListView::updateList() "); |
485 | 485 | ||
486 | } | 486 | } |
487 | 487 | ||
488 | void KOListView::clearList() | 488 | void KOListView::clearList() |
489 | { | 489 | { |
490 | clear (); | 490 | clear (); |
491 | } | 491 | } |
492 | 492 | ||
493 | void KOListView::setCat() | 493 | void KOListView::setCat() |
494 | { | 494 | { |
495 | 495 | ||
496 | bool set = true; | 496 | bool set = true; |
497 | int result = KMessageBox::warningYesNoCancel(this, | 497 | int result = KMessageBox::warningYesNoCancel(this, |
498 | i18n("Do you want to <b>add</b> categories to the selected items or <b>reset</b> the list (i.e. remove current categories)?"), | 498 | i18n("Do you want to <b>add</b> categories to the selected items or <b>reset</b> the list (i.e. remove current categories)?"), |
499 | i18n("Set categories"), | 499 | i18n("Set categories"), |
500 | i18n("Add"), | 500 | i18n("Add"), |
501 | i18n("Reset")); | 501 | i18n("Reset")); |
502 | if (result == KMessageBox::Cancel) return; | 502 | if (result == KMessageBox::Cancel) return; |
503 | if (result == KMessageBox::Yes) set = false; | 503 | if (result == KMessageBox::Yes) set = false; |
504 | setCategories( set ); | 504 | setCategories( set ); |
505 | } | 505 | } |
506 | 506 | ||
507 | void KOListView::setAlarm() | 507 | void KOListView::setAlarm() |
508 | { | 508 | { |
509 | KOAlarmPrefs kap( this); | 509 | KOAlarmPrefs kap( this); |
510 | if ( !kap.exec() ) | 510 | if ( !kap.exec() ) |
511 | return; | 511 | return; |
512 | QPtrList<Incidence> delSel = getSelectedIncidences( true, true, false, true ); // no journals, only due todos | 512 | QPtrList<Incidence> delSel = getSelectedIncidences( true, true, false, true ); // no journals, only due todos |
513 | Incidence* inc = delSel.first(); | 513 | Incidence* inc = delSel.first(); |
514 | int count = 0; | 514 | int count = 0; |
515 | while ( inc ) { | 515 | while ( inc ) { |
516 | ++count; | 516 | ++count; |
517 | if (kap.mAlarmButton->isChecked()) { | 517 | if (kap.mAlarmButton->isChecked()) { |
518 | if (inc->alarms().count() == 0) | 518 | if (inc->alarms().count() == 0) |
519 | inc->newAlarm(); | 519 | inc->newAlarm(); |
520 | Alarm *alarm = inc->alarms().first(); | ||
521 | alarm->setEnabled(true); | ||
522 | int j = kap.mAlarmTimeEdit->value()* -60; | ||
523 | if (kap.mAlarmIncrCombo->currentItem() == 1) | ||
524 | j = j * 60; | ||
525 | else if (kap.mAlarmIncrCombo->currentItem() == 2) | ||
526 | j = j * (60 * 24); | ||
527 | alarm->setStartOffset( j ); | ||
528 | |||
529 | if (!kap.mAlarmProgram.isEmpty() && kap.mAlarmProgramButton->isOn()) { | ||
530 | alarm->setProcedureAlarm(kap.mAlarmProgram); | ||
531 | } | ||
532 | else if (!kap.mAlarmSound.isEmpty() && kap.mAlarmSoundButton->isOn()) | ||
533 | alarm->setAudioAlarm(kap.mAlarmSound); | ||
534 | else | ||
535 | alarm->setType(Alarm::Invalid); | ||
536 | } else { | ||
520 | QPtrList<Alarm> alarms = inc->alarms(); | 537 | QPtrList<Alarm> alarms = inc->alarms(); |
521 | Alarm *alarm; | 538 | Alarm *alarm; |
522 | for (alarm = alarms.first(); alarm; alarm = alarms.next() ) { | 539 | for (alarm = alarms.first(); alarm; alarm = alarms.next() ) { |
523 | alarm->setEnabled(true); | ||
524 | int j = kap.mAlarmTimeEdit->value()* -60; | ||
525 | if (kap.mAlarmIncrCombo->currentItem() == 1) | ||
526 | j = j * 60; | ||
527 | else if (kap.mAlarmIncrCombo->currentItem() == 2) | ||
528 | j = j * (60 * 24); | ||
529 | alarm->setStartOffset( j ); | ||
530 | |||
531 | if (!kap.mAlarmProgram.isEmpty() && kap.mAlarmProgramButton->isOn()) { | ||
532 | alarm->setProcedureAlarm(kap.mAlarmProgram); | ||
533 | } | ||
534 | else if (!kap.mAlarmSound.isEmpty() && kap.mAlarmSoundButton->isOn()) | ||
535 | alarm->setAudioAlarm(kap.mAlarmSound); | ||
536 | else | ||
537 | alarm->setType(Alarm::Invalid); | ||
538 | //alarm->setAudioAlarm("default"); | ||
539 | // TODO: Deal with multiple alarms | ||
540 | break; // For now, stop after the first alarm | ||
541 | } | ||
542 | } else { | ||
543 | Alarm* alarm = inc->alarms().first(); | ||
544 | if ( alarm ) { | ||
545 | alarm->setEnabled(false); | 540 | alarm->setEnabled(false); |
546 | alarm->setType(Alarm::Invalid); | 541 | alarm->setType(Alarm::Invalid); |
547 | } | 542 | } |
548 | } | 543 | } |
549 | KOListViewItem* item = getItemForEvent(inc); | 544 | KOListViewItem* item = getItemForEvent(inc); |
550 | if (item) { | 545 | if (item) { |
551 | ListItemVisitor v(item, mStartDate ); | 546 | ListItemVisitor v(item, mStartDate ); |
552 | inc->accept(v); | 547 | inc->accept(v); |
553 | } | 548 | } |
554 | inc = delSel.next(); | 549 | inc = delSel.next(); |
555 | } | 550 | } |
556 | topLevelWidget()->setCaption( i18n("Changed alarm for %1 items").arg( count ) ); | 551 | topLevelWidget()->setCaption( i18n("Changed alarm for %1 items").arg( count ) ); |
557 | qDebug("KO: Set alarm for %d items", count); | 552 | qDebug("KO: Set alarm for %d items", count); |
558 | calendar()->reInitAlarmSettings(); | 553 | calendar()->reInitAlarmSettings(); |
559 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); | 554 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); |
560 | } | 555 | } |
561 | void KOListView::setCategories( bool removeOld ) | 556 | void KOListView::setCategories( bool removeOld ) |
562 | { | 557 | { |
563 | 558 | ||
564 | KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 ); | 559 | KPIM::CategorySelectDialog* csd = new KPIM::CategorySelectDialog( KOPrefs::instance(), 0 ); |
565 | csd->setColorEnabled(); | 560 | csd->setColorEnabled(); |
566 | if (! csd->exec()) { | 561 | if (! csd->exec()) { |
567 | delete csd; | 562 | delete csd; |
568 | return; | 563 | return; |
569 | } | 564 | } |
570 | QStringList catList = csd->selectedCategories(); | 565 | QStringList catList = csd->selectedCategories(); |
571 | delete csd; | 566 | delete csd; |
572 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed; | 567 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed; |
573 | Incidence* inc = delSel.first(); | 568 | Incidence* inc = delSel.first(); |
574 | while ( inc ) { | 569 | while ( inc ) { |
575 | if ( removeOld ) { | 570 | if ( removeOld ) { |
576 | inc->setCategories( catList, false ); | 571 | inc->setCategories( catList, false ); |
577 | } else { | 572 | } else { |
578 | inc->addCategories( catList, false ); | 573 | inc->addCategories( catList, false ); |
579 | } | 574 | } |
580 | KOListViewItem* item = getItemForEvent(inc); | 575 | KOListViewItem* item = getItemForEvent(inc); |
581 | if (item) { | 576 | if (item) { |
582 | ListItemVisitor v(item, mStartDate ); | 577 | ListItemVisitor v(item, mStartDate ); |
583 | inc->accept(v); | 578 | inc->accept(v); |
584 | } | 579 | } |
585 | inc = delSel.next(); | 580 | inc = delSel.next(); |
586 | } | 581 | } |
587 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); | 582 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); |
588 | } | 583 | } |
589 | 584 | ||
590 | void KOListView::beamSelected() | 585 | void KOListView::beamSelected() |
591 | { | 586 | { |
592 | QPtrList<Incidence> delSel = getSelectedIncidences() ; | 587 | QPtrList<Incidence> delSel = getSelectedIncidences() ; |
593 | if ( delSel.count() ) | 588 | if ( delSel.count() ) |
594 | emit beamIncidenceList( delSel ); | 589 | emit beamIncidenceList( delSel ); |
595 | } | 590 | } |
596 | 591 | ||
597 | void KOListView::saveDescriptionToFile() | 592 | void KOListView::saveDescriptionToFile() |
598 | { | 593 | { |
599 | 594 | ||
600 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), | 595 | int result = QMessageBox::warning( this, i18n("KO/Pi: Information!"), |
601 | i18n("This saves the text/details of selected\nJournals and Events/Todos\nto a text file."), | 596 | i18n("This saves the text/details of selected\nJournals and Events/Todos\nto a text file."), |
602 | i18n("Continue"), i18n("Cancel"), 0, | 597 | i18n("Continue"), i18n("Cancel"), 0, |
603 | 0, 1 ); | 598 | 0, 1 ); |
604 | if ( result != 0 ) { | 599 | if ( result != 0 ) { |
605 | return; | 600 | return; |
606 | } | 601 | } |
607 | QPtrList<Incidence> delSel = getSelectedIncidences() ; | 602 | QPtrList<Incidence> delSel = getSelectedIncidences() ; |
608 | int icount = delSel.count(); | 603 | int icount = delSel.count(); |
609 | if ( icount ) { | 604 | if ( icount ) { |
610 | QString fn = KOPrefs::instance()->mLastSaveFile; | 605 | QString fn = KOPrefs::instance()->mLastSaveFile; |
611 | fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); | 606 | fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); |
612 | 607 | ||
613 | if ( fn == "" ) | 608 | if ( fn == "" ) |
614 | return; | 609 | return; |
615 | QFileInfo info; | 610 | QFileInfo info; |
616 | info.setFile( fn ); | 611 | info.setFile( fn ); |
617 | QString mes; | 612 | QString mes; |
618 | bool createbup = true; | 613 | bool createbup = true; |
619 | if ( info. exists() ) { | 614 | if ( info. exists() ) { |
620 | mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 615 | mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
621 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 616 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
622 | i18n("Overwrite!"), i18n("Cancel"), 0, | 617 | i18n("Overwrite!"), i18n("Cancel"), 0, |
623 | 0, 1 ); | 618 | 0, 1 ); |
624 | if ( result != 0 ) { | 619 | if ( result != 0 ) { |
625 | createbup = false; | 620 | createbup = false; |
626 | } | 621 | } |
627 | } | 622 | } |
628 | if ( createbup ) { | 623 | if ( createbup ) { |
629 | QString text = i18n("KO/Pi Description/Journal save file.\nSave date: ") + | 624 | QString text = i18n("KO/Pi Description/Journal save file.\nSave date: ") + |
630 | KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), false); | 625 | KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), false); |
631 | Incidence *incidence = delSel.first(); | 626 | Incidence *incidence = delSel.first(); |
632 | icount = 0; | 627 | icount = 0; |
633 | while ( incidence ) { | 628 | while ( incidence ) { |
634 | if ( incidence->typeID() == journalID ) { | 629 | if ( incidence->typeID() == journalID ) { |
635 | text += "\n************************************\n"; | 630 | text += "\n************************************\n"; |
636 | if ( !incidence->summary().isEmpty() ) | 631 | if ( !incidence->summary().isEmpty() ) |
637 | text += i18n("Journal: %1 from ").arg( incidence->summary() ) +incidence->dtStartDateStr( false ); | 632 | text += i18n("Journal: %1 from ").arg( incidence->summary() ) +incidence->dtStartDateStr( false ); |
638 | else | 633 | else |
639 | text += i18n("Journal from: ") +incidence->dtStartDateStr( false ); | 634 | text += i18n("Journal from: ") +incidence->dtStartDateStr( false ); |
640 | if ( !incidence->location().isEmpty() ) | 635 | if ( !incidence->location().isEmpty() ) |
641 | text +="\n(" + i18n("Location: ") + incidence->location()+ ")"; | 636 | text +="\n(" + i18n("Location: ") + incidence->location()+ ")"; |
642 | text +="\n" + i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); | 637 | text +="\n" + i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); |
643 | text +="\n" + i18n("Description: ") + "\n"+ incidence->description(); | 638 | text +="\n" + i18n("Description: ") + "\n"+ incidence->description(); |
644 | ++icount; | 639 | ++icount; |
645 | 640 | ||
646 | } else { | 641 | } else { |
647 | if ( !incidence->description().isEmpty() ) { | 642 | if ( !incidence->description().isEmpty() ) { |
648 | text += "\n************************************\n"; | 643 | text += "\n************************************\n"; |
649 | if ( incidence->typeID() == todoID ) | 644 | if ( incidence->typeID() == todoID ) |
650 | text += i18n("To-Do: "); | 645 | text += i18n("To-Do: "); |
651 | text += incidence->summary(); | 646 | text += incidence->summary(); |
652 | if ( !incidence->location().isEmpty() ) | 647 | if ( !incidence->location().isEmpty() ) |
653 | text +="\n(" + i18n("Location: ") + incidence->location()+ ")"; | 648 | text +="\n(" + i18n("Location: ") + incidence->location()+ ")"; |
654 | if ( incidence->hasStartDate() ) | 649 | if ( incidence->hasStartDate() ) |
655 | text +="\n"+ i18n("Start Date: ") + incidence->dtStartStr( false ); | 650 | text +="\n"+ i18n("Start Date: ") + incidence->dtStartStr( false ); |
656 | text +="\n"+ i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); | 651 | text +="\n"+ i18n("Last modified: ") +KGlobal::locale()->formatDateTime(incidence->lastModified(), false); |
657 | text += "\n" + i18n("Description: ") + "\n" + incidence->description(); | 652 | text += "\n" + i18n("Description: ") + "\n" + incidence->description(); |
658 | ++icount; | 653 | ++icount; |
659 | 654 | ||
660 | } | 655 | } |
661 | } | 656 | } |
662 | incidence = delSel.next(); | 657 | incidence = delSel.next(); |
663 | } | 658 | } |
664 | QFile file( fn ); | 659 | QFile file( fn ); |
665 | if (!file.open( IO_WriteOnly ) ) { | 660 | if (!file.open( IO_WriteOnly ) ) { |
666 | topLevelWidget()->setCaption(i18n("File open error - nothing saved!") ); | 661 | topLevelWidget()->setCaption(i18n("File open error - nothing saved!") ); |
667 | return; | 662 | return; |
668 | } | 663 | } |
669 | QTextStream ts( &file ); | 664 | QTextStream ts( &file ); |
670 | ts << text; | 665 | ts << text; |
671 | file.close(); | 666 | file.close(); |
672 | //qDebug("%s ", text.latin1()); | 667 | //qDebug("%s ", text.latin1()); |
673 | mes = i18n("KO/Pi:Saved %1 descriptions/journals").arg(icount ); | 668 | mes = i18n("KO/Pi:Saved %1 descriptions/journals").arg(icount ); |
674 | KOPrefs::instance()->mLastSaveFile = fn; | 669 | KOPrefs::instance()->mLastSaveFile = fn; |
675 | topLevelWidget()->setCaption(mes); | 670 | topLevelWidget()->setCaption(mes); |
676 | } | 671 | } |
677 | } | 672 | } |
678 | } | 673 | } |
679 | void KOListView::saveToFileVCS() | 674 | void KOListView::saveToFileVCS() |
680 | { | 675 | { |
681 | writeToFile( false ); | 676 | writeToFile( false ); |
682 | } | 677 | } |
683 | void KOListView::saveToFile() | 678 | void KOListView::saveToFile() |
684 | { | 679 | { |
685 | writeToFile( true ); | 680 | writeToFile( true ); |
686 | } | 681 | } |
687 | QPtrList<Incidence> KOListView::getSelectedIncidences( bool includeEvents, bool includeTodos, bool includeJournals, bool onlyDueTodos ) | 682 | QPtrList<Incidence> KOListView::getSelectedIncidences( bool includeEvents, bool includeTodos, bool includeJournals, bool onlyDueTodos ) |
688 | { | 683 | { |
689 | QPtrList<Incidence> delSel ; | 684 | QPtrList<Incidence> delSel ; |
690 | bool addSubTodos = false; | 685 | bool addSubTodos = false; |
691 | bool askSubTodos = true; | 686 | bool askSubTodos = true; |
692 | QListViewItem *item = mListView->firstChild (); | 687 | QListViewItem *item = mListView->firstChild (); |
693 | while ( item ) { | 688 | while ( item ) { |
694 | if ( item->isSelected() ) { | 689 | if ( item->isSelected() ) { |
695 | Incidence* inc = ((KOListViewItem *)item)->data(); | 690 | Incidence* inc = ((KOListViewItem *)item)->data(); |
696 | if ( ( addSubTodos && delSel.findRef( inc ) == -1) || !addSubTodos ) { | 691 | if ( ( addSubTodos && delSel.findRef( inc ) == -1) || !addSubTodos ) { |
697 | if ( (inc->typeID() == todoID && includeTodos) || | 692 | if ( (inc->typeID() == todoID && includeTodos) || |
698 | (inc->typeID() == eventID && includeEvents) || | 693 | (inc->typeID() == eventID && includeEvents) || |
699 | (inc->typeID() == journalID && includeJournals) ) { | 694 | (inc->typeID() == journalID && includeJournals) ) { |
700 | if ( inc->typeID() == todoID && onlyDueTodos ) { | 695 | if ( inc->typeID() == todoID && onlyDueTodos ) { |
701 | if ( ((Todo*)inc)->hasDueDate() ) | 696 | if ( ((Todo*)inc)->hasDueDate() ) |
702 | delSel.append( inc ); | 697 | delSel.append( inc ); |
703 | } else | 698 | } else |
704 | delSel.append( inc ); | 699 | delSel.append( inc ); |
705 | 700 | ||
706 | } | 701 | } |
707 | } | 702 | } |
708 | if ( inc->typeID() == todoID ) { | 703 | if ( inc->typeID() == todoID ) { |
709 | Todo * todo = (Todo*) inc; | 704 | Todo * todo = (Todo*) inc; |
710 | if ( todo->relations().count() ) { | 705 | if ( todo->relations().count() ) { |
711 | if ( askSubTodos ) { | 706 | if ( askSubTodos ) { |
712 | int result = KMessageBox::warningYesNoCancel(this, | 707 | int result = KMessageBox::warningYesNoCancel(this, |
713 | i18n("One (or more) selected\ntodo has subtodos!\nDo you want to select\nall subtodos of all\nselected todos as well?"), | 708 | i18n("One (or more) selected\ntodo has subtodos!\nDo you want to select\nall subtodos of all\nselected todos as well?"), |
714 | i18n("Todo has subtodos"), | 709 | i18n("Todo has subtodos"), |
715 | i18n("Yes"), | 710 | i18n("Yes"), |
716 | i18n("No")); | 711 | i18n("No")); |
717 | if ( result == KMessageBox::Cancel ) { | 712 | if ( result == KMessageBox::Cancel ) { |
718 | delSel.clear(); | 713 | delSel.clear(); |
719 | return delSel; | 714 | return delSel; |
720 | } | 715 | } |
721 | if (result == KMessageBox::Yes) | 716 | if (result == KMessageBox::Yes) |
722 | addSubTodos = true; | 717 | addSubTodos = true; |
723 | askSubTodos = false; | 718 | askSubTodos = false; |
724 | } | 719 | } |
725 | if ( addSubTodos ) { | 720 | if ( addSubTodos ) { |
726 | QPtrList<Incidence> tempSel ; | 721 | QPtrList<Incidence> tempSel ; |
727 | inc->addRelationsToList( &tempSel ); | 722 | inc->addRelationsToList( &tempSel ); |
728 | Incidence* tempinc = tempSel.first(); | 723 | Incidence* tempinc = tempSel.first(); |
729 | while ( tempinc ) { | 724 | while ( tempinc ) { |
730 | if ( delSel.findRef( tempinc ) == -1 ) { | 725 | if ( delSel.findRef( tempinc ) == -1 ) { |
731 | if ( tempinc->typeID() == todoID && onlyDueTodos ) { | 726 | if ( tempinc->typeID() == todoID && onlyDueTodos ) { |
732 | if ( ((Todo*)tempinc)->hasDueDate() ) | 727 | if ( ((Todo*)tempinc)->hasDueDate() ) |
733 | delSel.append( tempinc ); | 728 | delSel.append( tempinc ); |
734 | } else | 729 | } else |
735 | delSel.append( tempinc ); | 730 | delSel.append( tempinc ); |
736 | } | 731 | } |
737 | tempinc = tempSel.next(); | 732 | tempinc = tempSel.next(); |
738 | } | 733 | } |
739 | } | 734 | } |
740 | } | 735 | } |
741 | } | 736 | } |
742 | } | 737 | } |
743 | item = item->nextSibling(); | 738 | item = item->nextSibling(); |
744 | } | 739 | } |
745 | return delSel; | 740 | return delSel; |
746 | } | 741 | } |
747 | 742 | ||
748 | void KOListView::writeToFile( bool iCal ) | 743 | void KOListView::writeToFile( bool iCal ) |
749 | { | 744 | { |
750 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed; | 745 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed; |
751 | if ( !iCal ) { | 746 | if ( !iCal ) { |
752 | bool journal = false; | 747 | bool journal = false; |
753 | Incidence *incidence = delSel.first(); | 748 | Incidence *incidence = delSel.first(); |
754 | while ( incidence ) { | 749 | while ( incidence ) { |
755 | if ( incidence->typeID() == journalID ) { | 750 | if ( incidence->typeID() == journalID ) { |
756 | journal = true; | 751 | journal = true; |
757 | break; | 752 | break; |
758 | } | 753 | } |
759 | incidence = delSel.next(); | 754 | incidence = delSel.next(); |
760 | } | 755 | } |
761 | if ( journal ) { | 756 | if ( journal ) { |
762 | int result = KMessageBox::warningContinueCancel(this, | 757 | int result = KMessageBox::warningContinueCancel(this, |
763 | i18n("The journal entries can not be\nexported to a vCalendar file."), | 758 | i18n("The journal entries can not be\nexported to a vCalendar file."), |
764 | i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), | 759 | i18n("Data Loss Warning"),i18n("Proceed"),i18n("Cancel"), |
765 | true); | 760 | true); |
766 | if (result != KMessageBox::Continue) return; | 761 | if (result != KMessageBox::Continue) return; |
767 | } | 762 | } |
768 | } | 763 | } |
769 | if ( delSel.count() ) { | 764 | if ( delSel.count() ) { |
770 | QString fn = KOPrefs::instance()->mLastSaveFile; | 765 | QString fn = KOPrefs::instance()->mLastSaveFile; |
771 | QString extension; | 766 | QString extension; |
772 | if ( iCal ) { | 767 | if ( iCal ) { |
773 | if ( fn.right( 4 ).lower() == ".vcs" ) { | 768 | if ( fn.right( 4 ).lower() == ".vcs" ) { |
774 | fn = fn.left( fn.length() -3) + "ics"; | 769 | fn = fn.left( fn.length() -3) + "ics"; |
775 | } | 770 | } |
776 | } else { | 771 | } else { |
777 | if ( fn.right( 4 ).lower() == ".ics" ) { | 772 | if ( fn.right( 4 ).lower() == ".ics" ) { |
778 | fn = fn.left( fn.length() -3) + "vcs"; | 773 | fn = fn.left( fn.length() -3) + "vcs"; |
779 | } | 774 | } |
780 | } | 775 | } |
781 | fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); | 776 | fn = KFileDialog::getSaveFileName( fn, i18n("Save filename"), this ); |
782 | 777 | ||
783 | if ( fn == "" ) | 778 | if ( fn == "" ) |
784 | return; | 779 | return; |
785 | QFileInfo info; | 780 | QFileInfo info; |
786 | info.setFile( fn ); | 781 | info.setFile( fn ); |
787 | QString mes; | 782 | QString mes; |
788 | bool createbup = true; | 783 | bool createbup = true; |
789 | if ( info. exists() ) { | 784 | if ( info. exists() ) { |
790 | mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 785 | mes = i18n("File already exists!\nOld file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
791 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 786 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
792 | i18n("Overwrite!"), i18n("Cancel"), 0, | 787 | i18n("Overwrite!"), i18n("Cancel"), 0, |
793 | 0, 1 ); | 788 | 0, 1 ); |
794 | if ( result != 0 ) { | 789 | if ( result != 0 ) { |
795 | createbup = false; | 790 | createbup = false; |
796 | } | 791 | } |
797 | } | 792 | } |
798 | if ( createbup ) { | 793 | if ( createbup ) { |
799 | CalendarLocal cal; | 794 | CalendarLocal cal; |
800 | cal.setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 795 | cal.setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
801 | Incidence *incidence = delSel.first(); | 796 | Incidence *incidence = delSel.first(); |
802 | while ( incidence ) { | 797 | while ( incidence ) { |
803 | cal.addIncidence( incidence->clone() ); | 798 | cal.addIncidence( incidence->clone() ); |
804 | incidence = delSel.next(); | 799 | incidence = delSel.next(); |
805 | } | 800 | } |
806 | if ( iCal ) { | 801 | if ( iCal ) { |
807 | ICalFormat format; | 802 | ICalFormat format; |
808 | format.save( &cal, fn ); | 803 | format.save( &cal, fn ); |
809 | } else { | 804 | } else { |
810 | 805 | ||
811 | VCalFormat format; | 806 | VCalFormat format; |
812 | format.save( &cal, fn ); | 807 | format.save( &cal, fn ); |
813 | } | 808 | } |
814 | mes = i18n("KO/Pi:Saved %1").arg(fn ); | 809 | mes = i18n("KO/Pi:Saved %1").arg(fn ); |
815 | KOPrefs::instance()->mLastSaveFile = fn; | 810 | KOPrefs::instance()->mLastSaveFile = fn; |
816 | topLevelWidget()->setCaption(mes); | 811 | topLevelWidget()->setCaption(mes); |
817 | } | 812 | } |
818 | } | 813 | } |
819 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); | 814 | QTimer::singleShot( 1, this, SLOT ( resetFocus() ) ); |
820 | } | 815 | } |
821 | void KOListView::hideAll() | 816 | void KOListView::hideAll() |
822 | { | 817 | { |
823 | QPtrList<QListViewItem> delSel ; | 818 | QPtrList<QListViewItem> delSel ; |
824 | QListViewItem *item = mListView->firstChild (); | 819 | QListViewItem *item = mListView->firstChild (); |
825 | while ( item ) { | 820 | while ( item ) { |
826 | if ( item->isSelected() ) { | 821 | if ( item->isSelected() ) { |
827 | delSel.append(item); | 822 | delSel.append(item); |
828 | } | 823 | } |
829 | item = item->nextSibling(); | 824 | item = item->nextSibling(); |
830 | } | 825 | } |
831 | item = delSel.first() ; | 826 | item = delSel.first() ; |
832 | while ( item ) { | 827 | while ( item ) { |
833 | QListViewItem * del = item; | 828 | QListViewItem * del = item; |
834 | item = delSel.next(); | 829 | item = delSel.next(); |
835 | delete del; | 830 | delete del; |
836 | } | 831 | } |
837 | } | 832 | } |
838 | void KOListView::printList() | 833 | void KOListView::printList() |
839 | { | 834 | { |
840 | mListView->printList(); | 835 | mListView->printList(); |
841 | } | 836 | } |
842 | void KOListView::deleteAll() | 837 | void KOListView::deleteAll() |
843 | { | 838 | { |
844 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed;; | 839 | QPtrList<Incidence> delSel = getSelectedIncidences(); // all inc allowed;; |
845 | if ( delSel.count() ) { | 840 | if ( delSel.count() ) { |
846 | int icount = delSel.count(); | 841 | int icount = delSel.count(); |
847 | Incidence *incidence = delSel.first(); | 842 | Incidence *incidence = delSel.first(); |
848 | Incidence *toDelete; | 843 | Incidence *toDelete; |
849 | KOPrefs *p = KOPrefs::instance(); | 844 | KOPrefs *p = KOPrefs::instance(); |
850 | bool confirm = p->mConfirm; | 845 | bool confirm = p->mConfirm; |
851 | QString mess; | 846 | QString mess; |
852 | mess = mess.sprintf( i18n("You have %d item(s) selected.\n"), icount ); | 847 | mess = mess.sprintf( i18n("You have %d item(s) selected.\n"), icount ); |
853 | if ( KMessageBox::Continue == KMessageBox::warningContinueCancel(this, mess + i18n("All selected items will be\npermanently deleted.\n(Deleting items will take\nsome time on a PDA)\n"), i18n("KO/Pi Confirmation"),i18n("Delete")) ) { | 848 | if ( KMessageBox::Continue == KMessageBox::warningContinueCancel(this, mess + i18n("All selected items will be\npermanently deleted.\n(Deleting items will take\nsome time on a PDA)\n"), i18n("KO/Pi Confirmation"),i18n("Delete")) ) { |
854 | p->mConfirm = false; | 849 | p->mConfirm = false; |
855 | int delCounter = 0; | 850 | int delCounter = 0; |
856 | QDialog dia ( this, "p-dialog", true ); | 851 | QDialog dia ( this, "p-dialog", true ); |
857 | QLabel lab (i18n("Close dialog to abort deletion!"), &dia ); | 852 | QLabel lab (i18n("Close dialog to abort deletion!"), &dia ); |
858 | QVBoxLayout lay( &dia ); | 853 | QVBoxLayout lay( &dia ); |
859 | lay.setMargin(7); | 854 | lay.setMargin(7); |
860 | lay.setSpacing(7); | 855 | lay.setSpacing(7); |
861 | lay.addWidget( &lab); | 856 | lay.addWidget( &lab); |
862 | QProgressBar bar( icount, &dia ); | 857 | QProgressBar bar( icount, &dia ); |
863 | lay.addWidget( &bar); | 858 | lay.addWidget( &bar); |
864 | int w = 220; | 859 | int w = 220; |
865 | int h = 50; | 860 | int h = 50; |
866 | int dw = QApplication::desktop()->width(); | 861 | int dw = QApplication::desktop()->width(); |
867 | int dh = QApplication::desktop()->height(); | 862 | int dh = QApplication::desktop()->height(); |
868 | dia.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 863 | dia.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
869 | //dia.resize( 240,50 ); | 864 | //dia.resize( 240,50 ); |
870 | dia.show(); | 865 | dia.show(); |
871 | KOPrefs::instance()->mGlobalUpdateDisabled = true; | 866 | KOPrefs::instance()->mGlobalUpdateDisabled = true; |
872 | while ( incidence ) { | 867 | while ( incidence ) { |
873 | bar.setProgress( delCounter ); | 868 | bar.setProgress( delCounter ); |
874 | mess = mess.sprintf( i18n("Deleting item %d ..."), ++delCounter ); | 869 | mess = mess.sprintf( i18n("Deleting item %d ..."), ++delCounter ); |
875 | dia.setCaption( mess ); | 870 | dia.setCaption( mess ); |
876 | qApp->processEvents(); | 871 | qApp->processEvents(); |
877 | toDelete = (incidence); | 872 | toDelete = (incidence); |
878 | incidence = delSel.next(); | 873 | incidence = delSel.next(); |
879 | emit deleteIncidenceSignal(toDelete ); | 874 | emit deleteIncidenceSignal(toDelete ); |
880 | if ( dia.result() != 0 ) | 875 | if ( dia.result() != 0 ) |
881 | break; | 876 | break; |
882 | 877 | ||
883 | } | 878 | } |
884 | KOPrefs::instance()->mGlobalUpdateDisabled = false; | 879 | KOPrefs::instance()->mGlobalUpdateDisabled = false; |
885 | emit deleteIncidenceSignal( 0 ); | 880 | emit deleteIncidenceSignal( 0 ); |
886 | mess = mess.sprintf( i18n("%d items remaining in list."), count() ); | 881 | mess = mess.sprintf( i18n("%d items remaining in list."), count() ); |
887 | topLevelWidget ()->setCaption( mess ); | 882 | topLevelWidget ()->setCaption( mess ); |
888 | p->mConfirm = confirm; | 883 | p->mConfirm = confirm; |
889 | } | 884 | } |
890 | } | 885 | } |
891 | 886 | ||
892 | 887 | ||
893 | } | 888 | } |
894 | int KOListView::maxDatesHint() | 889 | int KOListView::maxDatesHint() |
895 | { | 890 | { |
896 | return 0; | 891 | return 0; |
897 | } | 892 | } |
898 | 893 | ||
899 | int KOListView::currentDateCount() | 894 | int KOListView::currentDateCount() |
900 | { | 895 | { |
901 | return 0; | 896 | return 0; |
902 | } | 897 | } |
903 | 898 | ||
904 | QPtrList<Incidence> KOListView::selectedIncidences() | 899 | QPtrList<Incidence> KOListView::selectedIncidences() |
905 | { | 900 | { |
906 | QPtrList<Incidence> eventList; | 901 | QPtrList<Incidence> eventList; |
907 | QListViewItem *item = mListView->firstChild (); | 902 | QListViewItem *item = mListView->firstChild (); |
908 | while ( item ) { | 903 | while ( item ) { |
909 | if ( item->isSelected() ) { | 904 | if ( item->isSelected() ) { |
910 | eventList.append(((KOListViewItem *)item)->data()); | 905 | eventList.append(((KOListViewItem *)item)->data()); |
911 | } | 906 | } |
912 | 907 | ||
913 | item = item->nextSibling(); | 908 | item = item->nextSibling(); |
914 | } | 909 | } |
915 | 910 | ||
916 | // // QListViewItem *item = mListView->selectedItem(); | 911 | // // QListViewItem *item = mListView->selectedItem(); |
917 | //if (item) eventList.append(((KOListViewItem *)item)->data()); | 912 | //if (item) eventList.append(((KOListViewItem *)item)->data()); |
918 | 913 | ||
919 | return eventList; | 914 | return eventList; |
920 | } | 915 | } |
921 | 916 | ||
922 | DateList KOListView::selectedDates() | 917 | DateList KOListView::selectedDates() |
923 | { | 918 | { |
924 | DateList eventList; | 919 | DateList eventList; |
925 | return eventList; | 920 | return eventList; |
926 | } | 921 | } |
927 | 922 | ||
928 | void KOListView::showDates(bool show) | 923 | void KOListView::showDates(bool show) |
929 | { | 924 | { |
930 | // Shouldn't we set it to a value greater 0? When showDates is called with | 925 | // Shouldn't we set it to a value greater 0? When showDates is called with |
931 | // show == true at first, then the columnwidths are set to zero. | 926 | // show == true at first, then the columnwidths are set to zero. |
932 | static int oldColWidth1 = 0; | 927 | static int oldColWidth1 = 0; |
933 | static int oldColWidth3 = 0; | 928 | static int oldColWidth3 = 0; |
934 | 929 | ||
935 | if (!show) { | 930 | if (!show) { |
936 | oldColWidth1 = mListView->columnWidth(1); | 931 | oldColWidth1 = mListView->columnWidth(1); |
937 | oldColWidth3 = mListView->columnWidth(3); | 932 | oldColWidth3 = mListView->columnWidth(3); |
938 | mListView->setColumnWidth(1, 0); | 933 | mListView->setColumnWidth(1, 0); |
939 | mListView->setColumnWidth(3, 0); | 934 | mListView->setColumnWidth(3, 0); |
940 | } else { | 935 | } else { |
941 | mListView->setColumnWidth(1, oldColWidth1); | 936 | mListView->setColumnWidth(1, oldColWidth1); |
942 | mListView->setColumnWidth(3, oldColWidth3); | 937 | mListView->setColumnWidth(3, oldColWidth3); |
943 | } | 938 | } |
944 | mListView->repaint(); | 939 | mListView->repaint(); |
945 | } | 940 | } |
946 | 941 | ||
947 | void KOListView::printPreview(CalPrinter *calPrinter, const QDate &fd, | 942 | void KOListView::printPreview(CalPrinter *calPrinter, const QDate &fd, |
948 | const QDate &td) | 943 | const QDate &td) |
949 | { | 944 | { |
950 | #ifndef KORG_NOPRINTER | 945 | #ifndef KORG_NOPRINTER |
951 | calPrinter->preview(CalPrinter::Day, fd, td); | 946 | calPrinter->preview(CalPrinter::Day, fd, td); |
952 | #endif | 947 | #endif |
953 | } | 948 | } |
954 | 949 | ||
955 | void KOListView::showDates() | 950 | void KOListView::showDates() |
956 | { | 951 | { |
957 | showDates(true); | 952 | showDates(true); |
958 | } | 953 | } |
959 | 954 | ||
960 | void KOListView::hideDates() | 955 | void KOListView::hideDates() |
961 | { | 956 | { |
962 | showDates(false); | 957 | showDates(false); |
963 | } | 958 | } |
964 | 959 | ||
965 | void KOListView::resetFocus() | 960 | void KOListView::resetFocus() |
966 | { | 961 | { |
967 | topLevelWidget()->setActiveWindow(); | 962 | topLevelWidget()->setActiveWindow(); |
968 | topLevelWidget()->raise(); | 963 | topLevelWidget()->raise(); |
969 | mListView->setFocus(); | 964 | mListView->setFocus(); |
970 | } | 965 | } |
971 | void KOListView::updateView() | 966 | void KOListView::updateView() |
972 | { | 967 | { |
973 | mListView->setFocus(); | 968 | mListView->setFocus(); |
974 | if ( mListView->firstChild () ) { | 969 | if ( mListView->firstChild () ) { |
975 | mListView->setCurrentItem( mListView->firstChild () ); | 970 | mListView->setCurrentItem( mListView->firstChild () ); |
976 | } | 971 | } |
977 | processSelectionChange( mListView->firstChild () ); | 972 | processSelectionChange( mListView->firstChild () ); |
978 | } | 973 | } |
979 | void KOListView::updateConfig() | 974 | void KOListView::updateConfig() |
980 | { | 975 | { |
981 | 976 | ||
982 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); | 977 | mListView->setFont ( KOPrefs::instance()->mListViewFont ); |
983 | updateView(); | 978 | updateView(); |
984 | 979 | ||
985 | } | 980 | } |
986 | void KOListView::setStartDate(const QDate &start) | 981 | void KOListView::setStartDate(const QDate &start) |
987 | { | 982 | { |
988 | mStartDate = start; | 983 | mStartDate = start; |
989 | } | 984 | } |
990 | 985 | ||
991 | void KOListView::showDates(const QDate &start, const QDate &end) | 986 | void KOListView::showDates(const QDate &start, const QDate &end) |
992 | { | 987 | { |
993 | clear(); | 988 | clear(); |
994 | mStartDate = start; | 989 | mStartDate = start; |
995 | QDate date = start; | 990 | QDate date = start; |
996 | while( date <= end ) { | 991 | while( date <= end ) { |
997 | addEvents(calendar()->events(date)); | 992 | addEvents(calendar()->events(date)); |
998 | addTodos(calendar()->todos(date)); | 993 | addTodos(calendar()->todos(date)); |
999 | addJournals( calendar()->journals4Date(date) ); | 994 | addJournals( calendar()->journals4Date(date) ); |
1000 | date = date.addDays( 1 ); | 995 | date = date.addDays( 1 ); |
1001 | } | 996 | } |
1002 | //emit incidenceSelected( 0 ); | 997 | //emit incidenceSelected( 0 ); |
1003 | updateView(); | 998 | updateView(); |
1004 | 999 | ||
1005 | } | 1000 | } |
1006 | 1001 | ||
1007 | void KOListView::addEvents(QPtrList<Event> eventList) | 1002 | void KOListView::addEvents(QPtrList<Event> eventList) |
1008 | { | 1003 | { |
1009 | 1004 | ||
1010 | Event *ev; | 1005 | Event *ev; |
1011 | for(ev = eventList.first(); ev; ev = eventList.next()) { | 1006 | for(ev = eventList.first(); ev; ev = eventList.next()) { |
1012 | addIncidence(ev); | 1007 | addIncidence(ev); |
1013 | } | 1008 | } |
1014 | if ( !mListView->currentItem() ){ | 1009 | if ( !mListView->currentItem() ){ |
1015 | updateView(); | 1010 | updateView(); |
1016 | } | 1011 | } |
1017 | } | 1012 | } |
1018 | 1013 | ||
1019 | void KOListView::addTodos(QPtrList<Todo> eventList) | 1014 | void KOListView::addTodos(QPtrList<Todo> eventList) |
1020 | { | 1015 | { |
1021 | Todo *ev; | 1016 | Todo *ev; |
1022 | for(ev = eventList.first(); ev; ev = eventList.next()) { | 1017 | for(ev = eventList.first(); ev; ev = eventList.next()) { |
1023 | addIncidence(ev); | 1018 | addIncidence(ev); |
1024 | } | 1019 | } |
1025 | if ( !mListView->currentItem() ){ | 1020 | if ( !mListView->currentItem() ){ |
1026 | updateView(); | 1021 | updateView(); |
1027 | } | 1022 | } |
1028 | } | 1023 | } |
1029 | void KOListView::addJournals(QPtrList<Journal> eventList) | 1024 | void KOListView::addJournals(QPtrList<Journal> eventList) |
1030 | { | 1025 | { |
1031 | Journal *ev; | 1026 | Journal *ev; |
1032 | for(ev = eventList.first(); ev; ev = eventList.next()) { | 1027 | for(ev = eventList.first(); ev; ev = eventList.next()) { |
1033 | addIncidence(ev); | 1028 | addIncidence(ev); |
1034 | } | 1029 | } |
1035 | if ( !mListView->currentItem() ){ | 1030 | if ( !mListView->currentItem() ){ |
1036 | updateView(); | 1031 | updateView(); |
1037 | } | 1032 | } |
1038 | } | 1033 | } |
1039 | 1034 | ||
1040 | void KOListView::showCompletedTodos() | 1035 | void KOListView::showCompletedTodos() |
1041 | { | 1036 | { |
1042 | mForceShowCompletedTodos = true; | 1037 | mForceShowCompletedTodos = true; |
1043 | } | 1038 | } |
1044 | void KOListView::addIncidence(Incidence *incidence) | 1039 | void KOListView::addIncidence(Incidence *incidence) |
1045 | { | 1040 | { |
1046 | if ( mUidDict.find( incidence->uid() ) ) return; | 1041 | if ( mUidDict.find( incidence->uid() ) ) return; |
1047 | 1042 | ||
1048 | // mListView->setFont ( KOPrefs::instance()->mListViewFont ); | 1043 | // mListView->setFont ( KOPrefs::instance()->mListViewFont ); |
1049 | if ( incidence->typeID() == todoID ) { | 1044 | if ( incidence->typeID() == todoID ) { |
1050 | if ( ! mForceShowCompletedTodos ) { | 1045 | if ( ! mForceShowCompletedTodos ) { |
1051 | if ( !KOPrefs::instance()->mShowCompletedTodo && ((Todo*)incidence)->isCompleted() ) | 1046 | if ( !KOPrefs::instance()->mShowCompletedTodo && ((Todo*)incidence)->isCompleted() ) |
1052 | return; | 1047 | return; |
1053 | } | 1048 | } |
1054 | } | 1049 | } |
1055 | mUidDict.insert( incidence->uid(), incidence ); | 1050 | mUidDict.insert( incidence->uid(), incidence ); |
1056 | KOListViewItem *item = new KOListViewItem( incidence, mListView ); | 1051 | KOListViewItem *item = new KOListViewItem( incidence, mListView ); |
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 2289977..53bbe28 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp | |||
@@ -1015,1241 +1015,1307 @@ Incidence *MonthViewCell::selectedIncidence() | |||
1015 | QDate MonthViewCell::selectedIncidenceDate() | 1015 | QDate MonthViewCell::selectedIncidenceDate() |
1016 | { | 1016 | { |
1017 | QDate qd; | 1017 | QDate qd; |
1018 | int index = currentItem(); | 1018 | int index = currentItem(); |
1019 | if ( index < 0 ) return qd; | 1019 | if ( index < 0 ) return qd; |
1020 | return mDate; | 1020 | return mDate; |
1021 | } | 1021 | } |
1022 | 1022 | ||
1023 | void MonthViewCell::deselect() | 1023 | void MonthViewCell::deselect() |
1024 | { | 1024 | { |
1025 | clearSelection(); | 1025 | clearSelection(); |
1026 | enableScrollBars( false ); | 1026 | enableScrollBars( false ); |
1027 | // updateCell(); | 1027 | // updateCell(); |
1028 | } | 1028 | } |
1029 | void MonthViewCell::select() | 1029 | void MonthViewCell::select() |
1030 | { | 1030 | { |
1031 | ;// updateCell(); | 1031 | ;// updateCell(); |
1032 | } | 1032 | } |
1033 | 1033 | ||
1034 | void MonthViewCell::resizeEvent ( QResizeEvent * e ) | 1034 | void MonthViewCell::resizeEvent ( QResizeEvent * e ) |
1035 | { | 1035 | { |
1036 | if ( !mMonthView->isUpdatePossible() ) | 1036 | if ( !mMonthView->isUpdatePossible() ) |
1037 | return; | 1037 | return; |
1038 | //qDebug("++++++++++++++MonthViewCell::resizeEvent %d %d ", width(), height()); | 1038 | //qDebug("++++++++++++++MonthViewCell::resizeEvent %d %d ", width(), height()); |
1039 | deselect(); | 1039 | deselect(); |
1040 | mLabel->setMaximumHeight( height() - lineWidth()*2 ); | 1040 | mLabel->setMaximumHeight( height() - lineWidth()*2 ); |
1041 | 1041 | ||
1042 | QString text; | 1042 | QString text; |
1043 | //mLabel->setText( text ); | 1043 | //mLabel->setText( text ); |
1044 | bool smallDisplay = QApplication::desktop()->width() < 320 && KOPrefs::instance()->mMonthViewSatSunTog; | 1044 | bool smallDisplay = QApplication::desktop()->width() < 320 && KOPrefs::instance()->mMonthViewSatSunTog; |
1045 | if ( KOPrefs::instance()->mMonthViewWeek || KOGlobals::self()->calendarSystem()->day( mDate ) == 1 || (mDate.dayOfWeek() == 7 && !smallDisplay ) || KOPrefs::instance()->mMonthShowShort) { | 1045 | if ( KOPrefs::instance()->mMonthViewWeek || KOGlobals::self()->calendarSystem()->day( mDate ) == 1 || (mDate.dayOfWeek() == 7 && !smallDisplay ) || KOPrefs::instance()->mMonthShowShort) { |
1046 | text = KOGlobals::self()->calendarSystem()->monthName( mDate, true ) + " " + QString::number( mDate.day() ); | 1046 | text = KOGlobals::self()->calendarSystem()->monthName( mDate, true ) + " " + QString::number( mDate.day() ); |
1047 | mLabel->resize( mLabelBigSize ); | 1047 | mLabel->resize( mLabelBigSize ); |
1048 | } else { | 1048 | } else { |
1049 | mLabel->resize( mLabelSize ); | 1049 | mLabel->resize( mLabelSize ); |
1050 | text = QString::number( mDate.day() ); | 1050 | text = QString::number( mDate.day() ); |
1051 | } | 1051 | } |
1052 | mLabel->setText( text ); | 1052 | mLabel->setText( text ); |
1053 | 1053 | ||
1054 | int size = height() - mLabel->height() - lineWidth()-1; | 1054 | int size = height() - mLabel->height() - lineWidth()-1; |
1055 | //qDebug("LW %d ", lineWidth()); | 1055 | //qDebug("LW %d ", lineWidth()); |
1056 | if ( size > 0 ) | 1056 | if ( size > 0 ) |
1057 | verticalScrollBar()->setMaximumHeight( size ); | 1057 | verticalScrollBar()->setMaximumHeight( size ); |
1058 | size = width() - mLabel->width() -lineWidth()-1; | 1058 | size = width() - mLabel->width() -lineWidth()-1; |
1059 | if ( size > 0 ) | 1059 | if ( size > 0 ) |
1060 | horizontalScrollBar()->setMaximumWidth( size ); | 1060 | horizontalScrollBar()->setMaximumWidth( size ); |
1061 | mLabel->move( width()-lineWidth() - mLabel->width(), height()-lineWidth() - mLabel->height() ); | 1061 | mLabel->move( width()-lineWidth() - mLabel->width(), height()-lineWidth() - mLabel->height() ); |
1062 | //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); | 1062 | //mLabel->setMaximumWidth( width() - mItemList->lineWidth()*2); |
1063 | // mItemList->resize ( width(), height () ); | 1063 | // mItemList->resize ( width(), height () ); |
1064 | if ( e ) | 1064 | if ( e ) |
1065 | KNoScrollListBox::resizeEvent ( e ); | 1065 | KNoScrollListBox::resizeEvent ( e ); |
1066 | } | 1066 | } |
1067 | 1067 | ||
1068 | void MonthViewCell::defaultAction( QListBoxItem *item ) | 1068 | void MonthViewCell::defaultAction( QListBoxItem *item ) |
1069 | { | 1069 | { |
1070 | 1070 | ||
1071 | if ( !item ) { | 1071 | if ( !item ) { |
1072 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); | 1072 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); |
1073 | emit newEventSignal( dt ); | 1073 | emit newEventSignal( dt ); |
1074 | return; | 1074 | return; |
1075 | } | 1075 | } |
1076 | 1076 | ||
1077 | MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); | 1077 | MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); |
1078 | Incidence *incidence = eventItem->incidence(); | 1078 | Incidence *incidence = eventItem->incidence(); |
1079 | if ( incidence ) mMonthView->defaultAction( incidence ); | 1079 | if ( incidence ) mMonthView->defaultAction( incidence ); |
1080 | } | 1080 | } |
1081 | void MonthViewCell::showDay() | 1081 | void MonthViewCell::showDay() |
1082 | { | 1082 | { |
1083 | emit showDaySignal( date() ); | 1083 | emit showDaySignal( date() ); |
1084 | } | 1084 | } |
1085 | void MonthViewCell::newEvent() | 1085 | void MonthViewCell::newEvent() |
1086 | { | 1086 | { |
1087 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); | 1087 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); |
1088 | emit newEventSignal( dt ); | 1088 | emit newEventSignal( dt ); |
1089 | } | 1089 | } |
1090 | void MonthViewCell::cellClicked( QListBoxItem *item ) | 1090 | void MonthViewCell::cellClicked( QListBoxItem *item ) |
1091 | { | 1091 | { |
1092 | mMonthView->setSelectedCell( this ); | 1092 | mMonthView->setSelectedCell( this ); |
1093 | if ( item == 0 ) { | 1093 | if ( item == 0 ) { |
1094 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); | 1094 | QDateTime dt( date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); |
1095 | emit newEventSignal( dt ); | 1095 | emit newEventSignal( dt ); |
1096 | return; | 1096 | return; |
1097 | } | 1097 | } |
1098 | 1098 | ||
1099 | } | 1099 | } |
1100 | 1100 | ||
1101 | void MonthViewCell::contextMenu( QListBoxItem *item ) | 1101 | void MonthViewCell::contextMenu( QListBoxItem *item ) |
1102 | { | 1102 | { |
1103 | mMonthView->setPopupCell( this ); | 1103 | mMonthView->setPopupCell( this ); |
1104 | if ( !item ) { | 1104 | if ( !item ) { |
1105 | mMonthView->showContextMenu( 0 ); | 1105 | mMonthView->showContextMenu( 0 ); |
1106 | return; | 1106 | return; |
1107 | } | 1107 | } |
1108 | MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); | 1108 | MonthViewItem *eventItem = static_cast<MonthViewItem *>( item ); |
1109 | Incidence *incidence = eventItem->incidence(); | 1109 | Incidence *incidence = eventItem->incidence(); |
1110 | if ( incidence ) mMonthView->showContextMenu( incidence ); | 1110 | if ( incidence ) mMonthView->showContextMenu( incidence ); |
1111 | } | 1111 | } |
1112 | 1112 | ||
1113 | void MonthViewCell::selection( QListBoxItem *item ) | 1113 | void MonthViewCell::selection( QListBoxItem *item ) |
1114 | { | 1114 | { |
1115 | if ( !item ) { | 1115 | if ( !item ) { |
1116 | emit highlightIncidence( 0 , this, 0 ); | 1116 | emit highlightIncidence( 0 , this, 0 ); |
1117 | return; | 1117 | return; |
1118 | } | 1118 | } |
1119 | MonthViewItem * it = (static_cast<MonthViewItem *>( item )); | 1119 | MonthViewItem * it = (static_cast<MonthViewItem *>( item )); |
1120 | emit highlightIncidence( it->incidence(), this, it->multiDay() ); | 1120 | emit highlightIncidence( it->incidence(), this, it->multiDay() ); |
1121 | mMonthView->setSelectedCell( this ); | 1121 | mMonthView->setSelectedCell( this ); |
1122 | } | 1122 | } |
1123 | 1123 | ||
1124 | void MonthViewCell::deHighLight() | 1124 | void MonthViewCell::deHighLight() |
1125 | { | 1125 | { |
1126 | MonthViewItem *mitem = (MonthViewItem*) firstItem (); | 1126 | MonthViewItem *mitem = (MonthViewItem*) firstItem (); |
1127 | while ( mitem ) { | 1127 | while ( mitem ) { |
1128 | if ( mitem->setHighlightedFalse() ) | 1128 | if ( mitem->setHighlightedFalse() ) |
1129 | updateItem ( mitem ); | 1129 | updateItem ( mitem ); |
1130 | mitem = (MonthViewItem *)mitem->next(); | 1130 | mitem = (MonthViewItem *)mitem->next(); |
1131 | } | 1131 | } |
1132 | } | 1132 | } |
1133 | // returns true if no inc found | 1133 | // returns true if no inc found |
1134 | bool MonthViewCell::doHighLight( Incidence * inc ) | 1134 | bool MonthViewCell::doHighLight( Incidence * inc ) |
1135 | { | 1135 | { |
1136 | 1136 | ||
1137 | MonthViewItem *mitem = (MonthViewItem*) firstItem (); | 1137 | MonthViewItem *mitem = (MonthViewItem*) firstItem (); |
1138 | while ( mitem ) { | 1138 | while ( mitem ) { |
1139 | if ( mitem->incidence() == inc ) { | 1139 | if ( mitem->incidence() == inc ) { |
1140 | if ( mitem->setHighlighted( inc ) ) | 1140 | if ( mitem->setHighlighted( inc ) ) |
1141 | updateItem ( mitem ); | 1141 | updateItem ( mitem ); |
1142 | return false; | 1142 | return false; |
1143 | } | 1143 | } |
1144 | mitem = (MonthViewItem *)mitem->next(); | 1144 | mitem = (MonthViewItem *)mitem->next(); |
1145 | } | 1145 | } |
1146 | return true; | 1146 | return true; |
1147 | } | 1147 | } |
1148 | // ******************************************************************************* | 1148 | // ******************************************************************************* |
1149 | // ******************************************************************************* | 1149 | // ******************************************************************************* |
1150 | // ******************************************************************************* | 1150 | // ******************************************************************************* |
1151 | 1151 | ||
1152 | 1152 | ||
1153 | KOMonthView::KOMonthView(Calendar *calendar, QWidget *parent, const char *name) | 1153 | KOMonthView::KOMonthView(Calendar *calendar, QWidget *parent, const char *name) |
1154 | : KOEventView( calendar, parent, name ), | 1154 | : KOEventView( calendar, parent, name ), |
1155 | mDaysPerWeek( 7 ), mNumWeeks( 6 ), mNumCells( mDaysPerWeek * mNumWeeks ), | 1155 | mDaysPerWeek( 7 ), mNumWeeks( 6 ), mNumCells( mDaysPerWeek * mNumWeeks ), |
1156 | mWidthLongDayLabel( 0 ), mSelectedCell( 0 ) | 1156 | mWidthLongDayLabel( 0 ), mSelectedCell( 0 ) |
1157 | { | 1157 | { |
1158 | mFlagKeyPressed = false; | 1158 | mFlagKeyPressed = false; |
1159 | mShortDayLabelsM = false; | 1159 | mShortDayLabelsM = false; |
1160 | mShortDayLabelsW = false; | 1160 | mShortDayLabelsW = false; |
1161 | skipResize = false; | 1161 | skipResize = false; |
1162 | clPending = true; | 1162 | clPending = true; |
1163 | mPopupCell = 0; | 1163 | mPopupCell = 0; |
1164 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), this, "useBigPixmaps" ); | 1164 | mNavigatorBar = new NavigatorBar( QDate::currentDate(), this, "useBigPixmaps" ); |
1165 | mWidStack = new QWidgetStack( this ); | 1165 | mWidStack = new QWidgetStack( this ); |
1166 | QVBoxLayout* hb = new QVBoxLayout( this ); | 1166 | QVBoxLayout* hb = new QVBoxLayout( this ); |
1167 | mMonthView = new QWidget( mWidStack ); | 1167 | mMonthView = new QWidget( mWidStack ); |
1168 | mWeekView = new QWidget( mWidStack ); | 1168 | mWeekView = new QWidget( mWidStack ); |
1169 | #if QT_VERSION >= 0x030000 | 1169 | #if QT_VERSION >= 0x030000 |
1170 | mWidStack->addWidget(mMonthView ); | 1170 | mWidStack->addWidget(mMonthView ); |
1171 | mWidStack->addWidget(mWeekView ); | 1171 | mWidStack->addWidget(mWeekView ); |
1172 | #else | 1172 | #else |
1173 | mWidStack->addWidget( mMonthView, 1 ); | 1173 | mWidStack->addWidget( mMonthView, 1 ); |
1174 | mWidStack->addWidget( mWeekView , 1 ); | 1174 | mWidStack->addWidget( mWeekView , 1 ); |
1175 | #endif | 1175 | #endif |
1176 | hb->addWidget( mNavigatorBar ); | 1176 | hb->addWidget( mNavigatorBar ); |
1177 | hb->addWidget( mWidStack ); | 1177 | hb->addWidget( mWidStack ); |
1178 | mShowWeekView = KOPrefs::instance()->mMonthViewWeek; | 1178 | mShowWeekView = KOPrefs::instance()->mMonthViewWeek; |
1179 | updatePossible = false; | 1179 | updatePossible = false; |
1180 | //updatePossible = true; | 1180 | //updatePossible = true; |
1181 | mCells.setAutoDelete( true ); | 1181 | mCells.setAutoDelete( true ); |
1182 | mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; | 1182 | mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; |
1183 | mDayLabels.resize( mDaysPerWeek ); | 1183 | mDayLabels.resize( mDaysPerWeek ); |
1184 | mDayLabelsW.resize( mDaysPerWeek ); | 1184 | mDayLabelsW.resize( mDaysPerWeek ); |
1185 | QFont bfont = font(); | 1185 | QFont bfont = font(); |
1186 | if ( QApplication::desktop()->width() < 650 ) { | 1186 | if ( QApplication::desktop()->width() < 650 ) { |
1187 | bfont.setPointSize( bfont.pointSize() - 2 ); | 1187 | bfont.setPointSize( bfont.pointSize() - 2 ); |
1188 | } | 1188 | } |
1189 | bfont.setBold( true ); | 1189 | bfont.setBold( true ); |
1190 | int i; | 1190 | int i; |
1191 | 1191 | ||
1192 | for( i = 0; i < mDaysPerWeek; i++ ) { | 1192 | for( i = 0; i < mDaysPerWeek; i++ ) { |
1193 | QLabel *label = new QLabel( mMonthView ); | 1193 | QLabel *label = new QLabel( mMonthView ); |
1194 | label->setFont(bfont); | 1194 | label->setFont(bfont); |
1195 | label->setFrameStyle(QFrame::Panel|QFrame::Raised); | 1195 | label->setFrameStyle(QFrame::Panel|QFrame::Raised); |
1196 | label->setLineWidth(1); | 1196 | label->setLineWidth(1); |
1197 | label->setAlignment(AlignCenter); | 1197 | label->setAlignment(AlignCenter); |
1198 | mDayLabels.insert( i, label ); | 1198 | mDayLabels.insert( i, label ); |
1199 | label = new QLabel( mWeekView ); | 1199 | label = new QLabel( mWeekView ); |
1200 | label->setFont(bfont); | 1200 | label->setFont(bfont); |
1201 | label->setFrameStyle(QFrame::Panel|QFrame::Raised); | 1201 | label->setFrameStyle(QFrame::Panel|QFrame::Raised); |
1202 | label->setLineWidth(1); | 1202 | label->setLineWidth(1); |
1203 | label->setAlignment(AlignCenter); | 1203 | label->setAlignment(AlignCenter); |
1204 | mDayLabelsW.insert( i, label ); | 1204 | mDayLabelsW.insert( i, label ); |
1205 | } | 1205 | } |
1206 | 1206 | ||
1207 | bfont.setBold( false ); | 1207 | bfont.setBold( false ); |
1208 | mWeekLabels.resize( mNumWeeks+1 ); | 1208 | mWeekLabels.resize( mNumWeeks+1 ); |
1209 | mWeekLabelsW.resize( 2 ); | 1209 | mWeekLabelsW.resize( 2 ); |
1210 | for( i = 0; i < mNumWeeks+1; i++ ) { | 1210 | for( i = 0; i < mNumWeeks+1; i++ ) { |
1211 | KOWeekButton *label = new KOWeekButton( mMonthView ); | 1211 | KOWeekButton *label = new KOWeekButton( mMonthView ); |
1212 | label->setFocusPolicy(NoFocus); | 1212 | label->setFocusPolicy(NoFocus); |
1213 | label->setFont(bfont); | 1213 | label->setFont(bfont); |
1214 | connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); | 1214 | connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); |
1215 | label->setFlat(true); | 1215 | label->setFlat(true); |
1216 | QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); | 1216 | QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); |
1217 | //label->setFrameStyle(QFrame::Panel|QFrame::Raised); | 1217 | //label->setFrameStyle(QFrame::Panel|QFrame::Raised); |
1218 | //label->setLineWidth(1); | 1218 | //label->setLineWidth(1); |
1219 | //label->setAlignment(AlignCenter); | 1219 | //label->setAlignment(AlignCenter); |
1220 | mWeekLabels.insert( i, label ); | 1220 | mWeekLabels.insert( i, label ); |
1221 | } | 1221 | } |
1222 | mWeekLabels[mNumWeeks]->setText( i18n("W")); | 1222 | mWeekLabels[mNumWeeks]->setText( i18n("W")); |
1223 | mWeekLabels[mNumWeeks]->setFocusPolicy(WheelFocus); | 1223 | mWeekLabels[mNumWeeks]->setFocusPolicy(WheelFocus); |
1224 | QWhatsThis::add(mWeekLabels[mNumWeeks],i18n("Click on this to\nselect week number")); | 1224 | QWhatsThis::add(mWeekLabels[mNumWeeks],i18n("Click on this to\nselect week number")); |
1225 | 1225 | ||
1226 | for( i = 0; i < 1+1; i++ ) { | 1226 | for( i = 0; i < 1+1; i++ ) { |
1227 | KOWeekButton *label = new KOWeekButton( mWeekView ); | 1227 | KOWeekButton *label = new KOWeekButton( mWeekView ); |
1228 | label->setFocusPolicy(NoFocus); | 1228 | label->setFocusPolicy(NoFocus); |
1229 | label->setFont(bfont); | 1229 | label->setFont(bfont); |
1230 | connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); | 1230 | connect( label, SIGNAL( selectWeekNum ( int )),this, SLOT( selectInternalWeekNum ( int )) ); |
1231 | label->setFlat(true); | 1231 | label->setFlat(true); |
1232 | QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); | 1232 | QWhatsThis::add(label,i18n("Click on the week number to\nshow week zoomed")); |
1233 | //label->setFrameStyle(QFrame::Panel|QFrame::Raised); | 1233 | //label->setFrameStyle(QFrame::Panel|QFrame::Raised); |
1234 | //label->setLineWidth(1); | 1234 | //label->setLineWidth(1); |
1235 | //label->setAlignment(AlignCenter); | 1235 | //label->setAlignment(AlignCenter); |
1236 | mWeekLabelsW.insert( i, label ); | 1236 | mWeekLabelsW.insert( i, label ); |
1237 | } | 1237 | } |
1238 | mWeekLabelsW[1]->setText( i18n("W")); | 1238 | mWeekLabelsW[1]->setText( i18n("W")); |
1239 | mWeekLabelsW[1]->setFocusPolicy(WheelFocus); | 1239 | mWeekLabelsW[1]->setFocusPolicy(WheelFocus); |
1240 | 1240 | ||
1241 | 1241 | ||
1242 | int row, col; | 1242 | int row, col; |
1243 | mCells.resize( mNumCells ); | 1243 | mCells.resize( mNumCells ); |
1244 | for( row = 0; row < mNumWeeks; ++row ) { | 1244 | for( row = 0; row < mNumWeeks; ++row ) { |
1245 | for( col = 0; col < mDaysPerWeek; ++col ) { | 1245 | for( col = 0; col < mDaysPerWeek; ++col ) { |
1246 | MonthViewCell *cell = new MonthViewCell( this, mMonthView ); | 1246 | MonthViewCell *cell = new MonthViewCell( this, mMonthView ); |
1247 | mCells.insert( row * mDaysPerWeek + col, cell ); | 1247 | mCells.insert( row * mDaysPerWeek + col, cell ); |
1248 | 1248 | ||
1249 | connect( cell, SIGNAL( defaultAction( Incidence * ) ), | 1249 | connect( cell, SIGNAL( defaultAction( Incidence * ) ), |
1250 | SLOT( defaultAction( Incidence * ) ) ); | 1250 | SLOT( defaultAction( Incidence * ) ) ); |
1251 | connect( cell, SIGNAL( newEventSignal( QDateTime ) ), | 1251 | connect( cell, SIGNAL( newEventSignal( QDateTime ) ), |
1252 | SIGNAL( newEventSignal( QDateTime ) ) ); | 1252 | SIGNAL( newEventSignal( QDateTime ) ) ); |
1253 | connect( cell, SIGNAL( showDaySignal( QDate ) ), | 1253 | connect( cell, SIGNAL( showDaySignal( QDate ) ), |
1254 | SIGNAL( showDaySignal( QDate ) ) ); | 1254 | SIGNAL( showDaySignal( QDate ) ) ); |
1255 | connect( cell, SIGNAL( nextCell() ), | 1255 | connect( cell, SIGNAL( nextCell() ), |
1256 | SLOT( nextCell() ) ); | 1256 | SLOT( nextCell() ) ); |
1257 | connect( cell, SIGNAL( prevCell() ), | 1257 | connect( cell, SIGNAL( prevCell() ), |
1258 | SLOT( prevCell() ) ); | 1258 | SLOT( prevCell() ) ); |
1259 | connect( cell, SIGNAL( highlightIncidence( Incidence * , MonthViewCell *, int ) ), | 1259 | connect( cell, SIGNAL( highlightIncidence( Incidence * , MonthViewCell *, int ) ), |
1260 | SLOT( incidenceHighlighted( Incidence *, MonthViewCell *, int ) )); | 1260 | SLOT( incidenceHighlighted( Incidence *, MonthViewCell *, int ) )); |
1261 | } | 1261 | } |
1262 | } | 1262 | } |
1263 | mCellsW.resize( mDaysPerWeek ); | 1263 | mCellsW.resize( mDaysPerWeek ); |
1264 | for( col = 0; col < mDaysPerWeek; ++col ) { | 1264 | for( col = 0; col < mDaysPerWeek; ++col ) { |
1265 | MonthViewCell *cell = new MonthViewCell( this, mWeekView ); | 1265 | MonthViewCell *cell = new MonthViewCell( this, mWeekView ); |
1266 | mCellsW.insert( col, cell ); | 1266 | mCellsW.insert( col, cell ); |
1267 | 1267 | ||
1268 | connect( cell, SIGNAL( defaultAction( Incidence * ) ), | 1268 | connect( cell, SIGNAL( defaultAction( Incidence * ) ), |
1269 | SLOT( defaultAction( Incidence * ) ) ); | 1269 | SLOT( defaultAction( Incidence * ) ) ); |
1270 | connect( cell, SIGNAL( newEventSignal( QDateTime ) ), | 1270 | connect( cell, SIGNAL( newEventSignal( QDateTime ) ), |
1271 | SIGNAL( newEventSignal( QDateTime ) ) ); | 1271 | SIGNAL( newEventSignal( QDateTime ) ) ); |
1272 | connect( cell, SIGNAL( showDaySignal( QDate ) ), | 1272 | connect( cell, SIGNAL( showDaySignal( QDate ) ), |
1273 | SIGNAL( showDaySignal( QDate ) ) ); | 1273 | SIGNAL( showDaySignal( QDate ) ) ); |
1274 | connect( cell, SIGNAL( nextCell() ), | 1274 | connect( cell, SIGNAL( nextCell() ), |
1275 | SLOT( nextCell() ) ); | 1275 | SLOT( nextCell() ) ); |
1276 | connect( cell, SIGNAL( prevCell() ), | 1276 | connect( cell, SIGNAL( prevCell() ), |
1277 | SLOT( prevCell() ) ); | 1277 | SLOT( prevCell() ) ); |
1278 | connect( cell, SIGNAL( highlightIncidence( Incidence * , MonthViewCell *, int ) ), | 1278 | connect( cell, SIGNAL( highlightIncidence( Incidence * , MonthViewCell *, int ) ), |
1279 | SLOT( incidenceHighlighted( Incidence *, MonthViewCell *, int ) )); | 1279 | SLOT( incidenceHighlighted( Incidence *, MonthViewCell *, int ) )); |
1280 | cell->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont ); | 1280 | cell->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont ); |
1281 | } | 1281 | } |
1282 | 1282 | ||
1283 | //connect( mWeekLabels[mNumWeeks], SIGNAL( clicked() ), SLOT( switchView() ) ); | 1283 | //connect( mWeekLabels[mNumWeeks], SIGNAL( clicked() ), SLOT( switchView() ) ); |
1284 | mContextMenu = eventPopup(); | 1284 | mContextMenu = eventPopup(); |
1285 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), | 1285 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), |
1286 | i18n("New Event..."),this, | 1286 | i18n("New Event..."),this, |
1287 | SLOT(slotNewEvent()),false); | 1287 | SLOT(slotNewEvent()),false); |
1288 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), | 1288 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), |
1289 | i18n("New Todo..."),this, | 1289 | i18n("New Todo..."),this, |
1290 | SLOT(slotNewTodo()),false); | 1290 | SLOT(slotNewTodo()),false); |
1291 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), | 1291 | mContextMenu->addAdditionalItem(QIconSet(QPixmap()), |
1292 | i18n("Journal"),this, | 1292 | i18n("Journal"),this, |
1293 | SLOT(slotEditJournal()),false); | 1293 | SLOT(slotEditJournal()),false); |
1294 | 1294 | ||
1295 | connect (mContextMenu ,SIGNAL(categoryChanged( Incidence * )),this, | 1295 | connect (mContextMenu ,SIGNAL(categoryChanged( Incidence * )),this, |
1296 | SLOT( catChanged( Incidence * ) )); | 1296 | SLOT( catChanged( Incidence * ) )); |
1297 | 1297 | ||
1298 | 1298 | ||
1299 | QString pathString = ""; | 1299 | QString pathString = ""; |
1300 | if ( !KOPrefs::instance()->mToolBarMiniIcons ) { | 1300 | if ( !KOPrefs::instance()->mToolBarMiniIcons ) { |
1301 | if ( QApplication::desktop()->width() < 480 ) | 1301 | if ( QApplication::desktop()->width() < 480 ) |
1302 | pathString += "icons16/"; | 1302 | pathString += "icons16/"; |
1303 | } else | 1303 | } else |
1304 | pathString += "iconsmini/"; | 1304 | pathString += "iconsmini/"; |
1305 | mNewItemMenu = new QPopupMenu( this ); | 1305 | mNewItemMenu = new QPopupMenu( this ); |
1306 | mNewItemMenu->insertItem( SmallIcon( pathString +"newevent" ), i18n("New Event..."),this, SLOT(slotNewEvent())); | 1306 | mNewItemMenu->insertItem( SmallIcon( pathString +"newevent" ), i18n("New Event..."),this, SLOT(slotNewEvent())); |
1307 | mNewItemMenu->insertItem( SmallIcon( pathString +"newtodo" ),i18n("New Todo..."),this,SLOT(slotNewTodo()),false); | 1307 | mNewItemMenu->insertItem( SmallIcon( pathString +"newtodo" ),i18n("New Todo..."),this,SLOT(slotNewTodo()),false); |
1308 | mNewItemMenu->insertItem( SmallIcon( pathString +"journal" ),i18n("Journal"),this,SLOT(slotEditJournal()),false); | 1308 | mNewItemMenu->insertItem( SmallIcon( pathString +"journal" ),i18n("Journal"),this,SLOT(slotEditJournal()),false); |
1309 | 1309 | ||
1310 | // updateConfig(); //useless here... | 1310 | // updateConfig(); //useless here... |
1311 | // ... but we need mWidthLongDayLabel computed | 1311 | // ... but we need mWidthLongDayLabel computed |
1312 | QFontMetrics fontmetric(mDayLabels[0]->font()); | 1312 | QFontMetrics fontmetric(mDayLabels[0]->font()); |
1313 | mWidthLongDayLabel = 0; | 1313 | mWidthLongDayLabel = 0; |
1314 | for (int i = 0; i < 7; i++) { | 1314 | for (int i = 0; i < 7; i++) { |
1315 | int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); | 1315 | int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); |
1316 | if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; | 1316 | if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; |
1317 | } | 1317 | } |
1318 | 1318 | ||
1319 | //mWeekLabels[mNumWeeks]->setText( i18n("W")); | 1319 | //mWeekLabels[mNumWeeks]->setText( i18n("W")); |
1320 | 1320 | ||
1321 | #if 0 | 1321 | #if 0 |
1322 | if ( mShowWeekView ) | 1322 | if ( mShowWeekView ) |
1323 | mWidStack->raiseWidget( mWeekView ); | 1323 | mWidStack->raiseWidget( mWeekView ); |
1324 | else | 1324 | else |
1325 | mWidStack->raiseWidget( mMonthView ); | 1325 | mWidStack->raiseWidget( mMonthView ); |
1326 | #endif | 1326 | #endif |
1327 | 1327 | ||
1328 | emit incidenceSelected( 0 ); | 1328 | emit incidenceSelected( 0 ); |
1329 | 1329 | ||
1330 | mComputeLayoutTimer = new QTimer( this ); | 1330 | mComputeLayoutTimer = new QTimer( this ); |
1331 | connect (mComputeLayoutTimer ,SIGNAL(timeout()), this, SLOT ( slotComputeLayout())); | 1331 | connect (mComputeLayoutTimer ,SIGNAL(timeout()), this, SLOT ( slotComputeLayout())); |
1332 | 1332 | ||
1333 | 1333 | ||
1334 | #ifndef DESKTOP_VERSION | 1334 | #ifndef DESKTOP_VERSION |
1335 | resize( QApplication::desktop()->size() ); | 1335 | resize( QApplication::desktop()->size() ); |
1336 | #else | 1336 | #else |
1337 | resize(640, 480 ); | 1337 | resize(640, 480 ); |
1338 | updatePossible = true; | 1338 | updatePossible = true; |
1339 | #endif | 1339 | #endif |
1340 | computeLayout(); | 1340 | computeLayout(); |
1341 | 1341 | ||
1342 | if ( mShowWeekView ) | 1342 | if ( mShowWeekView ) |
1343 | mWidStack->raiseWidget( mWeekView ); | 1343 | mWidStack->raiseWidget( mWeekView ); |
1344 | else | 1344 | else |
1345 | mWidStack->raiseWidget( mMonthView ); | 1345 | mWidStack->raiseWidget( mMonthView ); |
1346 | } | 1346 | } |
1347 | 1347 | ||
1348 | KOMonthView::~KOMonthView() | 1348 | KOMonthView::~KOMonthView() |
1349 | { | 1349 | { |
1350 | delete mContextMenu; | 1350 | delete mContextMenu; |
1351 | } | 1351 | } |
1352 | 1352 | ||
1353 | void KOMonthView::catChanged( Incidence * ) | 1353 | void KOMonthView::catChanged( Incidence * ) |
1354 | { | 1354 | { |
1355 | updateView(); | 1355 | updateView(); |
1356 | } | 1356 | } |
1357 | void KOMonthView::incidenceHighlighted( Incidence * inc , MonthViewCell* mc, int mday ) | 1357 | void KOMonthView::incidenceHighlighted( Incidence * inc , MonthViewCell* mc, int mday ) |
1358 | { | 1358 | { |
1359 | static Incidence * lastInc = 0; | 1359 | static Incidence * lastInc = 0; |
1360 | static MonthViewCell * lastCell = 0; | 1360 | static MonthViewCell * lastCell = 0; |
1361 | 1361 | ||
1362 | if ( lastInc == inc && lastCell == mc ) | 1362 | if ( lastInc == inc && lastCell == mc ) |
1363 | return; | 1363 | return; |
1364 | lastInc = inc; | 1364 | lastInc = inc; |
1365 | lastCell = mc; | 1365 | lastCell = mc; |
1366 | //qDebug("KOMonthView::incidenceHighlighted %d %d %d", inc, mc, mday ); | 1366 | //qDebug("KOMonthView::incidenceHighlighted %d %d %d", inc, mc, mday ); |
1367 | 1367 | ||
1368 | bool weekview = false; | 1368 | bool weekview = false; |
1369 | uint index = 0; | 1369 | uint index = 0; |
1370 | for (uint i = 0; i < mCellsW.count(); ++i) { | 1370 | for (uint i = 0; i < mCellsW.count(); ++i) { |
1371 | if ( mCellsW[i] == mc ) { | 1371 | if ( mCellsW[i] == mc ) { |
1372 | weekview = true; | 1372 | weekview = true; |
1373 | index = i; | 1373 | index = i; |
1374 | break; | 1374 | break; |
1375 | } | 1375 | } |
1376 | } | 1376 | } |
1377 | QPtrVector<MonthViewCell> *cells; | 1377 | QPtrVector<MonthViewCell> *cells; |
1378 | if ( weekview ) | 1378 | if ( weekview ) |
1379 | cells = &mCellsW; | 1379 | cells = &mCellsW; |
1380 | else { | 1380 | else { |
1381 | for (uint i = 0; i < mCells.count(); ++i) { | 1381 | for (uint i = 0; i < mCells.count(); ++i) { |
1382 | if ( mCells[i] == mc ) { | 1382 | if ( mCells[i] == mc ) { |
1383 | index = i; | 1383 | index = i; |
1384 | break; | 1384 | break; |
1385 | } | 1385 | } |
1386 | } | 1386 | } |
1387 | cells = &mCells; | 1387 | cells = &mCells; |
1388 | } | 1388 | } |
1389 | for (uint i = 0; i < (*cells).count(); ++i) { | 1389 | for (uint i = 0; i < (*cells).count(); ++i) { |
1390 | (*cells)[i]->deHighLight(); | 1390 | (*cells)[i]->deHighLight(); |
1391 | } | 1391 | } |
1392 | if ( ! inc ) | 1392 | if ( ! inc ) |
1393 | return; | 1393 | return; |
1394 | 1394 | ||
1395 | uint count = (*cells).count(); | 1395 | uint count = (*cells).count(); |
1396 | bool goLeft = (mday > 1 && index > 0); | 1396 | bool goLeft = (mday > 1 && index > 0); |
1397 | bool goRight = (mday < 3 && mday > 0 && index < count -1); | 1397 | bool goRight = (mday < 3 && mday > 0 && index < count -1); |
1398 | for (uint iii = 1; iii < count; ++iii) { | 1398 | for (uint iii = 1; iii < count; ++iii) { |
1399 | if ( goLeft ) { | 1399 | if ( goLeft ) { |
1400 | int left = index - iii; | 1400 | int left = index - iii; |
1401 | if ( left >= 0 ) { | 1401 | if ( left >= 0 ) { |
1402 | if ( (*cells)[(uint)left]->doHighLight(inc) ) | 1402 | if ( (*cells)[(uint)left]->doHighLight(inc) ) |
1403 | goLeft = false; | 1403 | goLeft = false; |
1404 | } else | 1404 | } else |
1405 | goLeft = false; | 1405 | goLeft = false; |
1406 | } | 1406 | } |
1407 | if ( goRight ) { | 1407 | if ( goRight ) { |
1408 | uint right = index + iii; | 1408 | uint right = index + iii; |
1409 | if ( right < count ) { | 1409 | if ( right < count ) { |
1410 | if ( (*cells)[right]->doHighLight(inc) ) | 1410 | if ( (*cells)[right]->doHighLight(inc) ) |
1411 | goRight = false; | 1411 | goRight = false; |
1412 | 1412 | ||
1413 | } else | 1413 | } else |
1414 | goRight = false; | 1414 | goRight = false; |
1415 | } | 1415 | } |
1416 | 1416 | ||
1417 | } | 1417 | } |
1418 | #if 0 | 1418 | #if 0 |
1419 | if ( mday > 1 && index > 0 ) | 1419 | if ( mday > 1 && index > 0 ) |
1420 | for (int i = index-1; i >= 0; --i) { | 1420 | for (int i = index-1; i >= 0; --i) { |
1421 | //qDebug("index %d iii %d ", index, i); | 1421 | //qDebug("index %d iii %d ", index, i); |
1422 | if ( (*cells)[(uint)i]->doHighLight(inc) ) | 1422 | if ( (*cells)[(uint)i]->doHighLight(inc) ) |
1423 | break; | 1423 | break; |
1424 | } | 1424 | } |
1425 | if ( mday < 3 && mday > 0 && index < (*cells).count()-1) | 1425 | if ( mday < 3 && mday > 0 && index < (*cells).count()-1) |
1426 | for (uint i = index+1; i < (*cells).count(); ++i) { | 1426 | for (uint i = index+1; i < (*cells).count(); ++i) { |
1427 | if ( (*cells)[i]->doHighLight(inc) ) | 1427 | if ( (*cells)[i]->doHighLight(inc) ) |
1428 | break; | 1428 | break; |
1429 | } | 1429 | } |
1430 | #endif | 1430 | #endif |
1431 | 1431 | ||
1432 | } | 1432 | } |
1433 | void KOMonthView::selectInternalWeekNum ( int n ) | 1433 | void KOMonthView::selectInternalWeekNum ( int n ) |
1434 | { | 1434 | { |
1435 | switchView(); | 1435 | switchView(); |
1436 | if ( !KOPrefs::instance()->mMonthViewWeek ) | 1436 | if ( !KOPrefs::instance()->mMonthViewWeek ) |
1437 | emit selectMonth (); | 1437 | emit selectMonth (); |
1438 | else | 1438 | else |
1439 | emit selectWeekNum ( n ); | 1439 | emit selectWeekNum ( n ); |
1440 | } | 1440 | } |
1441 | 1441 | ||
1442 | int KOMonthView::currentWeek() | 1442 | int KOMonthView::currentWeek() |
1443 | { | 1443 | { |
1444 | if ( mShowWeekView ) | 1444 | if ( mShowWeekView ) |
1445 | return mWeekLabelsW[0]->getWeekNum(); | 1445 | return mWeekLabelsW[0]->getWeekNum(); |
1446 | return mWeekLabels[0]->getWeekNum(); | 1446 | return mWeekLabels[0]->getWeekNum(); |
1447 | } | 1447 | } |
1448 | void KOMonthView::switchView() | 1448 | void KOMonthView::switchView() |
1449 | { | 1449 | { |
1450 | if ( selectedCell( ) ) | 1450 | if ( selectedCell( ) ) |
1451 | selectedCell()->deselect(); | 1451 | selectedCell()->deselect(); |
1452 | mShowWeekView = !mShowWeekView; | 1452 | mShowWeekView = !mShowWeekView; |
1453 | KOPrefs::instance()->mMonthViewWeek = mShowWeekView; | 1453 | KOPrefs::instance()->mMonthViewWeek = mShowWeekView; |
1454 | if ( clPending ) { | 1454 | if ( clPending ) { |
1455 | computeLayout(); | 1455 | computeLayout(); |
1456 | updateConfig(); | 1456 | updateConfig(); |
1457 | } | 1457 | } |
1458 | if ( mShowWeekView ) | 1458 | if ( mShowWeekView ) |
1459 | mWidStack->raiseWidget( mWeekView ); | 1459 | mWidStack->raiseWidget( mWeekView ); |
1460 | else | 1460 | else |
1461 | mWidStack->raiseWidget( mMonthView ); | 1461 | mWidStack->raiseWidget( mMonthView ); |
1462 | clPending = false; | 1462 | clPending = false; |
1463 | } | 1463 | } |
1464 | 1464 | ||
1465 | int KOMonthView::maxDatesHint() | 1465 | int KOMonthView::maxDatesHint() |
1466 | { | 1466 | { |
1467 | return mNumCells; | 1467 | return mNumCells; |
1468 | } | 1468 | } |
1469 | 1469 | ||
1470 | int KOMonthView::currentDateCount() | 1470 | int KOMonthView::currentDateCount() |
1471 | { | 1471 | { |
1472 | return mNumCells; | 1472 | return mNumCells; |
1473 | } | 1473 | } |
1474 | 1474 | ||
1475 | QPtrList<Incidence> KOMonthView::selectedIncidences() | 1475 | QPtrList<Incidence> KOMonthView::selectedIncidences() |
1476 | { | 1476 | { |
1477 | QPtrList<Incidence> selected; | 1477 | QPtrList<Incidence> selected; |
1478 | 1478 | ||
1479 | if ( mSelectedCell ) { | 1479 | if ( mSelectedCell ) { |
1480 | Incidence *incidence = mSelectedCell->selectedIncidence(); | 1480 | Incidence *incidence = mSelectedCell->selectedIncidence(); |
1481 | if ( incidence ) selected.append( incidence ); | 1481 | if ( incidence ) selected.append( incidence ); |
1482 | } | 1482 | } |
1483 | 1483 | ||
1484 | return selected; | 1484 | return selected; |
1485 | } | 1485 | } |
1486 | 1486 | ||
1487 | DateList KOMonthView::selectedDates() | 1487 | DateList KOMonthView::selectedDates() |
1488 | { | 1488 | { |
1489 | DateList selected; | 1489 | DateList selected; |
1490 | 1490 | ||
1491 | if ( mSelectedCell ) { | 1491 | if ( mSelectedCell ) { |
1492 | QDate qd = mSelectedCell->selectedIncidenceDate(); | 1492 | QDate qd = mSelectedCell->selectedIncidenceDate(); |
1493 | if ( qd.isValid() ) selected.append( qd ); | 1493 | if ( qd.isValid() ) selected.append( qd ); |
1494 | } | 1494 | } |
1495 | 1495 | ||
1496 | return selected; | 1496 | return selected; |
1497 | } | 1497 | } |
1498 | #if 0 | 1498 | #if 0 |
1499 | void KOMonthView::printPreview(CalPrinter *calPrinter, const QDate &fd, | 1499 | void KOMonthView::printPreview(CalPrinter *calPrinter, const QDate &fd, |
1500 | const QDate &td) | 1500 | const QDate &td) |
1501 | { | 1501 | { |
1502 | #ifndef KORG_NOPRINTER | 1502 | #ifndef KORG_NOPRINTER |
1503 | calPrinter->preview(CalPrinter::Month, fd, td); | 1503 | calPrinter->preview(CalPrinter::Month, fd, td); |
1504 | #endif | 1504 | #endif |
1505 | } | 1505 | } |
1506 | #endif | 1506 | #endif |
1507 | void KOMonthView::updateConfig() | 1507 | void KOMonthView::updateConfig() |
1508 | { | 1508 | { |
1509 | 1509 | ||
1510 | int mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); | 1510 | int mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); |
1511 | 1511 | ||
1512 | if ( mShowWeekView || KOPrefs::instance()->mMonthViewSatSunTog ) { | 1512 | if ( mShowWeekView || KOPrefs::instance()->mMonthViewSatSunTog ) { |
1513 | mWeekStartsMonday = true; | 1513 | mWeekStartsMonday = true; |
1514 | } | 1514 | } |
1515 | QFontMetrics fontmetric(mDayLabels[0]->font()); | 1515 | QFontMetrics fontmetric(mDayLabels[0]->font()); |
1516 | mWidthLongDayLabel = 0; | 1516 | mWidthLongDayLabel = 0; |
1517 | 1517 | ||
1518 | for (int i = 0; i < 7; i++) { | 1518 | for (int i = 0; i < 7; i++) { |
1519 | int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); | 1519 | int width = fontmetric.width(KOGlobals::self()->calendarSystem()->weekDayName(i+1)); |
1520 | if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; | 1520 | if ( width > mWidthLongDayLabel ) mWidthLongDayLabel = width; |
1521 | } | 1521 | } |
1522 | bool temp = mShowSatSunComp ; | 1522 | bool temp = mShowSatSunComp ; |
1523 | mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; | 1523 | mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ; |
1524 | if ( ! mShowWeekView ) { | 1524 | if ( ! mShowWeekView ) { |
1525 | if ( temp != KOPrefs::instance()->mMonthViewSatSunTog ) | 1525 | if ( temp != KOPrefs::instance()->mMonthViewSatSunTog ) |
1526 | computeLayout(); | 1526 | computeLayout(); |
1527 | } | 1527 | } else |
1528 | doComputeLayoutWeek(); | ||
1528 | updateDayLabels(); | 1529 | updateDayLabels(); |
1529 | //qDebug("KOMonthView::updateConfig() %d %d %d ",height(), mDayLabels[0]->sizeHint().height() ,mNumWeeks); | 1530 | //qDebug("KOMonthView::updateConfig() %d %d %d ",height(), mDayLabels[0]->sizeHint().height() ,mNumWeeks); |
1530 | //int cellHeight = (height() - mDayLabels[0]->sizeHint().height()) /mNumWeeks; | 1531 | //int cellHeight = (height() - mDayLabels[0]->sizeHint().height()) /mNumWeeks; |
1531 | //resizeEvent( 0 ); | 1532 | //resizeEvent( 0 ); |
1532 | for (uint i = 0; i < mCells.count(); ++i) { | 1533 | for (uint i = 0; i < mCells.count(); ++i) { |
1533 | mCells[i]->updateConfig(); | 1534 | mCells[i]->updateConfig(); |
1534 | } | 1535 | } |
1535 | 1536 | ||
1536 | for (uint i = 0; i < mCellsW.count(); ++i) { | 1537 | for (uint i = 0; i < mCellsW.count(); ++i) { |
1537 | mCellsW[i]->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont); | 1538 | mCellsW[i]->updateConfig(KOPrefs::instance()->mMonthViewUsesBigFont); |
1538 | } | 1539 | } |
1539 | #ifdef DESKTOP_VERSION | 1540 | #ifdef DESKTOP_VERSION |
1540 | MonthViewCell::toolTipGroup()->setEnabled(KOPrefs::instance()->mEnableToolTips); | 1541 | MonthViewCell::toolTipGroup()->setEnabled(KOPrefs::instance()->mEnableToolTips); |
1541 | #endif | 1542 | #endif |
1542 | updateView(); | 1543 | updateView(); |
1543 | } | 1544 | } |
1544 | 1545 | ||
1545 | void KOMonthView::updateDayLabels() | 1546 | void KOMonthView::updateDayLabels() |
1546 | { | 1547 | { |
1547 | 1548 | ||
1548 | QPtrVector<QLabel> *mDayLabelsT; | 1549 | QPtrVector<QLabel> *mDayLabelsT; |
1549 | 1550 | ||
1550 | mDayLabelsT = &mDayLabelsW; | 1551 | mDayLabelsT = &mDayLabelsW; |
1551 | for (int i = 0; i < 7; i++) { | 1552 | for (int i = 0; i < 7; i++) { |
1552 | { | 1553 | { |
1553 | bool show = mShortDayLabelsW; | 1554 | bool show = mShortDayLabelsW; |
1554 | if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() ) | 1555 | if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() ) |
1555 | show = true; | 1556 | show = true; |
1556 | (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i+1,show)); | 1557 | (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i+1,show)); |
1557 | } | 1558 | } |
1558 | } | 1559 | } |
1559 | mDayLabelsT = &mDayLabels; | 1560 | mDayLabelsT = &mDayLabels; |
1560 | for (int i = 0; i < 7; i++) { | 1561 | for (int i = 0; i < 7; i++) { |
1561 | if (KGlobal::locale()->weekStartsMonday() || KOPrefs::instance()->mMonthViewSatSunTog ) { | 1562 | if (KGlobal::locale()->weekStartsMonday() || KOPrefs::instance()->mMonthViewSatSunTog ) { |
1562 | bool show = mShortDayLabelsM; | 1563 | bool show = mShortDayLabelsM; |
1563 | if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() ) | 1564 | if ( i > 4 && mShowSatSunComp && mWidthLongDayLabel > (*mDayLabelsT)[i]->width() ) |
1564 | show = true; | 1565 | show = true; |
1565 | (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i+1,show)); | 1566 | (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i+1,show)); |
1566 | } else { | 1567 | } else { |
1567 | if (i==0) (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(7,mShortDayLabelsM)); | 1568 | if (i==0) (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(7,mShortDayLabelsM)); |
1568 | else (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i,mShortDayLabelsM)); | 1569 | else (*mDayLabelsT)[i]->setText(KOGlobals::self()->calendarSystem()->weekDayName(i,mShortDayLabelsM)); |
1569 | 1570 | ||
1570 | } | 1571 | } |
1571 | } | 1572 | } |
1572 | 1573 | ||
1573 | } | 1574 | } |
1574 | 1575 | ||
1575 | void KOMonthView::clearList() | 1576 | void KOMonthView::clearList() |
1576 | { | 1577 | { |
1577 | unsigned int i; | 1578 | unsigned int i; |
1578 | for( i = 0; i < mCells.size(); ++i ) { | 1579 | for( i = 0; i < mCells.size(); ++i ) { |
1579 | mCells[i]->clear(); | 1580 | mCells[i]->clear(); |
1580 | } | 1581 | } |
1581 | for( i = 0; i < mCellsW.size(); ++i ) { | 1582 | for( i = 0; i < mCellsW.size(); ++i ) { |
1582 | mCellsW[i]->clear(); | 1583 | mCellsW[i]->clear(); |
1583 | } | 1584 | } |
1584 | } | 1585 | } |
1585 | void KOMonthView::showDates(const QDate &start, const QDate &) | 1586 | void KOMonthView::showDates(const QDate &start, const QDate &) |
1586 | { | 1587 | { |
1587 | // kdDebug() << "KOMonthView::showDates(): " << start.toString() << endl; | 1588 | // kdDebug() << "KOMonthView::showDates(): " << start.toString() << endl; |
1588 | 1589 | ||
1589 | QPtrVector<MonthViewCell> *cells; | 1590 | QPtrVector<MonthViewCell> *cells; |
1590 | QPtrVector<QLabel> *dayLabels; | 1591 | QPtrVector<QLabel> *dayLabels; |
1591 | QPtrVector<KOWeekButton> *weekLabels; | 1592 | QPtrVector<KOWeekButton> *weekLabels; |
1592 | uint weekNum = 6; | 1593 | uint weekNum = 6; |
1593 | mStartDate = start; | 1594 | mStartDate = start; |
1594 | if ( mShowWeekView ) { | 1595 | if ( mShowWeekView ) { |
1595 | weekNum = 1; | 1596 | weekNum = 1; |
1596 | cells = &mCellsW; | 1597 | cells = &mCellsW; |
1597 | dayLabels = &mDayLabelsW; | 1598 | dayLabels = &mDayLabelsW; |
1598 | weekLabels = &mWeekLabelsW; | 1599 | weekLabels = &mWeekLabelsW; |
1599 | if ( !KGlobal::locale()->weekStartsMonday() ) { | 1600 | if ( !KGlobal::locale()->weekStartsMonday() ) { |
1600 | mStartDate = mStartDate.addDays( 1 ); | 1601 | mStartDate = mStartDate.addDays( 1 ); |
1601 | } | 1602 | } |
1602 | } else { | 1603 | } else { |
1603 | cells = &mCells; | 1604 | cells = &mCells; |
1604 | dayLabels = &mDayLabels; | 1605 | dayLabels = &mDayLabels; |
1605 | weekLabels = &mWeekLabels; | 1606 | weekLabels = &mWeekLabels; |
1606 | } | 1607 | } |
1607 | 1608 | ||
1608 | int mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); | 1609 | int mWeekStartsMonday = KGlobal::locale()->weekStartsMonday(); |
1609 | 1610 | ||
1610 | if ( mShowWeekView || KOPrefs::instance()->mMonthViewSatSunTog ) { | 1611 | if ( mShowWeekView || KOPrefs::instance()->mMonthViewSatSunTog ) { |
1611 | mWeekStartsMonday = true; | 1612 | mWeekStartsMonday = true; |
1612 | } | 1613 | } |
1613 | int startWeekDay = mWeekStartsMonday ? 1 : 7; | 1614 | int startWeekDay = mWeekStartsMonday ? 1 : 7; |
1614 | 1615 | ||
1615 | while( KOGlobals::self()->calendarSystem()->dayOfWeek(mStartDate) != startWeekDay ) { | 1616 | while( KOGlobals::self()->calendarSystem()->dayOfWeek(mStartDate) != startWeekDay ) { |
1616 | mStartDate = mStartDate.addDays( -1 ); | 1617 | mStartDate = mStartDate.addDays( -1 ); |
1617 | } | 1618 | } |
1618 | uint i; | 1619 | uint i; |
1619 | for( i = 0; i < (*cells).size(); ++i ) { | 1620 | for( i = 0; i < (*cells).size(); ++i ) { |
1620 | QDate date = mStartDate.addDays( i ); | 1621 | QDate date = mStartDate.addDays( i ); |
1621 | (*cells)[i]->setDate( date ); | 1622 | (*cells)[i]->setDate( date ); |
1622 | 1623 | ||
1623 | #ifndef KORG_NOPLUGINS | 1624 | #ifndef KORG_NOPLUGINS |
1624 | // add holiday, if present | 1625 | // add holiday, if present |
1625 | QString hstring(KOCore::self()->holiday(date)); | 1626 | QString hstring(KOCore::self()->holiday(date)); |
1626 | (*cells)[i]->setHoliday( hstring ); | 1627 | (*cells)[i]->setHoliday( hstring ); |
1627 | #endif | 1628 | #endif |
1628 | 1629 | ||
1629 | } | 1630 | } |
1630 | QDate date = mStartDate.addDays( mWeekStartsMonday ? 3 : 4 ); | 1631 | QDate date = mStartDate.addDays( mWeekStartsMonday ? 3 : 4 ); |
1631 | for( i = 0; i < weekNum; ++i ) { | 1632 | for( i = 0; i < weekNum; ++i ) { |
1632 | int wno; | 1633 | int wno; |
1633 | // remember, according to ISO 8601, the first week of the year is the | 1634 | // remember, according to ISO 8601, the first week of the year is the |
1634 | // first week that contains a thursday. Thus we must subtract off 4, | 1635 | // first week that contains a thursday. Thus we must subtract off 4, |
1635 | // not just 1. | 1636 | // not just 1. |
1636 | int dayOfYear = date.dayOfYear(); | 1637 | int dayOfYear = date.dayOfYear(); |
1637 | if (dayOfYear % 7 != 0) | 1638 | if (dayOfYear % 7 != 0) |
1638 | wno = dayOfYear / 7 + 1; | 1639 | wno = dayOfYear / 7 + 1; |
1639 | else | 1640 | else |
1640 | wno =dayOfYear / 7; | 1641 | wno =dayOfYear / 7; |
1641 | (*weekLabels)[i]->setWeekNum( wno ); | 1642 | (*weekLabels)[i]->setWeekNum( wno ); |
1642 | date = date.addDays( 7 ); | 1643 | date = date.addDays( 7 ); |
1643 | } | 1644 | } |
1644 | updateView(); | 1645 | updateView(); |
1645 | } | 1646 | } |
1646 | 1647 | ||
1647 | void KOMonthView::showEvents(QPtrList<Event>) | 1648 | void KOMonthView::showEvents(QPtrList<Event>) |
1648 | { | 1649 | { |
1649 | qDebug("KOMonthView::selectEvents is not implemented yet. "); | 1650 | qDebug("KOMonthView::selectEvents is not implemented yet. "); |
1650 | } | 1651 | } |
1651 | 1652 | ||
1652 | void KOMonthView::changeEventDisplay(Event *, int) | 1653 | void KOMonthView::changeEventDisplay(Event *, int) |
1653 | { | 1654 | { |
1654 | // this should be re-written to be much more efficient, but this | 1655 | // this should be re-written to be much more efficient, but this |
1655 | // quick-and-dirty-hack gets the job done for right now. | 1656 | // quick-and-dirty-hack gets the job done for right now. |
1656 | //qDebug("KOMonthView::changeEventDisplay "); | 1657 | //qDebug("KOMonthView::changeEventDisplay "); |
1657 | updateView(); | 1658 | updateView(); |
1658 | } | 1659 | } |
1659 | 1660 | ||
1660 | void KOMonthView::updateView() | 1661 | void KOMonthView::updateView() |
1661 | { | 1662 | { |
1662 | 1663 | ||
1663 | if ( !updatePossible ) | 1664 | if ( !updatePossible ) |
1664 | return; | 1665 | return; |
1665 | //qDebug("UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU "); | 1666 | //qDebug("UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU "); |
1666 | //QTime ti; | 1667 | //QTime ti; |
1667 | //ti.start(); | 1668 | //ti.start(); |
1668 | clearSelection(); | 1669 | clearSelection(); |
1669 | QPtrVector<MonthViewCell> *cells; | 1670 | QPtrVector<MonthViewCell> *cells; |
1670 | if ( mShowWeekView ) { | 1671 | if ( mShowWeekView ) { |
1671 | cells = &mCellsW; | 1672 | cells = &mCellsW; |
1672 | } else { | 1673 | } else { |
1673 | cells = &mCells; | 1674 | cells = &mCells; |
1674 | } | 1675 | } |
1675 | #if 1 | 1676 | #if 1 |
1676 | int i; | 1677 | int i; |
1677 | int timeSpan = (*cells).size()-1; | 1678 | int timeSpan = (*cells).size()-1; |
1678 | if ( KOPrefs::instance()->mMonthViewWeek ) | 1679 | if ( KOPrefs::instance()->mMonthViewWeek ) |
1679 | timeSpan = 6; | 1680 | timeSpan = 6; |
1680 | for( i = 0; i < timeSpan + 1; ++i ) { | 1681 | for( i = 0; i < timeSpan + 1; ++i ) { |
1681 | (*cells)[i]->startUpdateCell(); | 1682 | (*cells)[i]->startUpdateCell(); |
1682 | } | 1683 | } |
1683 | 1684 | ||
1684 | QPtrList<Event> events = calendar()->events(); | 1685 | QPtrList<Event> events = calendar()->events(); |
1685 | Event *event; | 1686 | Event *event; |
1686 | QDateTime dt; | 1687 | QDateTime dt; |
1687 | QDate endDate = mStartDate.addDays( timeSpan ); | 1688 | QDate endDate = mStartDate.addDays( timeSpan ); |
1688 | for( event = events.first(); event; event = events.next() ) { // for event | 1689 | for( event = events.first(); event; event = events.next() ) { // for event |
1689 | if ( event->doesRecur() ) { | 1690 | if ( event->doesRecur() ) { |
1690 | bool last; | 1691 | bool last; |
1691 | QDateTime incidenceStart = event->recurrence()->getPreviousDateTime( QDateTime( mStartDate ) , &last ); | 1692 | QDateTime incidenceStart = event->recurrence()->getPreviousDateTime( QDateTime( mStartDate ) , &last ); |
1692 | QDateTime incidenceEnd; | 1693 | QDateTime incidenceEnd; |
1693 | int eventlen = event->dtStart().date().daysTo ( event->dtEnd().date() ); | 1694 | int eventlen = event->dtStart().date().daysTo ( event->dtEnd().date() ); |
1694 | bool invalid = false; | 1695 | bool invalid = false; |
1695 | while( true ) { | 1696 | while( true ) { |
1696 | if ( incidenceStart.isValid() ) { | 1697 | if ( incidenceStart.isValid() ) { |
1697 | incidenceEnd = incidenceStart.addDays( eventlen ); | 1698 | incidenceEnd = incidenceStart.addDays( eventlen ); |
1698 | int st = incidenceStart.date().daysTo( endDate ); | 1699 | int st = incidenceStart.date().daysTo( endDate ); |
1699 | if ( st >= 0 ) { // start before timeend | 1700 | if ( st >= 0 ) { // start before timeend |
1700 | int end = mStartDate.daysTo( incidenceEnd.date() ); | 1701 | int end = mStartDate.daysTo( incidenceEnd.date() ); |
1701 | if ( end >= 0 ) { // end after timestart --- got one! | 1702 | if ( end >= 0 ) { // end after timestart --- got one! |
1702 | //normalize | 1703 | //normalize |
1703 | st = timeSpan - st; | 1704 | st = timeSpan - st; |
1704 | if ( st < 0 ) st = 0; | 1705 | if ( st < 0 ) st = 0; |
1705 | if ( end > timeSpan ) end = timeSpan; | 1706 | if ( end > timeSpan ) end = timeSpan; |
1706 | int iii; | 1707 | int iii; |
1707 | //qDebug("found %s %d %d ",event->summary().latin1(), st, end ); | 1708 | //qDebug("found %s %d %d ",event->summary().latin1(), st, end ); |
1708 | for ( iii = st;iii<= end;++iii) | 1709 | for ( iii = st;iii<= end;++iii) |
1709 | (*cells)[iii]->insertEvent( event ); | 1710 | (*cells)[iii]->insertEvent( event ); |
1710 | } | 1711 | } |
1711 | } | 1712 | } |
1712 | } else { | 1713 | } else { |
1713 | if ( invalid ) | 1714 | if ( invalid ) |
1714 | break; | 1715 | break; |
1715 | invalid = true; | 1716 | invalid = true; |
1716 | //qDebug("invalid %s", event->summary().latin1()); | 1717 | //qDebug("invalid %s", event->summary().latin1()); |
1717 | incidenceStart = QDateTime( mStartDate ).addSecs( -2 );; | 1718 | incidenceStart = QDateTime( mStartDate ).addSecs( -2 );; |
1718 | } | 1719 | } |
1719 | if ( last ) | 1720 | if ( last ) |
1720 | break; | 1721 | break; |
1721 | bool ok; | 1722 | bool ok; |
1722 | incidenceStart = event->getNextOccurence( incidenceStart.addSecs( 1 ) ,&ok ); | 1723 | incidenceStart = event->getNextOccurence( incidenceStart.addSecs( 1 ) ,&ok ); |
1723 | if ( ! ok ) | 1724 | if ( ! ok ) |
1724 | break; | 1725 | break; |
1725 | if ( incidenceStart.date() > endDate ) | 1726 | if ( incidenceStart.date() > endDate ) |
1726 | break; | 1727 | break; |
1727 | } | 1728 | } |
1728 | } else { // no recur | 1729 | } else { // no recur |
1729 | if ( !KOPrefs::instance()->mShowSyncEvents && event->uid().left(2) == QString("la") ) | 1730 | if ( !KOPrefs::instance()->mShowSyncEvents && event->uid().left(2) == QString("la") ) |
1730 | if ( event->uid().left(15) == QString("last-syncEvent-") ) | 1731 | if ( event->uid().left(15) == QString("last-syncEvent-") ) |
1731 | continue; | 1732 | continue; |
1732 | int st = event->dtStart().date().daysTo( endDate ); | 1733 | int st = event->dtStart().date().daysTo( endDate ); |
1733 | if ( st >= 0 ) { // start before timeend | 1734 | if ( st >= 0 ) { // start before timeend |
1734 | int end = mStartDate.daysTo( event->dtEnd().date() ); | 1735 | int end = mStartDate.daysTo( event->dtEnd().date() ); |
1735 | if ( end >= 0 ) { // end after timestart --- got one! | 1736 | if ( end >= 0 ) { // end after timestart --- got one! |
1736 | //normalize | 1737 | //normalize |
1737 | st = timeSpan - st; | 1738 | st = timeSpan - st; |
1738 | if ( st < 0 ) st = 0; | 1739 | if ( st < 0 ) st = 0; |
1739 | if ( end > timeSpan ) end = timeSpan; | 1740 | if ( end > timeSpan ) end = timeSpan; |
1740 | int iii; | 1741 | int iii; |
1741 | for ( iii = st;iii<= end;++iii) | 1742 | for ( iii = st;iii<= end;++iii) |
1742 | (*cells)[iii]->insertEvent( event ); | 1743 | (*cells)[iii]->insertEvent( event ); |
1743 | } | 1744 | } |
1744 | } | 1745 | } |
1745 | } | 1746 | } |
1746 | } | 1747 | } |
1747 | // insert due todos | 1748 | // insert due todos |
1748 | QPtrList<Todo> todos = calendar()->todos( ); | 1749 | QPtrList<Todo> todos = calendar()->todos( ); |
1749 | Todo *todo; | 1750 | Todo *todo; |
1750 | for(todo = todos.first(); todo; todo = todos.next()) { | 1751 | for(todo = todos.first(); todo; todo = todos.next()) { |
1751 | //insertTodo( todo ); | 1752 | //insertTodo( todo ); |
1752 | if ( todo->hasDueDate() ) { | 1753 | if ( todo->hasDueDate() ) { |
1753 | int day = mStartDate.daysTo( todo->dtDue().date() ); | 1754 | int day = mStartDate.daysTo( todo->dtDue().date() ); |
1754 | if ( day >= 0 && day < timeSpan + 1) { | 1755 | if ( day >= 0 && day < timeSpan + 1) { |
1755 | (*cells)[day]->insertTodo( todo ); | 1756 | (*cells)[day]->insertTodo( todo ); |
1756 | } | 1757 | } |
1757 | } | 1758 | } |
1758 | } | 1759 | } |
1759 | 1760 | ||
1760 | for( i = 0; i < timeSpan+1; ++i ) { | 1761 | for( i = 0; i < timeSpan+1; ++i ) { |
1761 | (*cells)[i]->finishUpdateCell(); | 1762 | (*cells)[i]->finishUpdateCell(); |
1762 | } | 1763 | } |
1763 | processSelectionChange(); | 1764 | processSelectionChange(); |
1764 | //qApp->processEvents(); | 1765 | //qApp->processEvents(); |
1765 | for( i = 0; i < timeSpan+1; ++i ) { | 1766 | for( i = 0; i < timeSpan+1; ++i ) { |
1766 | //(*cells)[i]->repaintfinishUpdateCell(); | 1767 | //(*cells)[i]->repaintfinishUpdateCell(); |
1767 | QTimer::singleShot( 0, (*cells)[i], SLOT ( repaintfinishUpdateCell() ) ); | 1768 | QTimer::singleShot( 0, (*cells)[i], SLOT ( repaintfinishUpdateCell() ) ); |
1768 | } | 1769 | } |
1769 | setKeyBFocus(); | 1770 | setKeyBFocus(); |
1770 | #else | 1771 | #else |
1771 | // old code | 1772 | // old code |
1772 | //qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ "); | 1773 | //qDebug("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ "); |
1773 | int i; | 1774 | int i; |
1774 | for( i = 0; i < (*cells).count(); ++i ) { | 1775 | for( i = 0; i < (*cells).count(); ++i ) { |
1775 | (*cells)[i]->updateCell(); | 1776 | (*cells)[i]->updateCell(); |
1776 | } | 1777 | } |
1777 | 1778 | ||
1778 | //qDebug("KOMonthView::updateView() "); | 1779 | //qDebug("KOMonthView::updateView() "); |
1779 | processSelectionChange(); | 1780 | processSelectionChange(); |
1780 | // qDebug("---------------------------------------------------------------------+ "); | 1781 | // qDebug("---------------------------------------------------------------------+ "); |
1781 | (*cells)[0]->setFocus(); | 1782 | (*cells)[0]->setFocus(); |
1782 | #endif | 1783 | #endif |
1783 | 1784 | ||
1784 | //qDebug("update time %d ", ti.elapsed()); | 1785 | //qDebug("update time %d ", ti.elapsed()); |
1785 | } | 1786 | } |
1786 | 1787 | ||
1787 | void KOMonthView::setKeyBoardFocus() | 1788 | void KOMonthView::setKeyBoardFocus() |
1788 | { | 1789 | { |
1789 | //qDebug("KOMonthView::setKeyBoardFocus() "); | 1790 | //qDebug("KOMonthView::setKeyBoardFocus() "); |
1790 | bool shootAgain = false; | 1791 | bool shootAgain = false; |
1791 | if ( mShowWeekView ) { | 1792 | if ( mShowWeekView ) { |
1792 | shootAgain = !mWeekLabelsW[1]->hasFocus(); | 1793 | shootAgain = !mWeekLabelsW[1]->hasFocus(); |
1793 | mWeekLabelsW[1]->setFocus(); | 1794 | mWeekLabelsW[1]->setFocus(); |
1794 | } | 1795 | } |
1795 | else { | 1796 | else { |
1796 | shootAgain = !mWeekLabels[mNumWeeks]->hasFocus(); | 1797 | shootAgain = !mWeekLabels[mNumWeeks]->hasFocus(); |
1797 | mWeekLabels[mNumWeeks]->setFocus(); | 1798 | mWeekLabels[mNumWeeks]->setFocus(); |
1798 | } | 1799 | } |
1799 | --mKBFcounter; | 1800 | --mKBFcounter; |
1800 | if ( shootAgain && mKBFcounter > 0 ) { | 1801 | if ( shootAgain && mKBFcounter > 0 ) { |
1801 | QTimer::singleShot( 50, this, SLOT ( setKeyBoardFocus() ) ); | 1802 | QTimer::singleShot( 50, this, SLOT ( setKeyBoardFocus() ) ); |
1802 | } | 1803 | } |
1803 | } | 1804 | } |
1804 | void KOMonthView::setKeyBFocus() | 1805 | void KOMonthView::setKeyBFocus() |
1805 | { | 1806 | { |
1806 | //qDebug("KOMonthView::setKeyBFocus() "); | 1807 | //qDebug("KOMonthView::setKeyBFocus() "); |
1807 | mKBFcounter = 10; | 1808 | mKBFcounter = 10; |
1808 | QTimer::singleShot( 0, this, SLOT ( setKeyBoardFocus() ) ); | 1809 | QTimer::singleShot( 0, this, SLOT ( setKeyBoardFocus() ) ); |
1809 | } | 1810 | } |
1810 | void KOMonthView::resizeEvent(QResizeEvent * e) | 1811 | void KOMonthView::resizeEvent(QResizeEvent * e) |
1811 | { | 1812 | { |
1812 | //qDebug("KOMonthView::resizeEvent %d %d -- %d %d ", e->size().width(), e->size().height(), e->oldSize().width(), e->oldSize().height()); | 1813 | //qDebug("KOMonthView::resizeEvent %d %d -- %d %d ", e->size().width(), e->size().height(), e->oldSize().width(), e->oldSize().height()); |
1813 | if ( isVisible() ) { | 1814 | if ( isVisible() ) { |
1814 | //qDebug("KOMonthView::isVisible "); | 1815 | //qDebug("KOMonthView::isVisible "); |
1815 | slotComputeLayout(); | 1816 | slotComputeLayout(); |
1816 | } else | 1817 | } else |
1817 | mComputeLayoutTimer->start( 100 ); | 1818 | mComputeLayoutTimer->start( 100 ); |
1818 | KOEventView::resizeEvent( e ); | 1819 | if ( e ) |
1820 | KOEventView::resizeEvent( e ); | ||
1819 | } | 1821 | } |
1820 | 1822 | ||
1821 | void KOMonthView::slotComputeLayout() | 1823 | void KOMonthView::slotComputeLayout() |
1822 | { | 1824 | { |
1823 | mComputeLayoutTimer->stop(); | 1825 | mComputeLayoutTimer->stop(); |
1824 | //qDebug("KOMonthView::Post - resizeEvent %d %d ", width(), height() ); | 1826 | //qDebug("KOMonthView::Post - resizeEvent %d %d ", width(), height() ); |
1825 | computeLayout(); | 1827 | computeLayout(); |
1826 | clPending = true; | 1828 | clPending = true; |
1827 | setKeyBFocus(); | 1829 | setKeyBFocus(); |
1828 | } | 1830 | } |
1829 | void KOMonthView::computeLayoutWeek() | 1831 | |
1832 | void KOMonthView::doComputeLayoutWeek() | ||
1830 | { | 1833 | { |
1831 | static int lastWid = 0; | 1834 | |
1832 | static int lastHei = 0; | ||
1833 | int daysToShow; | 1835 | int daysToShow; |
1834 | bool combinedSatSun = false; | 1836 | bool combinedSatSun = false; |
1835 | if (mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ) { | 1837 | if (mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ) { |
1836 | daysToShow = 6; | 1838 | daysToShow = 6; |
1837 | combinedSatSun = true; | 1839 | combinedSatSun = true; |
1838 | } | 1840 | } |
1839 | int tWid = topLevelWidget()->size().width(); | ||
1840 | int tHei = topLevelWidget()->size().height(); | ||
1841 | |||
1842 | int wid = width();//e | 1841 | int wid = width();//e |
1843 | int hei = height()-1-mNavigatorBar->height(); | 1842 | int hei = height()-1-mNavigatorBar->height(); |
1844 | 1843 | if ( !KOPrefs::instance()->mMonthViewWeekRowlayout ) { | |
1845 | if ( ((wid *3)/2) < tWid && (( hei *3) /2) < tHei ) | ||
1846 | return; | ||
1847 | |||
1848 | if ( lastWid == width() && lastHei == height() ) { | ||
1849 | //qDebug("KOListWeekView::No compute layout needed "); | ||
1850 | return; | ||
1851 | } | ||
1852 | lastWid = width(); | ||
1853 | lastHei = height(); | ||
1854 | |||
1855 | |||
1856 | if ( wid < hei ) | ||
1857 | daysToShow = 2; | 1844 | daysToShow = 2; |
1858 | else | 1845 | } else { |
1859 | daysToShow = 3; | 1846 | if ( wid < hei ) |
1847 | daysToShow = 2; | ||
1848 | else | ||
1849 | daysToShow = 3; | ||
1850 | } | ||
1851 | bool landscape = (daysToShow == 3); | ||
1860 | mShowSatSunComp = true; | 1852 | mShowSatSunComp = true; |
1861 | combinedSatSun = true; | 1853 | combinedSatSun = true; |
1862 | 1854 | ||
1863 | //qDebug("KOMonthView::computeLayout() WWW ------------------------------------ "); | 1855 | //qDebug("KOMonthView::computeLayout() WWW ------------------------------------ "); |
1864 | QFontMetrics fm ( mWeekLabels[0]->font() ); | 1856 | QFontMetrics fm ( mWeekLabels[0]->font() ); |
1865 | int weeklabelwid = fm.width( "888" ); | 1857 | int weeklabelwid = fm.width( "888" ); |
1866 | wid -= weeklabelwid; | 1858 | wid -= weeklabelwid; |
1867 | 1859 | ||
1868 | int colWid = wid / daysToShow; | 1860 | int colWid = wid / daysToShow; |
1869 | int dayLabelHei = mDayLabelsW[0]->sizeHint().height(); | 1861 | int dayLabelHei = mDayLabelsW[0]->sizeHint().height(); |
1870 | int cellHei = (hei - (5- daysToShow )*dayLabelHei) /(5- daysToShow ); | 1862 | int cellHei = (hei - (5- daysToShow )*dayLabelHei) /(5- daysToShow ); |
1871 | int colModulo = wid % daysToShow; | 1863 | int colModulo = wid % daysToShow; |
1872 | int rowModulo = (hei- (5- daysToShow )*dayLabelHei) % daysToShow-1; | 1864 | int rowModulo = (hei- (5- daysToShow )*dayLabelHei) % daysToShow-1; |
1873 | //qDebug("rowmod %d ", rowModulo); | 1865 | //qDebug("rowmod %d ", rowModulo); |
1874 | int i; | 1866 | int i; |
1875 | int x,y,w,h; | 1867 | int x,y,w,h; |
1876 | x= 0; | 1868 | x= 0; |
1877 | y= 0; | 1869 | y= 0; |
1878 | w = colWid; | 1870 | w = colWid; |
1879 | h = dayLabelHei ; | 1871 | h = dayLabelHei ; |
1880 | for ( i = 0; i < 7; i++) { | 1872 | for ( i = 0; i < 7; i++) { |
1881 | if ( i && !( i % daysToShow) && i < 6) { | 1873 | if ( i && !( i % daysToShow) && i < 6) { |
1882 | y += hei/(5-daysToShow); | 1874 | y += hei/(5-daysToShow); |
1883 | x = 0; | 1875 | x = 0; |
1884 | w = colWid; | 1876 | w = colWid; |
1885 | } | 1877 | } |
1886 | if ( ((i) % daysToShow) >= daysToShow-colModulo ) { | 1878 | if ( ((i) % daysToShow) >= daysToShow-colModulo ) { |
1887 | ++w; | 1879 | ++w; |
1888 | } | 1880 | } |
1881 | int xC,yC,wC,hC; | ||
1889 | if ( i >= 5 ) { | 1882 | if ( i >= 5 ) { |
1890 | int wi = width() - x - weeklabelwid; | 1883 | int wi = width() - x - weeklabelwid; |
1891 | if ( i == 5 ) { | 1884 | if ( i == 5 ) { |
1892 | mDayLabelsW[i]->setGeometry( x+weeklabelwid,y,wi/2+wi%2,h); | 1885 | xC = x+weeklabelwid; |
1886 | yC = y; | ||
1887 | wC = wi/2+wi%2; | ||
1888 | hC = h; | ||
1893 | } else { | 1889 | } else { |
1894 | mDayLabelsW[i]->setGeometry( x+weeklabelwid,y,wi,h); | 1890 | xC = x+weeklabelwid; |
1891 | yC = y; | ||
1892 | wC = wi; | ||
1893 | hC = h; | ||
1895 | } | 1894 | } |
1896 | x = x - w + wi - (wi/2 ); | 1895 | x = x - w + wi - (wi/2 ); |
1897 | } | 1896 | } |
1898 | else { | 1897 | else { |
1899 | int wi = w; | 1898 | int wi = w; |
1900 | if ( !(( i+1) % daysToShow)) { | 1899 | if ( !(( i+1) % daysToShow)) { |
1901 | wi = width() - x - weeklabelwid; | 1900 | wi = width() - x - weeklabelwid; |
1902 | } | 1901 | } |
1903 | mDayLabelsW[i]->setGeometry( x+weeklabelwid,y,wi,h); | 1902 | xC = x+weeklabelwid; |
1903 | yC = y; | ||
1904 | wC = wi; | ||
1905 | hC = h; | ||
1904 | } | 1906 | } |
1907 | mDayLabelsW[mapWeekLayout(i,landscape)]->setGeometry( xC,yC,wC,hC); | ||
1908 | |||
1909 | |||
1905 | x += w; | 1910 | x += w; |
1906 | } | 1911 | } |
1907 | x= 0; | 1912 | x= 0; |
1908 | y= dayLabelHei; | 1913 | y= dayLabelHei; |
1909 | w = colWid; | 1914 | w = colWid; |
1910 | h = cellHei; | 1915 | h = cellHei; |
1911 | int max = 0; | 1916 | int max = 0; |
1912 | int w_count = mCellsW.count(); | 1917 | int w_count = mCellsW.count(); |
1913 | for ( i = 0; i < w_count; ++i) { | 1918 | for ( i = 0; i < w_count; ++i) { |
1914 | if ( i > 6 ) { | 1919 | if ( i > 6 ) { |
1915 | mCellsW[i]->hide(); | 1920 | mCellsW[i]->hide(); |
1916 | continue; | 1921 | continue; |
1917 | } | 1922 | } |
1918 | 1923 | ||
1919 | w = colWid; | 1924 | w = colWid; |
1920 | if ( ((i) % daysToShow) >= daysToShow-colModulo ) { | 1925 | if ( ((i) % daysToShow) >= daysToShow-colModulo ) { |
1921 | ++w; | 1926 | ++w; |
1922 | } | 1927 | } |
1923 | if ( i == (daysToShow-1-rowModulo)*7) | 1928 | if ( i == (daysToShow-1-rowModulo)*7) |
1924 | ++h; | 1929 | ++h; |
1925 | 1930 | ||
1931 | int xC,yC,wC,hC; | ||
1926 | if ( i >= 5 ) { | 1932 | if ( i >= 5 ) { |
1927 | if ( i ==5 ) { | 1933 | if ( i ==5 ) { |
1928 | max = h/2; | 1934 | max = h/2; |
1929 | mCellsW[i]->setGeometry ( x+weeklabelwid,y,w,max ); | 1935 | xC = x+weeklabelwid; |
1936 | yC = y; | ||
1937 | wC = w; | ||
1938 | hC = max; | ||
1930 | x -= w ;y += h/2; | 1939 | x -= w ;y += h/2; |
1931 | } else { | 1940 | } else { |
1932 | if ( ((i-1) % daysToShow) >= daysToShow-colModulo ) { | 1941 | if ( ((i-1) % daysToShow) >= daysToShow-colModulo ) { |
1933 | ++w; | 1942 | ++w; |
1934 | } | 1943 | } |
1935 | max = h-h/2; | 1944 | max = h-h/2; |
1936 | mCellsW[i]->setGeometry ( x+weeklabelwid,y,w,max ); | 1945 | xC = x+weeklabelwid; |
1946 | yC = y; | ||
1947 | wC = w; | ||
1948 | hC = max; | ||
1937 | y -= h/2; | 1949 | y -= h/2; |
1938 | } | 1950 | } |
1939 | } else { | 1951 | } else { |
1940 | max = h; | 1952 | max = h; |
1941 | mCellsW[i]->setGeometry ( x+weeklabelwid,y,w,h ); | 1953 | xC = x+weeklabelwid; |
1954 | yC = y; | ||
1955 | wC = w; | ||
1956 | hC = h; | ||
1942 | } | 1957 | } |
1958 | mCellsW[mapWeekLayout(i,landscape)]->setGeometry ( xC,yC,wC,hC ); | ||
1943 | 1959 | ||
1944 | 1960 | ||
1945 | x += w; | 1961 | x += w; |
1946 | if ( x + w/2 > wid ) { | 1962 | if ( x + w/2 > wid ) { |
1947 | x = 0; | 1963 | x = 0; |
1948 | y += h+dayLabelHei ; | 1964 | y += h+dayLabelHei ; |
1949 | } | 1965 | } |
1950 | //mCellsW[i]->dateLabel()->setMaximumHeight( max - mCellsW[i]->lineWidth()*2 ); | 1966 | //mCellsW[i]->dateLabel()->setMaximumHeight( max - mCellsW[i]->lineWidth()*2 ); |
1951 | } | 1967 | } |
1952 | y= dayLabelHei; | 1968 | y= dayLabelHei; |
1953 | h = cellHei ; | 1969 | h = cellHei ; |
1954 | mWeekLabelsW[0]->setGeometry( 0,y,weeklabelwid,hei-dayLabelHei); | 1970 | mWeekLabelsW[0]->setGeometry( 0,y,weeklabelwid,hei-dayLabelHei); |
1955 | mWeekLabelsW[1]->setGeometry( 0,0,weeklabelwid,dayLabelHei); | 1971 | mWeekLabelsW[1]->setGeometry( 0,0,weeklabelwid,dayLabelHei); |
1956 | // qDebug("RRRRRRRRRRRRR %d %d old %d %d", e->size().width(),e->size().height() , e->oldSize().width(),e->oldSize().height()); | 1972 | // qDebug("RRRRRRRRRRRRR %d %d old %d %d", e->size().width(),e->size().height() , e->oldSize().width(),e->oldSize().height()); |
1957 | //qDebug("parent %d %d ", topLevelWidget()->size().width(), topLevelWidget()->size().height()); | 1973 | //qDebug("parent %d %d ", topLevelWidget()->size().width(), topLevelWidget()->size().height()); |
1958 | mShortDayLabelsW = mDayLabelsW[0]->width()-2 < mWidthLongDayLabel ; | 1974 | mShortDayLabelsW = mDayLabelsW[0]->width()-2 < mWidthLongDayLabel ; |
1959 | updateDayLabels(); | 1975 | updateDayLabels(); |
1960 | //bool forceUpdate = !updatePossible; | 1976 | //bool forceUpdate = !updatePossible; |
1961 | updatePossible = true; | 1977 | updatePossible = true; |
1962 | //mWeekLabels[mNumWeeks]->setText( i18n("M")); | 1978 | //mWeekLabels[mNumWeeks]->setText( i18n("M")); |
1963 | //if ( forceUpdate ) | 1979 | //if ( forceUpdate ) |
1964 | // updateView(); | 1980 | // updateView(); |
1965 | } | 1981 | } |
1982 | void KOMonthView::computeLayoutWeek() | ||
1983 | { | ||
1984 | static int lastWid = 0; | ||
1985 | static int lastHei = 0; | ||
1986 | int tWid = topLevelWidget()->size().width(); | ||
1987 | int tHei = topLevelWidget()->size().height(); | ||
1988 | int wid = width();//e | ||
1989 | int hei = height()-1-mNavigatorBar->height(); | ||
1990 | if ( ((wid *3)/2) < tWid && (( hei *3) /2) < tHei ) | ||
1991 | return; | ||
1992 | |||
1993 | if ( lastWid == width() && lastHei == height() ) { | ||
1994 | //qDebug("KOListWeekView::No compute layout needed "); | ||
1995 | return; | ||
1996 | } | ||
1997 | lastWid = width(); | ||
1998 | lastHei = height(); | ||
1999 | doComputeLayoutWeek(); | ||
2000 | } | ||
2001 | int KOMonthView::mapWeekLayout( int index, bool landscape ) | ||
2002 | { | ||
2003 | if ( KOPrefs::instance()->mMonthViewWeekRowlayout ) | ||
2004 | return index; | ||
2005 | int diff = 0; | ||
2006 | if ( !landscape ) diff = 1; | ||
2007 | switch( index ) { | ||
2008 | case 0: | ||
2009 | case 5: | ||
2010 | case 6: | ||
2011 | return index; | ||
2012 | break; | ||
2013 | case 1: | ||
2014 | return 2+diff; | ||
2015 | break; | ||
2016 | case 2: | ||
2017 | return 4-(3*diff); | ||
2018 | break; | ||
2019 | case 3: | ||
2020 | return 1+(3*diff); | ||
2021 | break; | ||
2022 | case 4: | ||
2023 | return 3-diff; | ||
2024 | break; | ||
2025 | default: | ||
2026 | qDebug("KO: Error in mapping week layout "); | ||
2027 | return index; | ||
2028 | break; | ||
2029 | } | ||
2030 | return index; | ||
2031 | } | ||
1966 | void KOMonthView::computeLayout() | 2032 | void KOMonthView::computeLayout() |
1967 | { | 2033 | { |
1968 | 2034 | ||
1969 | 2035 | ||
1970 | static int lastWid = 0; | 2036 | static int lastWid = 0; |
1971 | static int lastHei = 0; | 2037 | static int lastHei = 0; |
1972 | 2038 | ||
1973 | if ( mShowWeekView ){ | 2039 | if ( mShowWeekView ){ |
1974 | computeLayoutWeek(); | 2040 | computeLayoutWeek(); |
1975 | return; | 2041 | return; |
1976 | } | 2042 | } |
1977 | int daysToShow = 7; | 2043 | int daysToShow = 7; |
1978 | bool combinedSatSun = false; | 2044 | bool combinedSatSun = false; |
1979 | if (mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ) { | 2045 | if (mShowSatSunComp = KOPrefs::instance()->mMonthViewSatSunTog ) { |
1980 | daysToShow = 6; | 2046 | daysToShow = 6; |
1981 | combinedSatSun = true; | 2047 | combinedSatSun = true; |
1982 | } | 2048 | } |
1983 | int tWid = topLevelWidget()->size().width(); | 2049 | int tWid = topLevelWidget()->size().width(); |
1984 | int tHei = topLevelWidget()->size().height(); | 2050 | int tHei = topLevelWidget()->size().height(); |
1985 | 2051 | ||
1986 | int wid = width();//e | 2052 | int wid = width();//e |
1987 | int hei = height()-1-mNavigatorBar->height(); | 2053 | int hei = height()-1-mNavigatorBar->height(); |
1988 | 2054 | ||
1989 | if ( ((wid *3)/2) < tWid && (( hei *3) /2) < tHei ) { | 2055 | if ( ((wid *3)/2) < tWid && (( hei *3) /2) < tHei ) { |
1990 | return; | 2056 | return; |
1991 | } | 2057 | } |
1992 | if ( lastWid == width() && lastHei == height() ){ | 2058 | if ( lastWid == width() && lastHei == height() ){ |
1993 | //qDebug("KOMonthview::No compute layout needed "); | 2059 | //qDebug("KOMonthview::No compute layout needed "); |
1994 | return; | 2060 | return; |
1995 | } | 2061 | } |
1996 | 2062 | ||
1997 | lastWid = width(); | 2063 | lastWid = width(); |
1998 | lastHei = height(); | 2064 | lastHei = height(); |
1999 | //qDebug("KOMonthView::computeLayout() MMM ------------------- "); | 2065 | //qDebug("KOMonthView::computeLayout() MMM ------------------- "); |
2000 | QFontMetrics fm ( mWeekLabels[0]->font() ); | 2066 | QFontMetrics fm ( mWeekLabels[0]->font() ); |
2001 | int weeklabelwid = fm.width( "888" ); | 2067 | int weeklabelwid = fm.width( "888" ); |
2002 | wid -= weeklabelwid; | 2068 | wid -= weeklabelwid; |
2003 | 2069 | ||
2004 | int colWid = wid / daysToShow; | 2070 | int colWid = wid / daysToShow; |
2005 | int dayLabelHei = mDayLabels[0]->sizeHint().height(); | 2071 | int dayLabelHei = mDayLabels[0]->sizeHint().height(); |
2006 | int cellHei = (hei - dayLabelHei) /6; | 2072 | int cellHei = (hei - dayLabelHei) /6; |
2007 | int colModulo = wid % daysToShow; | 2073 | int colModulo = wid % daysToShow; |
2008 | int rowModulo = (hei- dayLabelHei) % 6; | 2074 | int rowModulo = (hei- dayLabelHei) % 6; |
2009 | //qDebug("rowmod %d ", rowModulo); | 2075 | //qDebug("rowmod %d ", rowModulo); |
2010 | int i; | 2076 | int i; |
2011 | int x,y,w,h; | 2077 | int x,y,w,h; |
2012 | x= 0; | 2078 | x= 0; |
2013 | y= 0; | 2079 | y= 0; |
2014 | w = colWid; | 2080 | w = colWid; |
2015 | h = dayLabelHei ; | 2081 | h = dayLabelHei ; |
2016 | for ( i = 0; i < 7; i++) { | 2082 | for ( i = 0; i < 7; i++) { |
2017 | if ( i == daysToShow-colModulo ) | 2083 | if ( i == daysToShow-colModulo ) |
2018 | ++w; | 2084 | ++w; |
2019 | if ( combinedSatSun ) { | 2085 | if ( combinedSatSun ) { |
2020 | if ( i >= daysToShow-1 ) { | 2086 | if ( i >= daysToShow-1 ) { |
2021 | 2087 | ||
2022 | if ( i == 6 ) | 2088 | if ( i == 6 ) |
2023 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,width()-x-weeklabelwid,h); | 2089 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,width()-x-weeklabelwid,h); |
2024 | else | 2090 | else |
2025 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w/2,h); | 2091 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w/2,h); |
2026 | x -= w/2 ; | 2092 | x -= w/2 ; |
2027 | } | 2093 | } |
2028 | else | 2094 | else |
2029 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w,h); | 2095 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w,h); |
2030 | } else | 2096 | } else |
2031 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w,h); | 2097 | mDayLabels[i]->setGeometry( x+weeklabelwid,y,w,h); |
2032 | x += w; | 2098 | x += w; |
2033 | } | 2099 | } |
2034 | x= 0; | 2100 | x= 0; |
2035 | y= dayLabelHei; | 2101 | y= dayLabelHei; |
2036 | w = colWid; | 2102 | w = colWid; |
2037 | h = cellHei ; | 2103 | h = cellHei ; |
2038 | int max = 0; | 2104 | int max = 0; |
2039 | int mc_count = mCells.count(); | 2105 | int mc_count = mCells.count(); |
2040 | for ( i = 0; i < mc_count; ++i) { | 2106 | for ( i = 0; i < mc_count; ++i) { |
2041 | //qDebug("iii %d ", i); | 2107 | //qDebug("iii %d ", i); |
2042 | w = colWid; | 2108 | w = colWid; |
2043 | if ( ((i) % 7) >= 7-colModulo ) { | 2109 | if ( ((i) % 7) >= 7-colModulo ) { |
2044 | ++w; | 2110 | ++w; |
2045 | } | 2111 | } |
2046 | if ( i == (6-rowModulo)*7) | 2112 | if ( i == (6-rowModulo)*7) |
2047 | ++h; | 2113 | ++h; |
2048 | if ( combinedSatSun ) { | 2114 | if ( combinedSatSun ) { |
2049 | if ( (i)%7 >= daysToShow-1 ) { | 2115 | if ( (i)%7 >= daysToShow-1 ) { |
2050 | if ( (i)%7 == daysToShow-1 ) { | 2116 | if ( (i)%7 == daysToShow-1 ) { |
2051 | w = width()-x-weeklabelwid; | 2117 | w = width()-x-weeklabelwid; |
2052 | max = h/2; | 2118 | max = h/2; |
2053 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,max ); | 2119 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,max ); |
2054 | x -= w ;y += h/2; | 2120 | x -= w ;y += h/2; |
2055 | } else { | 2121 | } else { |
2056 | w = width()-x-weeklabelwid; | 2122 | w = width()-x-weeklabelwid; |
2057 | max = h-h/2; | 2123 | max = h-h/2; |
2058 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,max ); | 2124 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,max ); |
2059 | y -= h/2; | 2125 | y -= h/2; |
2060 | } | 2126 | } |
2061 | } else { | 2127 | } else { |
2062 | max = h; | 2128 | max = h; |
2063 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,h ); | 2129 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,h ); |
2064 | } | 2130 | } |
2065 | 2131 | ||
2066 | } | 2132 | } |
2067 | else { | 2133 | else { |
2068 | max = h; | 2134 | max = h; |
2069 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,h ); | 2135 | mCells[i]->setGeometry ( x+weeklabelwid,y,w,h ); |
2070 | } | 2136 | } |
2071 | x += w; | 2137 | x += w; |
2072 | if ( x + w/2 > wid ) { | 2138 | if ( x + w/2 > wid ) { |
2073 | x = 0; | 2139 | x = 0; |
2074 | y += h; | 2140 | y += h; |
2075 | } | 2141 | } |
2076 | //mCells[i]->dateLabel()->setMaximumHeight( max- mCells[i]->lineWidth()*2 ); | 2142 | //mCells[i]->dateLabel()->setMaximumHeight( max- mCells[i]->lineWidth()*2 ); |
2077 | } | 2143 | } |
2078 | y= dayLabelHei; | 2144 | y= dayLabelHei; |
2079 | h = cellHei ; | 2145 | h = cellHei ; |
2080 | for ( i = 0; i < 6; i++) { | 2146 | for ( i = 0; i < 6; i++) { |
2081 | if ( i == (6-rowModulo)) | 2147 | if ( i == (6-rowModulo)) |
2082 | ++h; | 2148 | ++h; |
2083 | mWeekLabels[i]->setGeometry( 0,y,weeklabelwid,h); | 2149 | mWeekLabels[i]->setGeometry( 0,y,weeklabelwid,h); |
2084 | y += h; | 2150 | y += h; |
2085 | } | 2151 | } |
2086 | mWeekLabels[6]->setGeometry( 0,0,weeklabelwid,dayLabelHei); | 2152 | mWeekLabels[6]->setGeometry( 0,0,weeklabelwid,dayLabelHei); |
2087 | // qDebug("RRRRRRRRRRRRR %d %d old %d %d", e->size().width(),e->size().height() , e->oldSize().width(),e->oldSize().height()); | 2153 | // qDebug("RRRRRRRRRRRRR %d %d old %d %d", e->size().width(),e->size().height() , e->oldSize().width(),e->oldSize().height()); |
2088 | //qDebug("parent %d %d ", topLevelWidget()->size().width(), topLevelWidget()->size().height()); | 2154 | //qDebug("parent %d %d ", topLevelWidget()->size().width(), topLevelWidget()->size().height()); |
2089 | mShortDayLabelsM = mDayLabels[0]->width()-2 < mWidthLongDayLabel ; | 2155 | mShortDayLabelsM = mDayLabels[0]->width()-2 < mWidthLongDayLabel ; |
2090 | updateDayLabels(); | 2156 | updateDayLabels(); |
2091 | //bool forceUpdate = !updatePossible; | 2157 | //bool forceUpdate = !updatePossible; |
2092 | updatePossible = true; | 2158 | updatePossible = true; |
2093 | //mWeekLabels[mNumWeeks]->setText( i18n("W")); | 2159 | //mWeekLabels[mNumWeeks]->setText( i18n("W")); |
2094 | } | 2160 | } |
2095 | 2161 | ||
2096 | void KOMonthView::showContextMenu( Incidence *incidence ) | 2162 | void KOMonthView::showContextMenu( Incidence *incidence ) |
2097 | { | 2163 | { |
2098 | if( incidence ) | 2164 | if( incidence ) |
2099 | mContextMenu->showIncidencePopup(incidence); | 2165 | mContextMenu->showIncidencePopup(incidence); |
2100 | else { | 2166 | else { |
2101 | //qDebug("KOMonthView::showContextMenu "); | 2167 | //qDebug("KOMonthView::showContextMenu "); |
2102 | mNewItemMenu->popup(QCursor::pos()); | 2168 | mNewItemMenu->popup(QCursor::pos()); |
2103 | } | 2169 | } |
2104 | /* | 2170 | /* |
2105 | if( incidence && incidence->typeID() == eventID ) { | 2171 | if( incidence && incidence->typeID() == eventID ) { |
2106 | Event *event = static_cast<Event *>(incidence); | 2172 | Event *event = static_cast<Event *>(incidence); |
2107 | mContextMenu->showEventPopup(event); | 2173 | mContextMenu->showEventPopup(event); |
2108 | } else { | 2174 | } else { |
2109 | kdDebug() << "MonthView::showContextMenu(): cast failed." << endl; | 2175 | kdDebug() << "MonthView::showContextMenu(): cast failed." << endl; |
2110 | } | 2176 | } |
2111 | */ | 2177 | */ |
2112 | } | 2178 | } |
2113 | MonthViewCell * KOMonthView::selectedCell( ) | 2179 | MonthViewCell * KOMonthView::selectedCell( ) |
2114 | { | 2180 | { |
2115 | return mSelectedCell; | 2181 | return mSelectedCell; |
2116 | } | 2182 | } |
2117 | void KOMonthView::setSelectedCell( MonthViewCell *cell ) | 2183 | void KOMonthView::setSelectedCell( MonthViewCell *cell ) |
2118 | { | 2184 | { |
2119 | //qDebug("KOMonthView::setSelectedCell %d", cell); | 2185 | //qDebug("KOMonthView::setSelectedCell %d", cell); |
2120 | if ( mSelectedCell && mSelectedCell != cell ) { | 2186 | if ( mSelectedCell && mSelectedCell != cell ) { |
2121 | MonthViewCell * mvc = mSelectedCell; | 2187 | MonthViewCell * mvc = mSelectedCell; |
2122 | mSelectedCell = cell; | 2188 | mSelectedCell = cell; |
2123 | mvc->deselect(); | 2189 | mvc->deselect(); |
2124 | } else | 2190 | } else |
2125 | mSelectedCell = cell; | 2191 | mSelectedCell = cell; |
2126 | // if ( mSelectedCell ) | 2192 | // if ( mSelectedCell ) |
2127 | // mSelectedCell->select(); | 2193 | // mSelectedCell->select(); |
2128 | if ( !mSelectedCell ) | 2194 | if ( !mSelectedCell ) |
2129 | emit incidenceSelected( 0 ); | 2195 | emit incidenceSelected( 0 ); |
2130 | else | 2196 | else |
2131 | emit incidenceSelected( mSelectedCell->selectedIncidence() ); | 2197 | emit incidenceSelected( mSelectedCell->selectedIncidence() ); |
2132 | } | 2198 | } |
2133 | 2199 | ||
2134 | void KOMonthView::processSelectionChange() | 2200 | void KOMonthView::processSelectionChange() |
2135 | { | 2201 | { |
2136 | QPtrList<Incidence> incidences = selectedIncidences(); | 2202 | QPtrList<Incidence> incidences = selectedIncidences(); |
2137 | if (incidences.count() > 0) { | 2203 | if (incidences.count() > 0) { |
2138 | emit incidenceSelected( incidences.first() ); | 2204 | emit incidenceSelected( incidences.first() ); |
2139 | } else { | 2205 | } else { |
2140 | emit incidenceSelected( 0 ); | 2206 | emit incidenceSelected( 0 ); |
2141 | clearSelection(); | 2207 | clearSelection(); |
2142 | } | 2208 | } |
2143 | } | 2209 | } |
2144 | 2210 | ||
2145 | void KOMonthView::clearSelection() | 2211 | void KOMonthView::clearSelection() |
2146 | { | 2212 | { |
2147 | if ( mSelectedCell ) { | 2213 | if ( mSelectedCell ) { |
2148 | mSelectedCell->deselect(); | 2214 | mSelectedCell->deselect(); |
2149 | mSelectedCell = 0; | 2215 | mSelectedCell = 0; |
2150 | } | 2216 | } |
2151 | } | 2217 | } |
2152 | 2218 | ||
2153 | void KOMonthView::keyReleaseEvent ( QKeyEvent * e) | 2219 | void KOMonthView::keyReleaseEvent ( QKeyEvent * e) |
2154 | { | 2220 | { |
2155 | if ( !e->isAutoRepeat() ) { | 2221 | if ( !e->isAutoRepeat() ) { |
2156 | mFlagKeyPressed = false; | 2222 | mFlagKeyPressed = false; |
2157 | } | 2223 | } |
2158 | } | 2224 | } |
2159 | 2225 | ||
2160 | void KOMonthView::keyPressEvent ( QKeyEvent * e ) | 2226 | void KOMonthView::keyPressEvent ( QKeyEvent * e ) |
2161 | { | 2227 | { |
2162 | 2228 | ||
2163 | qApp->processEvents(); | 2229 | qApp->processEvents(); |
2164 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 2230 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
2165 | //e->ignore(); | 2231 | //e->ignore(); |
2166 | e->accept(); | 2232 | e->accept(); |
2167 | return; | 2233 | return; |
2168 | } | 2234 | } |
2169 | if (! e->isAutoRepeat() ) | 2235 | if (! e->isAutoRepeat() ) |
2170 | mFlagKeyPressed = true; | 2236 | mFlagKeyPressed = true; |
2171 | switch(e->key()) { | 2237 | switch(e->key()) { |
2172 | case Key_Up: | 2238 | case Key_Up: |
2173 | { | 2239 | { |
2174 | if ( mShowWeekView ) { | 2240 | if ( mShowWeekView ) { |
2175 | emit selectWeekNum ( currentWeek() - 1 ); | 2241 | emit selectWeekNum ( currentWeek() - 1 ); |
2176 | } | 2242 | } |
2177 | else { | 2243 | else { |
2178 | emit prevMonth(); | 2244 | emit prevMonth(); |
2179 | } | 2245 | } |
2180 | } | 2246 | } |
2181 | e->accept(); | 2247 | e->accept(); |
2182 | break; | 2248 | break; |
2183 | case Key_Down: | 2249 | case Key_Down: |
2184 | { | 2250 | { |
2185 | if ( mShowWeekView ) { | 2251 | if ( mShowWeekView ) { |
2186 | emit selectWeekNum ( currentWeek() +1); | 2252 | emit selectWeekNum ( currentWeek() +1); |
2187 | } | 2253 | } |
2188 | else { | 2254 | else { |
2189 | emit nextMonth(); | 2255 | emit nextMonth(); |
2190 | } | 2256 | } |
2191 | 2257 | ||
2192 | } | 2258 | } |
2193 | e->accept(); | 2259 | e->accept(); |
2194 | break; | 2260 | break; |
2195 | case Key_Return: | 2261 | case Key_Return: |
2196 | case Key_Enter: | 2262 | case Key_Enter: |
2197 | { | 2263 | { |
2198 | selectInternalWeekNum ( currentWeek() ); | 2264 | selectInternalWeekNum ( currentWeek() ); |
2199 | } | 2265 | } |
2200 | e->accept(); | 2266 | e->accept(); |
2201 | break; | 2267 | break; |
2202 | case Key_D: | 2268 | case Key_D: |
2203 | if ( mSelectedCell ) { | 2269 | if ( mSelectedCell ) { |
2204 | mSelectedCell->showDay(); | 2270 | mSelectedCell->showDay(); |
2205 | e->accept(); | 2271 | e->accept(); |
2206 | } else { | 2272 | } else { |
2207 | e->ignore(); | 2273 | e->ignore(); |
2208 | } | 2274 | } |
2209 | break; | 2275 | break; |
2210 | default: | 2276 | default: |
2211 | e->ignore(); | 2277 | e->ignore(); |
2212 | break; | 2278 | break; |
2213 | } | 2279 | } |
2214 | } | 2280 | } |
2215 | 2281 | ||
2216 | void KOMonthView::nextCell() | 2282 | void KOMonthView::nextCell() |
2217 | { | 2283 | { |
2218 | focusNextPrevChild ( true ); | 2284 | focusNextPrevChild ( true ); |
2219 | } | 2285 | } |
2220 | void KOMonthView::prevCell() | 2286 | void KOMonthView::prevCell() |
2221 | { | 2287 | { |
2222 | focusNextPrevChild ( false ); | 2288 | focusNextPrevChild ( false ); |
2223 | } | 2289 | } |
2224 | 2290 | ||
2225 | void KOMonthView::slotNewTodo() | 2291 | void KOMonthView::slotNewTodo() |
2226 | { | 2292 | { |
2227 | //qDebug("KOMonthView::slotNewTodo() "); | 2293 | //qDebug("KOMonthView::slotNewTodo() "); |
2228 | if ( mPopupCell ){ | 2294 | if ( mPopupCell ){ |
2229 | QDateTime dt( mPopupCell->date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); | 2295 | QDateTime dt( mPopupCell->date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); |
2230 | emit newTodoSignal(dt,true); | 2296 | emit newTodoSignal(dt,true); |
2231 | } | 2297 | } |
2232 | mPopupCell = 0; | 2298 | mPopupCell = 0; |
2233 | } | 2299 | } |
2234 | void KOMonthView::slotNewEvent() | 2300 | void KOMonthView::slotNewEvent() |
2235 | { | 2301 | { |
2236 | if ( mPopupCell ) { | 2302 | if ( mPopupCell ) { |
2237 | QDateTime dt( mPopupCell->date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); | 2303 | QDateTime dt( mPopupCell->date(), QTime( KOPrefs::instance()->mStartTime, 0 ) ); |
2238 | emit newEventSignal( dt ); | 2304 | emit newEventSignal( dt ); |
2239 | } | 2305 | } |
2240 | //qDebug("KOMonthView::slotNewEvent() "); | 2306 | //qDebug("KOMonthView::slotNewEvent() "); |
2241 | mPopupCell = 0; | 2307 | mPopupCell = 0; |
2242 | } | 2308 | } |
2243 | 2309 | ||
2244 | void KOMonthView::slotEditJournal() | 2310 | void KOMonthView::slotEditJournal() |
2245 | { | 2311 | { |
2246 | if ( mPopupCell ) | 2312 | if ( mPopupCell ) |
2247 | emit showJournalSignal( 7, mPopupCell->date() ); | 2313 | emit showJournalSignal( 7, mPopupCell->date() ); |
2248 | //qDebug("KOMonthView::slotEditJournal() "); | 2314 | //qDebug("KOMonthView::slotEditJournal() "); |
2249 | mPopupCell = 0; | 2315 | mPopupCell = 0; |
2250 | } | 2316 | } |
2251 | 2317 | ||
2252 | void KOMonthView::setPopupCell( MonthViewCell * c) | 2318 | void KOMonthView::setPopupCell( MonthViewCell * c) |
2253 | { | 2319 | { |
2254 | mPopupCell = c; | 2320 | mPopupCell = c; |
2255 | } | 2321 | } |
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index 4d62e9b..61a141a 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h | |||
@@ -1,348 +1,350 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #ifndef _KOMONTHVIEW_H | 20 | #ifndef _KOMONTHVIEW_H |
21 | #define _KOMONTHVIEW_H | 21 | #define _KOMONTHVIEW_H |
22 | 22 | ||
23 | #include <qlabel.h> | 23 | #include <qlabel.h> |
24 | #include <qframe.h> | 24 | #include <qframe.h> |
25 | #include <qdatetime.h> | 25 | #include <qdatetime.h> |
26 | #include <qlistbox.h> | 26 | #include <qlistbox.h> |
27 | #include <qpoint.h> | 27 | #include <qpoint.h> |
28 | #include <qwidgetstack.h> | 28 | #include <qwidgetstack.h> |
29 | #include <qlayout.h> | 29 | #include <qlayout.h> |
30 | #include <qtimer.h> | 30 | #include <qtimer.h> |
31 | #include <qintdict.h> | 31 | #include <qintdict.h> |
32 | #include <qpushbutton.h> | 32 | #include <qpushbutton.h> |
33 | #include <qvaluelist.h> | 33 | #include <qvaluelist.h> |
34 | #include <qptrvector.h> | 34 | #include <qptrvector.h> |
35 | 35 | ||
36 | #include <libkcal/calendar.h> | 36 | #include <libkcal/calendar.h> |
37 | #include <libkcal/event.h> | 37 | #include <libkcal/event.h> |
38 | 38 | ||
39 | #include "koeventview.h" | 39 | #include "koeventview.h" |
40 | #include "navigatorbar.h" | 40 | #include "navigatorbar.h" |
41 | 41 | ||
42 | #ifdef DESKTOP_VERSION | 42 | #ifdef DESKTOP_VERSION |
43 | class QToolTipGroup; | 43 | class QToolTipGroup; |
44 | #endif | 44 | #endif |
45 | 45 | ||
46 | class KNOWhatsThis; | 46 | class KNOWhatsThis; |
47 | class MonthViewCell; | 47 | class MonthViewCell; |
48 | class KOWeekButton : public QPushButton | 48 | class KOWeekButton : public QPushButton |
49 | { | 49 | { |
50 | Q_OBJECT | 50 | Q_OBJECT |
51 | public: | 51 | public: |
52 | KOWeekButton( QWidget *parent=0, const char *name=0 ) : | 52 | KOWeekButton( QWidget *parent=0, const char *name=0 ) : |
53 | QPushButton( parent, name) | 53 | QPushButton( parent, name) |
54 | { | 54 | { |
55 | connect( this, SIGNAL( clicked() ), | 55 | connect( this, SIGNAL( clicked() ), |
56 | SLOT( bottonClicked() )); | 56 | SLOT( bottonClicked() )); |
57 | mNumber = -1; | 57 | mNumber = -1; |
58 | } | 58 | } |
59 | void setWeekNum ( int num ) {mNumber = num; setText( QString::number ( num ));} | 59 | void setWeekNum ( int num ) {mNumber = num; setText( QString::number ( num ));} |
60 | int getWeekNum() { return mNumber;} | 60 | int getWeekNum() { return mNumber;} |
61 | signals: | 61 | signals: |
62 | void selectWeekNum ( int ); | 62 | void selectWeekNum ( int ); |
63 | private: | 63 | private: |
64 | void focusInEvent ( QFocusEvent * ){;} | 64 | void focusInEvent ( QFocusEvent * ){;} |
65 | int mNumber; | 65 | int mNumber; |
66 | void keyPressEvent ( QKeyEvent * e ) | 66 | void keyPressEvent ( QKeyEvent * e ) |
67 | { | 67 | { |
68 | e->ignore(); | 68 | e->ignore(); |
69 | } | 69 | } |
70 | 70 | ||
71 | private slots : | 71 | private slots : |
72 | void bottonClicked() { if ( mNumber > 0 ) emit selectWeekNum ( mNumber ); } | 72 | void bottonClicked() { if ( mNumber > 0 ) emit selectWeekNum ( mNumber ); } |
73 | }; | 73 | }; |
74 | 74 | ||
75 | class KNoScrollListBox: public QListBox | 75 | class KNoScrollListBox: public QListBox |
76 | { | 76 | { |
77 | Q_OBJECT | 77 | Q_OBJECT |
78 | public: | 78 | public: |
79 | KNoScrollListBox(QWidget *parent=0, const char *name=0); | 79 | KNoScrollListBox(QWidget *parent=0, const char *name=0); |
80 | ~KNoScrollListBox(); | 80 | ~KNoScrollListBox(); |
81 | QString getWhatsThisText(QPoint p) ; | 81 | QString getWhatsThisText(QPoint p) ; |
82 | 82 | ||
83 | signals: | 83 | signals: |
84 | void shiftDown(); | 84 | void shiftDown(); |
85 | void shiftUp(); | 85 | void shiftUp(); |
86 | void rightClick(); | 86 | void rightClick(); |
87 | void nextCell(); | 87 | void nextCell(); |
88 | void prevCell(); | 88 | void prevCell(); |
89 | void highlightIncidence( Incidence * , MonthViewCell*, int ); | 89 | void highlightIncidence( Incidence * , MonthViewCell*, int ); |
90 | 90 | ||
91 | protected slots: | 91 | protected slots: |
92 | void oneDown(); | 92 | void oneDown(); |
93 | void keyPressEvent(QKeyEvent *); | 93 | void keyPressEvent(QKeyEvent *); |
94 | void keyReleaseEvent(QKeyEvent *); | 94 | void keyReleaseEvent(QKeyEvent *); |
95 | void mousePressEvent(QMouseEvent *); | 95 | void mousePressEvent(QMouseEvent *); |
96 | void focusInEvent ( QFocusEvent * ); | 96 | void focusInEvent ( QFocusEvent * ); |
97 | void focusOutEvent ( QFocusEvent * ); | 97 | void focusOutEvent ( QFocusEvent * ); |
98 | 98 | ||
99 | private: | 99 | private: |
100 | bool resetOnFocusIn; | 100 | bool resetOnFocusIn; |
101 | KNOWhatsThis * mWT; | 101 | KNOWhatsThis * mWT; |
102 | }; | 102 | }; |
103 | 103 | ||
104 | 104 | ||
105 | class MonthViewItem: public QListBoxItem | 105 | class MonthViewItem: public QListBoxItem |
106 | { | 106 | { |
107 | public: | 107 | public: |
108 | MonthViewItem( Incidence *,const QString & title ); | 108 | MonthViewItem( Incidence *,const QString & title ); |
109 | void recycle( Incidence *incidence, const QString & s); | 109 | void recycle( Incidence *incidence, const QString & s); |
110 | void setRecur(bool on) { mRecur = on; } | 110 | void setRecur(bool on) { mRecur = on; } |
111 | void setAlarm(bool on) { mAlarm = on; } | 111 | void setAlarm(bool on) { mAlarm = on; } |
112 | void setReply(bool on) { mReply = on; } | 112 | void setReply(bool on) { mReply = on; } |
113 | void setMoreInfo(bool on) { mInfo = on; } | 113 | void setMoreInfo(bool on) { mInfo = on; } |
114 | void setMultiDay(int type) { mMultiday = type; } | 114 | void setMultiDay(int type) { mMultiday = type; } |
115 | int multiDay() { return mMultiday; } | 115 | int multiDay() { return mMultiday; } |
116 | void setMultiDayPos(int type) { mdayPos = type; } | 116 | void setMultiDayPos(int type) { mdayPos = type; } |
117 | int gettMultiDayPos() { return mdayPos; } | 117 | int gettMultiDayPos() { return mdayPos; } |
118 | void setBlockRepaint(bool on) { mblockRepaint = on; } | 118 | void setBlockRepaint(bool on) { mblockRepaint = on; } |
119 | bool setHighlighted( Incidence * ); | 119 | bool setHighlighted( Incidence * ); |
120 | 120 | ||
121 | void setPalette(const QPalette &p) { mPalette = p; } | 121 | void setPalette(const QPalette &p) { mPalette = p; } |
122 | QPalette palette() const { return mPalette; } | 122 | QPalette palette() const { return mPalette; } |
123 | bool setHighlightedFalse(); | 123 | bool setHighlightedFalse(); |
124 | Incidence *incidence() const { return mIncidence; } | 124 | Incidence *incidence() const { return mIncidence; } |
125 | 125 | ||
126 | protected: | 126 | protected: |
127 | virtual void paint(QPainter *); | 127 | virtual void paint(QPainter *); |
128 | virtual int height(const QListBox *) const; | 128 | virtual int height(const QListBox *) const; |
129 | virtual int width(const QListBox *) const; | 129 | virtual int width(const QListBox *) const; |
130 | 130 | ||
131 | private: | 131 | private: |
132 | int mdayPos; | 132 | int mdayPos; |
133 | bool isWeekItem; | 133 | bool isWeekItem; |
134 | bool mblockRepaint; | 134 | bool mblockRepaint; |
135 | int mMultiday; | 135 | int mMultiday; |
136 | bool mRecur; | 136 | bool mRecur; |
137 | bool mAlarm; | 137 | bool mAlarm; |
138 | bool mReply; | 138 | bool mReply; |
139 | bool mInfo; | 139 | bool mInfo; |
140 | bool mDisplayHighlighted; | 140 | bool mDisplayHighlighted; |
141 | 141 | ||
142 | QPalette mPalette; | 142 | QPalette mPalette; |
143 | QDate mDate; | 143 | QDate mDate; |
144 | 144 | ||
145 | Incidence *mIncidence; | 145 | Incidence *mIncidence; |
146 | }; | 146 | }; |
147 | 147 | ||
148 | 148 | ||
149 | class KOMonthView; | 149 | class KOMonthView; |
150 | 150 | ||
151 | class MonthViewCell : public KNoScrollListBox | 151 | class MonthViewCell : public KNoScrollListBox |
152 | { | 152 | { |
153 | Q_OBJECT | 153 | Q_OBJECT |
154 | public: | 154 | public: |
155 | MonthViewCell(KOMonthView *,QWidget* ); | 155 | MonthViewCell(KOMonthView *,QWidget* ); |
156 | ~MonthViewCell() {mAvailItemList.setAutoDelete( true );} | 156 | ~MonthViewCell() {mAvailItemList.setAutoDelete( true );} |
157 | 157 | ||
158 | void setDate( const QDate & ); | 158 | void setDate( const QDate & ); |
159 | QDate date() const; | 159 | QDate date() const; |
160 | 160 | ||
161 | void setPrimary( bool ); | 161 | void setPrimary( bool ); |
162 | bool isPrimary() const; | 162 | bool isPrimary() const; |
163 | 163 | ||
164 | void setHoliday( bool ); | 164 | void setHoliday( bool ); |
165 | void setHoliday( const QString & ); | 165 | void setHoliday( const QString & ); |
166 | 166 | ||
167 | void updateCell(); | 167 | void updateCell(); |
168 | void startUpdateCell(); | 168 | void startUpdateCell(); |
169 | void finishUpdateCell(); | 169 | void finishUpdateCell(); |
170 | int insertEvent(Event *); | 170 | int insertEvent(Event *); |
171 | void insertTodo(Todo *); | 171 | void insertTodo(Todo *); |
172 | 172 | ||
173 | void updateConfig( bool bigFont = false ); | 173 | void updateConfig( bool bigFont = false ); |
174 | 174 | ||
175 | void enableScrollBars( bool ); | 175 | void enableScrollBars( bool ); |
176 | 176 | ||
177 | Incidence *selectedIncidence(); | 177 | Incidence *selectedIncidence(); |
178 | QDate selectedIncidenceDate(); | 178 | QDate selectedIncidenceDate(); |
179 | QPushButton * dateLabel() { return mLabel; } | 179 | QPushButton * dateLabel() { return mLabel; } |
180 | bool doHighLight( Incidence *); | 180 | bool doHighLight( Incidence *); |
181 | void deselect(); | 181 | void deselect(); |
182 | void select(); | 182 | void select(); |
183 | #ifdef DESKTOP_VERSION | 183 | #ifdef DESKTOP_VERSION |
184 | static QToolTipGroup *toolTipGroup(); | 184 | static QToolTipGroup *toolTipGroup(); |
185 | #endif | 185 | #endif |
186 | signals: | 186 | signals: |
187 | void defaultAction( Incidence * ); | 187 | void defaultAction( Incidence * ); |
188 | void newEventSignal( QDateTime ); | 188 | void newEventSignal( QDateTime ); |
189 | void showDaySignal( QDate ); | 189 | void showDaySignal( QDate ); |
190 | 190 | ||
191 | protected: | 191 | protected: |
192 | QStringList mToolTip; | 192 | QStringList mToolTip; |
193 | void resizeEvent( QResizeEvent * ); | 193 | void resizeEvent( QResizeEvent * ); |
194 | 194 | ||
195 | public slots: | 195 | public slots: |
196 | void showDay(); | 196 | void showDay(); |
197 | void deHighLight(); | 197 | void deHighLight(); |
198 | void repaintfinishUpdateCell(); | 198 | void repaintfinishUpdateCell(); |
199 | protected slots: | 199 | protected slots: |
200 | void defaultAction( QListBoxItem * ); | 200 | void defaultAction( QListBoxItem * ); |
201 | void contextMenu( QListBoxItem * ); | 201 | void contextMenu( QListBoxItem * ); |
202 | void selection( QListBoxItem * ); | 202 | void selection( QListBoxItem * ); |
203 | void cellClicked( QListBoxItem * ); | 203 | void cellClicked( QListBoxItem * ); |
204 | void newEvent(); | 204 | void newEvent(); |
205 | 205 | ||
206 | private: | 206 | private: |
207 | int mdayCount; | 207 | int mdayCount; |
208 | QPtrList <MonthViewItem> mAvailItemList; | 208 | QPtrList <MonthViewItem> mAvailItemList; |
209 | KOMonthView *mMonthView; | 209 | KOMonthView *mMonthView; |
210 | int currentPalette; | 210 | int currentPalette; |
211 | 211 | ||
212 | QDate mDate; | 212 | QDate mDate; |
213 | bool mPrimary; | 213 | bool mPrimary; |
214 | bool mHoliday; | 214 | bool mHoliday; |
215 | QString mHolidayString; | 215 | QString mHolidayString; |
216 | 216 | ||
217 | //QLabel *mLabel; | 217 | //QLabel *mLabel; |
218 | QPushButton *mLabel; | 218 | QPushButton *mLabel; |
219 | //QListBox *mItemList; | 219 | //QListBox *mItemList; |
220 | #ifdef DESKTOP_VERSION | 220 | #ifdef DESKTOP_VERSION |
221 | static QToolTipGroup *mToolTipGroup; | 221 | static QToolTipGroup *mToolTipGroup; |
222 | #endif | 222 | #endif |
223 | QSize mLabelSize; | 223 | QSize mLabelSize; |
224 | QSize mLabelBigSize; | 224 | QSize mLabelBigSize; |
225 | QPalette mHolidayPalette; | 225 | QPalette mHolidayPalette; |
226 | QPalette mStandardPalette; | 226 | QPalette mStandardPalette; |
227 | QPalette mPrimaryPalette; | 227 | QPalette mPrimaryPalette; |
228 | QPalette mNonPrimaryPalette; | 228 | QPalette mNonPrimaryPalette; |
229 | void setMyPalette(); | 229 | void setMyPalette(); |
230 | QPalette getPalette (); | 230 | QPalette getPalette (); |
231 | 231 | ||
232 | }; | 232 | }; |
233 | 233 | ||
234 | 234 | ||
235 | class KOMonthView: public KOEventView | 235 | class KOMonthView: public KOEventView |
236 | { | 236 | { |
237 | Q_OBJECT | 237 | Q_OBJECT |
238 | public: | 238 | public: |
239 | KOMonthView(Calendar *cal, QWidget *parent = 0, const char *name = 0 ); | 239 | KOMonthView(Calendar *cal, QWidget *parent = 0, const char *name = 0 ); |
240 | ~KOMonthView(); | 240 | ~KOMonthView(); |
241 | 241 | ||
242 | /** Returns maximum number of days supported by the komonthview */ | 242 | /** Returns maximum number of days supported by the komonthview */ |
243 | virtual int maxDatesHint(); | 243 | virtual int maxDatesHint(); |
244 | 244 | ||
245 | /** Returns number of currently shown dates. */ | 245 | /** Returns number of currently shown dates. */ |
246 | virtual int currentDateCount(); | 246 | virtual int currentDateCount(); |
247 | 247 | ||
248 | /** returns the currently selected events */ | 248 | /** returns the currently selected events */ |
249 | virtual QPtrList<Incidence> selectedIncidences(); | 249 | virtual QPtrList<Incidence> selectedIncidences(); |
250 | 250 | ||
251 | /** returns dates of the currently selected events */ | 251 | /** returns dates of the currently selected events */ |
252 | virtual DateList selectedDates(); | 252 | virtual DateList selectedDates(); |
253 | #if 0 | 253 | #if 0 |
254 | virtual void printPreview(CalPrinter *calPrinter, | 254 | virtual void printPreview(CalPrinter *calPrinter, |
255 | const QDate &, const QDate &); | 255 | const QDate &, const QDate &); |
256 | #endif | 256 | #endif |
257 | bool isMonthView() { return !mShowWeekView; } | 257 | bool isMonthView() { return !mShowWeekView; } |
258 | bool isUpdatePossible() { return updatePossible; } | 258 | bool isUpdatePossible() { return updatePossible; } |
259 | 259 | ||
260 | MonthViewCell * selectedCell(); | 260 | MonthViewCell * selectedCell(); |
261 | bool skipResize; | 261 | bool skipResize; |
262 | NavigatorBar* navigatorBar() { return mNavigatorBar ;} | 262 | NavigatorBar* navigatorBar() { return mNavigatorBar ;} |
263 | void clearList(); | 263 | void clearList(); |
264 | public slots: | 264 | public slots: |
265 | void incidenceHighlighted( Incidence *, MonthViewCell*, int ); | 265 | void incidenceHighlighted( Incidence *, MonthViewCell*, int ); |
266 | void nextCell(); | 266 | void nextCell(); |
267 | void prevCell(); | 267 | void prevCell(); |
268 | virtual void updateView(); | 268 | virtual void updateView(); |
269 | virtual void updateConfig(); | 269 | virtual void updateConfig(); |
270 | virtual void showDates(const QDate &start, const QDate &end); | 270 | virtual void showDates(const QDate &start, const QDate &end); |
271 | virtual void showEvents(QPtrList<Event> eventList); | 271 | virtual void showEvents(QPtrList<Event> eventList); |
272 | 272 | ||
273 | void changeEventDisplay(Event *, int); | 273 | void changeEventDisplay(Event *, int); |
274 | 274 | ||
275 | void clearSelection(); | 275 | void clearSelection(); |
276 | 276 | ||
277 | void showContextMenu( Incidence * ); | 277 | void showContextMenu( Incidence * ); |
278 | 278 | ||
279 | void setSelectedCell( MonthViewCell * ); | 279 | void setSelectedCell( MonthViewCell * ); |
280 | void setPopupCell( MonthViewCell * ); | 280 | void setPopupCell( MonthViewCell * ); |
281 | void switchView(); | 281 | void switchView(); |
282 | void setKeyBFocus(); | 282 | void setKeyBFocus(); |
283 | 283 | ||
284 | protected slots: | 284 | protected slots: |
285 | void catChanged( Incidence * ); | 285 | void catChanged( Incidence * ); |
286 | void setKeyBoardFocus(); | 286 | void setKeyBoardFocus(); |
287 | void slotNewTodo(); | 287 | void slotNewTodo(); |
288 | void slotNewEvent(); | 288 | void slotNewEvent(); |
289 | void slotEditJournal(); | 289 | void slotEditJournal(); |
290 | void slotComputeLayout(); | 290 | void slotComputeLayout(); |
291 | void selectInternalWeekNum ( int ); | 291 | void selectInternalWeekNum ( int ); |
292 | void processSelectionChange(); | 292 | void processSelectionChange(); |
293 | signals: | 293 | signals: |
294 | void nextMonth(); | 294 | void nextMonth(); |
295 | void prevMonth(); | 295 | void prevMonth(); |
296 | void selectWeekNum ( int ); | 296 | void selectWeekNum ( int ); |
297 | void selectMonth (); | 297 | void selectMonth (); |
298 | void showDaySignal( QDate ); | 298 | void showDaySignal( QDate ); |
299 | void newTodoSignal( QDateTime, bool ); | 299 | void newTodoSignal( QDateTime, bool ); |
300 | void showJournalSignal( int,QDate ); | 300 | void showJournalSignal( int,QDate ); |
301 | protected: | 301 | protected: |
302 | void resizeEvent(QResizeEvent *); | 302 | void resizeEvent(QResizeEvent *); |
303 | void viewChanged(); | 303 | void viewChanged(); |
304 | void updateDayLabels(); | 304 | void updateDayLabels(); |
305 | int mapWeekLayout( int, bool ); | ||
305 | 306 | ||
306 | private: | 307 | private: |
307 | int mKBFcounter; | 308 | int mKBFcounter; |
308 | QTimer* mComputeLayoutTimer; | 309 | QTimer* mComputeLayoutTimer; |
309 | NavigatorBar* mNavigatorBar; | 310 | NavigatorBar* mNavigatorBar; |
310 | int currentWeek(); | 311 | int currentWeek(); |
311 | bool clPending; | 312 | bool clPending; |
312 | QWidgetStack * mWidStack; | 313 | QWidgetStack * mWidStack; |
313 | QWidget* mMonthView; | 314 | QWidget* mMonthView; |
314 | QWidget* mWeekView; | 315 | QWidget* mWeekView; |
315 | bool mShowWeekView; | 316 | bool mShowWeekView; |
316 | bool updatePossible; | 317 | bool updatePossible; |
317 | int mDaysPerWeek; | 318 | int mDaysPerWeek; |
318 | int mNumWeeks; | 319 | int mNumWeeks; |
319 | int mNumCells; | 320 | int mNumCells; |
320 | //bool mWeekStartsMonday; | 321 | //bool mWeekStartsMonday; |
321 | bool mShowSatSunComp; | 322 | bool mShowSatSunComp; |
322 | void computeLayout(); | 323 | void computeLayout(); |
323 | void computeLayoutWeek(); | 324 | void computeLayoutWeek(); |
325 | void doComputeLayoutWeek(); | ||
324 | 326 | ||
325 | QPtrVector<MonthViewCell> mCells; | 327 | QPtrVector<MonthViewCell> mCells; |
326 | QPtrVector<QLabel> mDayLabels; | 328 | QPtrVector<QLabel> mDayLabels; |
327 | QPtrVector<KOWeekButton> mWeekLabels; | 329 | QPtrVector<KOWeekButton> mWeekLabels; |
328 | QPtrVector<MonthViewCell> mCellsW; | 330 | QPtrVector<MonthViewCell> mCellsW; |
329 | QPtrVector<QLabel> mDayLabelsW; | 331 | QPtrVector<QLabel> mDayLabelsW; |
330 | QPtrVector<KOWeekButton> mWeekLabelsW; | 332 | QPtrVector<KOWeekButton> mWeekLabelsW; |
331 | 333 | ||
332 | bool mShortDayLabelsM; | 334 | bool mShortDayLabelsM; |
333 | bool mShortDayLabelsW; | 335 | bool mShortDayLabelsW; |
334 | int mWidthLongDayLabel; | 336 | int mWidthLongDayLabel; |
335 | 337 | ||
336 | QDate mStartDate; | 338 | QDate mStartDate; |
337 | 339 | ||
338 | MonthViewCell *mSelectedCell; | 340 | MonthViewCell *mSelectedCell; |
339 | MonthViewCell *mPopupCell; | 341 | MonthViewCell *mPopupCell; |
340 | bool mFlagKeyPressed; | 342 | bool mFlagKeyPressed; |
341 | KOEventPopupMenu *mContextMenu; | 343 | KOEventPopupMenu *mContextMenu; |
342 | QPopupMenu *mNewItemMenu; | 344 | QPopupMenu *mNewItemMenu; |
343 | void keyPressEvent ( QKeyEvent * ) ; | 345 | void keyPressEvent ( QKeyEvent * ) ; |
344 | void keyReleaseEvent ( QKeyEvent * ) ; | 346 | void keyReleaseEvent ( QKeyEvent * ) ; |
345 | 347 | ||
346 | }; | 348 | }; |
347 | 349 | ||
348 | #endif | 350 | #endif |
diff --git a/korganizer/koprefs.cpp b/korganizer/koprefs.cpp index a63297e..9e7f18c 100644 --- a/korganizer/koprefs.cpp +++ b/korganizer/koprefs.cpp | |||
@@ -1,624 +1,625 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <time.h> | 24 | #include <time.h> |
25 | #ifndef _WIN32_ | 25 | #ifndef _WIN32_ |
26 | #include <unistd.h> | 26 | #include <unistd.h> |
27 | #endif | 27 | #endif |
28 | #include <qdir.h> | 28 | #include <qdir.h> |
29 | #include <qtextstream.h> | 29 | #include <qtextstream.h> |
30 | #include <qtextcodec.h> | 30 | #include <qtextcodec.h> |
31 | #include <qstring.h> | 31 | #include <qstring.h> |
32 | #include <qregexp.h> | 32 | #include <qregexp.h> |
33 | #include <qfont.h> | 33 | #include <qfont.h> |
34 | #include <qcolor.h> | 34 | #include <qcolor.h> |
35 | #include <qstringlist.h> | 35 | #include <qstringlist.h> |
36 | #include <stdlib.h> | 36 | #include <stdlib.h> |
37 | 37 | ||
38 | #include <kglobal.h> | 38 | #include <kglobal.h> |
39 | #include <kglobalsettings.h> | 39 | #include <kglobalsettings.h> |
40 | #include <kconfig.h> | 40 | #include <kconfig.h> |
41 | #include <klocale.h> | 41 | #include <klocale.h> |
42 | #include <kdebug.h> | 42 | #include <kdebug.h> |
43 | #include <kemailsettings.h> | 43 | #include <kemailsettings.h> |
44 | #include <kstaticdeleter.h> | 44 | #include <kstaticdeleter.h> |
45 | #include <libkdepim/kpimglobalprefs.h> | 45 | #include <libkdepim/kpimglobalprefs.h> |
46 | 46 | ||
47 | #include "koprefs.h" | 47 | #include "koprefs.h" |
48 | #include "mainwindow.h" | 48 | #include "mainwindow.h" |
49 | 49 | ||
50 | KOPrefs *KOPrefs::mInstance = 0; | 50 | KOPrefs *KOPrefs::mInstance = 0; |
51 | static KStaticDeleter<KOPrefs> insd; | 51 | static KStaticDeleter<KOPrefs> insd; |
52 | 52 | ||
53 | KOPrefs::KOPrefs() : | 53 | KOPrefs::KOPrefs() : |
54 | KPimPrefs("korganizerrc") | 54 | KPimPrefs("korganizerrc") |
55 | { | 55 | { |
56 | mGlobalUpdateDisabled = false; | 56 | mGlobalUpdateDisabled = false; |
57 | mCategoryColors.setAutoDelete(true); | 57 | mCategoryColors.setAutoDelete(true); |
58 | fillMailDefaults(); | 58 | fillMailDefaults(); |
59 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); | 59 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); |
60 | QColor defaultHolidayColor = QColor(255,0,0); | 60 | QColor defaultHolidayColor = QColor(255,0,0); |
61 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); | 61 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); |
62 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); | 62 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); |
63 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); | 63 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); |
64 | QColor defaultTodoDueTodayColor = QColor(255,220,100); | 64 | QColor defaultTodoDueTodayColor = QColor(255,220,100); |
65 | QColor defaultTodoOverdueColor = QColor(255,153,125); | 65 | QColor defaultTodoOverdueColor = QColor(255,153,125); |
66 | QColor defaultTodoRunColor = QColor(99,194,30); | 66 | QColor defaultTodoRunColor = QColor(99,194,30); |
67 | KPrefs::setCurrentGroup("General"); | 67 | KPrefs::setCurrentGroup("General"); |
68 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 68 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
69 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); | 69 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); |
70 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); | 70 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); |
71 | addItemBool("ShowIconSearch",&mShowIconSearch,true); | 71 | addItemBool("ShowIconSearch",&mShowIconSearch,true); |
72 | addItemBool("ShowIconList",&mShowIconList,true); | 72 | addItemBool("ShowIconList",&mShowIconList,true); |
73 | addItemBool("ShowIconDay1",&mShowIconDay1,true); | 73 | addItemBool("ShowIconDay1",&mShowIconDay1,true); |
74 | addItemBool("ShowIconDay5",&mShowIconDay5,true); | 74 | addItemBool("ShowIconDay5",&mShowIconDay5,true); |
75 | addItemBool("ShowIconDay6",&mShowIconDay6,true); | 75 | addItemBool("ShowIconDay6",&mShowIconDay6,true); |
76 | addItemBool("ShowIconDay7",&mShowIconDay7,true); | 76 | addItemBool("ShowIconDay7",&mShowIconDay7,true); |
77 | addItemBool("ShowIconMonth",&mShowIconMonth,true); | 77 | addItemBool("ShowIconMonth",&mShowIconMonth,true); |
78 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); | 78 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); |
79 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); | 79 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); |
80 | addItemBool("ShowIconBack",&mShowIconBack,true); | 80 | addItemBool("ShowIconBack",&mShowIconBack,true); |
81 | addItemBool("ShowIconToday",&mShowIconToday,true); | 81 | addItemBool("ShowIconToday",&mShowIconToday,true); |
82 | addItemBool("ShowIconForward",&mShowIconForward,true); | 82 | addItemBool("ShowIconForward",&mShowIconForward,true); |
83 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); | 83 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); |
84 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,true); | 84 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,true); |
85 | addItemBool("ShowIconWeekNum",&mShowIconWeekNum,true); | 85 | addItemBool("ShowIconWeekNum",&mShowIconWeekNum,true); |
86 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); | 86 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); |
87 | addItemBool("ShowIconNext",&mShowIconNext,true); | 87 | addItemBool("ShowIconNext",&mShowIconNext,true); |
88 | addItemBool("ShowIconJournal",&mShowIconJournal,true); | 88 | addItemBool("ShowIconJournal",&mShowIconJournal,true); |
89 | addItemBool("ShowIconStretch",&mShowIconStretch,true); | 89 | addItemBool("ShowIconStretch",&mShowIconStretch,true); |
90 | addItemBool("ShowIconFilter",&mShowIconFilter,false); | 90 | addItemBool("ShowIconFilter",&mShowIconFilter,false); |
91 | addItemBool("ShowIconOnetoolbar",&mShowIconOnetoolbar,true); | 91 | addItemBool("ShowIconOnetoolbar",&mShowIconOnetoolbar,true); |
92 | 92 | ||
93 | bool addIcons = false; | 93 | bool addIcons = false; |
94 | #ifdef DESKTOP_VERSION | 94 | #ifdef DESKTOP_VERSION |
95 | addIcons = true; | 95 | addIcons = true; |
96 | #endif | 96 | #endif |
97 | addItemBool("ShowIconNavigator",&mShowIconNavigator,addIcons); | 97 | addItemBool("ShowIconNavigator",&mShowIconNavigator,addIcons); |
98 | addItemBool("ShowIconAllday",&mShowIconAllday,addIcons); | 98 | addItemBool("ShowIconAllday",&mShowIconAllday,addIcons); |
99 | addItemBool("ShowIconFilterview",&mShowIconFilterview,addIcons); | 99 | addItemBool("ShowIconFilterview",&mShowIconFilterview,addIcons); |
100 | addItemBool("ShowIconToggleFull",&mShowIconToggleFull,addIcons); | 100 | addItemBool("ShowIconToggleFull",&mShowIconToggleFull,addIcons); |
101 | 101 | ||
102 | addItemInt("LastLoadedLanguage",&mOldLanguage,0); | 102 | addItemInt("LastLoadedLanguage",&mOldLanguage,0); |
103 | 103 | ||
104 | addItemBool("AskForQuit",&mAskForQuit,false); | 104 | addItemBool("AskForQuit",&mAskForQuit,false); |
105 | 105 | ||
106 | #ifndef DESKTOP_VERSION | 106 | #ifndef DESKTOP_VERSION |
107 | addItemBool("ShowFullMenu",&mShowFullMenu,false); | 107 | addItemBool("ShowFullMenu",&mShowFullMenu,false); |
108 | #else | 108 | #else |
109 | addItemBool("ShowFullMenu",&mShowFullMenu,true); | 109 | addItemBool("ShowFullMenu",&mShowFullMenu,true); |
110 | #endif | 110 | #endif |
111 | addItemBool("ToolBarHor",&mToolBarHor, true ); | 111 | addItemBool("ToolBarHor",&mToolBarHor, true ); |
112 | addItemBool("ToolBarUp",&mToolBarUp, false ); | 112 | addItemBool("ToolBarUp",&mToolBarUp, false ); |
113 | addItemBool("ToolBarHorV",&mToolBarHorV, true ); | 113 | addItemBool("ToolBarHorV",&mToolBarHorV, true ); |
114 | addItemBool("ToolBarUpV",&mToolBarUpV, false ); | 114 | addItemBool("ToolBarUpV",&mToolBarUpV, false ); |
115 | addItemBool("ToolBarHorN",&mToolBarHorN, true ); | 115 | addItemBool("ToolBarHorN",&mToolBarHorN, true ); |
116 | addItemBool("ToolBarUpN",&mToolBarUpN, false ); | 116 | addItemBool("ToolBarUpN",&mToolBarUpN, false ); |
117 | addItemBool("ToolBarHorF",&mToolBarHorF, true ); | 117 | addItemBool("ToolBarHorF",&mToolBarHorF, true ); |
118 | addItemBool("ToolBarUpF",&mToolBarUpF, false ); | 118 | addItemBool("ToolBarUpF",&mToolBarUpF, false ); |
119 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); | 119 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); |
120 | addItemInt("Whats Next Days",&mWhatsNextDays,3); | 120 | addItemInt("Whats Next Days",&mWhatsNextDays,3); |
121 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); | 121 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); |
122 | 122 | ||
123 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); | 123 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); |
124 | addItemBool("ShowCompletedTodoInAgenda",&mShowCompletedTodoInAgenda,true); | 124 | addItemBool("ShowCompletedTodoInAgenda",&mShowCompletedTodoInAgenda,true); |
125 | addItemBool("ShowTimeInAgenda",&mShowTimeInAgenda,true); | 125 | addItemBool("ShowTimeInAgenda",&mShowTimeInAgenda,true); |
126 | addItemBool("HideNonStartedTodos",&mHideNonStartedTodos,false); | 126 | addItemBool("HideNonStartedTodos",&mHideNonStartedTodos,false); |
127 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); | 127 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); |
128 | addItemInt("AllDay Size",&mAllDaySize,28); | 128 | addItemInt("AllDay Size",&mAllDaySize,28); |
129 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; | 129 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; |
130 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); | 130 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); |
131 | 131 | ||
132 | addItemStringList("LocationDefaults",&mLocationDefaults ); | 132 | addItemStringList("LocationDefaults",&mLocationDefaults ); |
133 | addItemStringList("EventSummary User",&mEventSummaryUser); | 133 | addItemStringList("EventSummary User",&mEventSummaryUser); |
134 | addItemStringList("TodoSummary User",&mTodoSummaryUser); | 134 | addItemStringList("TodoSummary User",&mTodoSummaryUser); |
135 | addItemStringList("JournalSummary User",&mJournalSummaryUser); | 135 | addItemStringList("JournalSummary User",&mJournalSummaryUser); |
136 | 136 | ||
137 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 137 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
138 | addItemBool("Enable Project View",&mEnableProjectView,false); | 138 | addItemBool("Enable Project View",&mEnableProjectView,false); |
139 | addItemBool("Auto Save",&mAutoSave,false); | 139 | addItemBool("Auto Save",&mAutoSave,false); |
140 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); | 140 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); |
141 | addItemBool("Confirm Deletes",&mConfirm,true); | 141 | addItemBool("Confirm Deletes",&mConfirm,true); |
142 | addItemString("Archive File",&mArchiveFile); | 142 | addItemString("Archive File",&mArchiveFile); |
143 | addItemString("Html Export File",&mHtmlExportFile, | 143 | addItemString("Html Export File",&mHtmlExportFile, |
144 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); | 144 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); |
145 | addItemBool("Html With Save",&mHtmlWithSave,false); | 145 | addItemBool("Html With Save",&mHtmlWithSave,false); |
146 | 146 | ||
147 | KPrefs::setCurrentGroup("Personal Settings"); | 147 | KPrefs::setCurrentGroup("Personal Settings"); |
148 | 148 | ||
149 | addItemInt("Mail Client",&mMailClient,MailClientKMail); | 149 | addItemInt("Mail Client",&mMailClient,MailClientKMail); |
150 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); | 150 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); |
151 | addItemBool("Bcc",&mBcc,false); | 151 | addItemBool("Bcc",&mBcc,false); |
152 | 152 | ||
153 | KPrefs::setCurrentGroup("Time & Date"); | 153 | KPrefs::setCurrentGroup("Time & Date"); |
154 | 154 | ||
155 | 155 | ||
156 | addItemInt("Default Start Time",&mStartTime,10); | 156 | addItemInt("Default Start Time",&mStartTime,10); |
157 | addItemInt("Default Duration",&mDefaultDuration,2); | 157 | addItemInt("Default Duration",&mDefaultDuration,2); |
158 | addItemInt("Default Alarm Time",&mAlarmTime,3); | 158 | addItemInt("Default Alarm Time",&mAlarmTime,3); |
159 | KPrefs::setCurrentGroup("AlarmSettings"); | 159 | KPrefs::setCurrentGroup("AlarmSettings"); |
160 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); | 160 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); |
161 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); | 161 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); |
162 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); | 162 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); |
163 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); | 163 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); |
164 | 164 | ||
165 | 165 | ||
166 | KPrefs::setCurrentGroup("Calendar"); | 166 | KPrefs::setCurrentGroup("Calendar"); |
167 | 167 | ||
168 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); | 168 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); |
169 | 169 | ||
170 | KPrefs::setCurrentGroup("Fonts"); | 170 | KPrefs::setCurrentGroup("Fonts"); |
171 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); | 171 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); |
172 | QFont fon = KGlobalSettings::generalFont(); | 172 | QFont fon = KGlobalSettings::generalFont(); |
173 | addItemFont("TimeBar Font",&mTimeBarFont,fon ); | 173 | addItemFont("TimeBar Font",&mTimeBarFont,fon ); |
174 | addItemFont("MonthView Font",&mMonthViewFont,fon); | 174 | addItemFont("MonthView Font",&mMonthViewFont,fon); |
175 | addItemFont("AgendaView Font",&mAgendaViewFont,fon); | 175 | addItemFont("AgendaView Font",&mAgendaViewFont,fon); |
176 | addItemFont("MarcusBains Font",&mMarcusBainsFont,fon); | 176 | addItemFont("MarcusBains Font",&mMarcusBainsFont,fon); |
177 | addItemFont("TimeLabels Font",&mTimeLabelsFont,fon); | 177 | addItemFont("TimeLabels Font",&mTimeLabelsFont,fon); |
178 | addItemFont("TodoView Font",&mTodoViewFont,fon); | 178 | addItemFont("TodoView Font",&mTodoViewFont,fon); |
179 | addItemFont("ListView Font",&mListViewFont,fon); | 179 | addItemFont("ListView Font",&mListViewFont,fon); |
180 | addItemFont("DateNavigator Font",&mDateNavigatorFont,fon); | 180 | addItemFont("DateNavigator Font",&mDateNavigatorFont,fon); |
181 | addItemFont("EditBox Font",&mEditBoxFont,fon); | 181 | addItemFont("EditBox Font",&mEditBoxFont,fon); |
182 | addItemFont("JournalView Font",&mJornalViewFont,fon); | 182 | addItemFont("JournalView Font",&mJornalViewFont,fon); |
183 | addItemFont("WhatsNextView Font",&mWhatsNextFont,fon); | 183 | addItemFont("WhatsNextView Font",&mWhatsNextFont,fon); |
184 | addItemFont("EventView Font",&mEventViewFont,fon); | 184 | addItemFont("EventView Font",&mEventViewFont,fon); |
185 | 185 | ||
186 | KPrefs::setCurrentGroup("RemoteSyncing"); | 186 | KPrefs::setCurrentGroup("RemoteSyncing"); |
187 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); | 187 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); |
188 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); | 188 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); |
189 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); | 189 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); |
190 | addItemInt("LastSyncTime",&mLastSyncTime,0); | 190 | addItemInt("LastSyncTime",&mLastSyncTime,0); |
191 | 191 | ||
192 | #ifdef _WIN32_ | 192 | #ifdef _WIN32_ |
193 | QString hdp= locateLocal("data","korganizer")+"\\\\"; | 193 | QString hdp= locateLocal("data","korganizer")+"\\\\"; |
194 | #else | 194 | #else |
195 | QString hdp= locateLocal("data","korganizer")+"/"; | 195 | QString hdp= locateLocal("data","korganizer")+"/"; |
196 | #endif | 196 | #endif |
197 | 197 | ||
198 | KPrefs::setCurrentGroup("LoadSaveFileNames"); | 198 | KPrefs::setCurrentGroup("LoadSaveFileNames"); |
199 | 199 | ||
200 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); | 200 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); |
201 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); | 201 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); |
202 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); | 202 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); |
203 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); | 203 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); |
204 | 204 | ||
205 | 205 | ||
206 | KPrefs::setCurrentGroup("Locale"); | 206 | KPrefs::setCurrentGroup("Locale"); |
207 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); | 207 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); |
208 | 208 | ||
209 | 209 | ||
210 | KPrefs::setCurrentGroup("Colors"); | 210 | KPrefs::setCurrentGroup("Colors"); |
211 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); | 211 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); |
212 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); | 212 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); |
213 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); | 213 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); |
214 | addItemColor("Todo done Color",&mTodoDoneColor,QColor(111,255,115) ); | 214 | addItemColor("Todo done Color",&mTodoDoneColor,QColor(111,255,115) ); |
215 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); | 215 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); |
216 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); | 216 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); |
217 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); | 217 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); |
218 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); | 218 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); |
219 | addItemColor("Todo running Color",&mTodoRunColor,defaultTodoRunColor); | 219 | addItemColor("Todo running Color",&mTodoRunColor,defaultTodoRunColor); |
220 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); | 220 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); |
221 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); | 221 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); |
222 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); | 222 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); |
223 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); | 223 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); |
224 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); | 224 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); |
225 | addItemBool("MonthViewWeek",&mMonthViewWeek,false); | 225 | addItemBool("MonthViewWeek",&mMonthViewWeek,false); |
226 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); | 226 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); |
227 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); | 227 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); |
228 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); | 228 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); |
229 | addItemBool("UseAppColors",&mUseAppColors,false); | 229 | addItemBool("UseAppColors",&mUseAppColors,false); |
230 | 230 | ||
231 | 231 | ||
232 | 232 | ||
233 | KPrefs::setCurrentGroup("Views"); | 233 | KPrefs::setCurrentGroup("Views"); |
234 | addItemBool("Block Popup Menu",&mBlockPopupMenu,false); | 234 | addItemBool("Block Popup Menu",&mBlockPopupMenu,false); |
235 | addItemBool("Show Date Navigator",&mShowDateNavigator,true); | 235 | addItemBool("Show Date Navigator",&mShowDateNavigator,true); |
236 | addItemInt("Hour Size",&mHourSize,8); | 236 | addItemInt("Hour Size",&mHourSize,8); |
237 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); | 237 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); |
238 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); | 238 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); |
239 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); | 239 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); |
240 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); | 240 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); |
241 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); | 241 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); |
242 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); | 242 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); |
243 | addItemBool("ShowTimesInMonthCell",&mMonthShowTimes,true); | 243 | addItemBool("ShowTimesInMonthCell",&mMonthShowTimes,true); |
244 | #ifdef DESKTOP_VERION | 244 | #ifdef DESKTOP_VERION |
245 | addItemBool("Enable ToolTips",&mEnableToolTips,true); | 245 | addItemBool("Enable ToolTips",&mEnableToolTips,true); |
246 | #else | 246 | #else |
247 | addItemBool("Enable ToolTips",&mEnableToolTips,false); | 247 | addItemBool("Enable ToolTips",&mEnableToolTips,false); |
248 | #endif | 248 | #endif |
249 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); | 249 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); |
250 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); | 250 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); |
251 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); | 251 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); |
252 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); | 252 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); |
253 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,true); | 253 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,true); |
254 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); | 254 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); |
255 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); | 255 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); |
256 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); | 256 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); |
257 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); | 257 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); |
258 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true);; | 258 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true);; |
259 | addItemBool("WNViewShowsPast",&mWNViewShowsPast,true); | 259 | addItemBool("WNViewShowsPast",&mWNViewShowsPast,true); |
260 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); | 260 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); |
261 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); | 261 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); |
262 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); | 262 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); |
263 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); | 263 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); |
264 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); | 264 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); |
265 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,true); | 265 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,true); |
266 | addItemBool("MonthViewUsesBigFont",&mMonthViewUsesBigFont,true); | 266 | addItemBool("MonthViewUsesBigFont",&mMonthViewUsesBigFont,true); |
267 | addItemBool("MonthViewWeekRowlayout",&mMonthViewWeekRowlayout,true); | ||
267 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); | 268 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); |
268 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); | 269 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); |
269 | #ifdef DESKTOP_VERSION | 270 | #ifdef DESKTOP_VERSION |
270 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); | 271 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); |
271 | #else | 272 | #else |
272 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); | 273 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); |
273 | #endif | 274 | #endif |
274 | addItemInt("Day Begins",&mDayBegins,7); | 275 | addItemInt("Day Begins",&mDayBegins,7); |
275 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); | 276 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); |
276 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); | 277 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); |
277 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); | 278 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); |
278 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); | 279 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); |
279 | 280 | ||
280 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); | 281 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); |
281 | addItemBool("Full View Month",&mFullViewMonth,true); | 282 | addItemBool("Full View Month",&mFullViewMonth,true); |
282 | addItemBool("Full View Todo",&mFullViewTodo,true); | 283 | addItemBool("Full View Todo",&mFullViewTodo,true); |
283 | addItemBool("Quick Todo",&mEnableQuickTodo,false); | 284 | addItemBool("Quick Todo",&mEnableQuickTodo,false); |
284 | 285 | ||
285 | addItemInt("Next X Days",&mNextXDays,3); | 286 | addItemInt("Next X Days",&mNextXDays,3); |
286 | 287 | ||
287 | KPrefs::setCurrentGroup("Printer"); | 288 | KPrefs::setCurrentGroup("Printer"); |
288 | 289 | ||
289 | KPrefs::setCurrentGroup("Layout"); | 290 | KPrefs::setCurrentGroup("Layout"); |
290 | 291 | ||
291 | addItemBool("CompactDialogs",&mCompactDialogs,false); | 292 | addItemBool("CompactDialogs",&mCompactDialogs,false); |
292 | addItemBool("VerticalScreen",&mVerticalScreen,true); | 293 | addItemBool("VerticalScreen",&mVerticalScreen,true); |
293 | 294 | ||
294 | KPrefs::setCurrentGroup("KOrganizer Plugins"); | 295 | KPrefs::setCurrentGroup("KOrganizer Plugins"); |
295 | 296 | ||
296 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); | 297 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); |
297 | 298 | ||
298 | KPrefs::setCurrentGroup("Group Scheduling"); | 299 | KPrefs::setCurrentGroup("Group Scheduling"); |
299 | 300 | ||
300 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); | 301 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); |
301 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); | 302 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); |
302 | addItemStringList("AdditionalMails",&mAdditionalMails,""); | 303 | addItemStringList("AdditionalMails",&mAdditionalMails,""); |
303 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); | 304 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); |
304 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); | 305 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); |
305 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); | 306 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); |
306 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); | 307 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); |
307 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); | 308 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); |
308 | 309 | ||
309 | KPrefs::setCurrentGroup( "Editors" ); | 310 | KPrefs::setCurrentGroup( "Editors" ); |
310 | 311 | ||
311 | addItemStringList( "EventTemplates", &mEventTemplates ); | 312 | addItemStringList( "EventTemplates", &mEventTemplates ); |
312 | addItemStringList( "TodoTemplates", &mTodoTemplates ); | 313 | addItemStringList( "TodoTemplates", &mTodoTemplates ); |
313 | 314 | ||
314 | addItemInt("DestinationPolicy",&mDestination,standardDestination); | 315 | addItemInt("DestinationPolicy",&mDestination,standardDestination); |
315 | 316 | ||
316 | KPrefs::setCurrentGroup( "ViewOptions" ); | 317 | KPrefs::setCurrentGroup( "ViewOptions" ); |
317 | addItemBool("EVshowDetails",&mEVshowDetails,true); | 318 | addItemBool("EVshowDetails",&mEVshowDetails,true); |
318 | addItemBool("EVshowCreated",&mEVshowCreated,true); | 319 | addItemBool("EVshowCreated",&mEVshowCreated,true); |
319 | addItemBool("EVshowChanged",&mEVshowChanged,true); | 320 | addItemBool("EVshowChanged",&mEVshowChanged,true); |
320 | addItemBool("WTshowDetails",&mWTshowDetails,false); | 321 | addItemBool("WTshowDetails",&mWTshowDetails,false); |
321 | addItemBool("WTshowCreated",&mWTshowCreated,false); | 322 | addItemBool("WTshowCreated",&mWTshowCreated,false); |
322 | addItemBool("WTshowChanged",&mWTshowChanged,false); | 323 | addItemBool("WTshowChanged",&mWTshowChanged,false); |
323 | mCalendars.setAutoDelete( true ); | 324 | mCalendars.setAutoDelete( true ); |
324 | } | 325 | } |
325 | 326 | ||
326 | 327 | ||
327 | KOPrefs::~KOPrefs() | 328 | KOPrefs::~KOPrefs() |
328 | { | 329 | { |
329 | if (mInstance == this) | 330 | if (mInstance == this) |
330 | mInstance = insd.setObject(0); | 331 | mInstance = insd.setObject(0); |
331 | mCalendars.setAutoDelete( true ); | 332 | mCalendars.setAutoDelete( true ); |
332 | mCalendars.clear(); | 333 | mCalendars.clear(); |
333 | //qDebug("KOPrefs::~KOPrefs() "); | 334 | //qDebug("KOPrefs::~KOPrefs() "); |
334 | } | 335 | } |
335 | 336 | ||
336 | 337 | ||
337 | KOPrefs *KOPrefs::instance() | 338 | KOPrefs *KOPrefs::instance() |
338 | { | 339 | { |
339 | if (!mInstance) { | 340 | if (!mInstance) { |
340 | mInstance = insd.setObject(new KOPrefs()); | 341 | mInstance = insd.setObject(new KOPrefs()); |
341 | mInstance->readConfig(); | 342 | mInstance->readConfig(); |
342 | } | 343 | } |
343 | 344 | ||
344 | return mInstance; | 345 | return mInstance; |
345 | } | 346 | } |
346 | 347 | ||
347 | void KOPrefs::usrSetDefaults() | 348 | void KOPrefs::usrSetDefaults() |
348 | { | 349 | { |
349 | 350 | ||
350 | } | 351 | } |
351 | 352 | ||
352 | void KOPrefs::fillMailDefaults() | 353 | void KOPrefs::fillMailDefaults() |
353 | { | 354 | { |
354 | if (mName.isEmpty()) mName = i18n("Anonymous"); | 355 | if (mName.isEmpty()) mName = i18n("Anonymous"); |
355 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); | 356 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); |
356 | } | 357 | } |
357 | 358 | ||
358 | void KOPrefs::setTimeZoneIdDefault() | 359 | void KOPrefs::setTimeZoneIdDefault() |
359 | { | 360 | { |
360 | ; | 361 | ; |
361 | } | 362 | } |
362 | 363 | ||
363 | void KOPrefs::setAllDefaults() | 364 | void KOPrefs::setAllDefaults() |
364 | { | 365 | { |
365 | setCategoryDefaults(); | 366 | setCategoryDefaults(); |
366 | mEventSummaryUser = getDefaultList() ; | 367 | mEventSummaryUser = getDefaultList() ; |
367 | mTodoSummaryUser = getDefaultList() ; | 368 | mTodoSummaryUser = getDefaultList() ; |
368 | mJournalSummaryUser = getDefaultList() ; | 369 | mJournalSummaryUser = getDefaultList() ; |
369 | mLocationDefaults = getLocationDefaultList(); | 370 | mLocationDefaults = getLocationDefaultList(); |
370 | } | 371 | } |
371 | 372 | ||
372 | void KOPrefs::setCategoryDefaults() | 373 | void KOPrefs::setCategoryDefaults() |
373 | { | 374 | { |
374 | mCustomCategories.clear(); | 375 | mCustomCategories.clear(); |
375 | mCustomCategories = getDefaultList(); | 376 | mCustomCategories = getDefaultList(); |
376 | 377 | ||
377 | QStringList::Iterator it; | 378 | QStringList::Iterator it; |
378 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 379 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
379 | setCategoryColor(*it,mDefaultCategoryColor); | 380 | setCategoryColor(*it,mDefaultCategoryColor); |
380 | } | 381 | } |
381 | } | 382 | } |
382 | QStringList KOPrefs::getLocationDefaultList() | 383 | QStringList KOPrefs::getLocationDefaultList() |
383 | { | 384 | { |
384 | QStringList retval ; | 385 | QStringList retval ; |
385 | retval << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") | 386 | retval << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") |
386 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") | 387 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") |
387 | << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") | 388 | << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") |
388 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; | 389 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; |
389 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") | 390 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") |
390 | 391 | ||
391 | retval.sort(); | 392 | retval.sort(); |
392 | return retval; | 393 | return retval; |
393 | } | 394 | } |
394 | QStringList KOPrefs::getDefaultList() | 395 | QStringList KOPrefs::getDefaultList() |
395 | { | 396 | { |
396 | QStringList retval ; | 397 | QStringList retval ; |
397 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Customer") | 398 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Customer") |
398 | << i18n("Break") | 399 | << i18n("Break") |
399 | << i18n("Family") << i18n("Favorites") << i18n("Fishing") << i18n("Gifts") | 400 | << i18n("Family") << i18n("Favorites") << i18n("Fishing") << i18n("Gifts") |
400 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") | 401 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") |
401 | << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner") << i18n("Personal") | 402 | << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner") << i18n("Personal") |
402 | << i18n("PHB") << i18n("Phone Calls") << i18n("Shopping") | 403 | << i18n("PHB") << i18n("Phone Calls") << i18n("Shopping") |
403 | << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV") | 404 | << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV") |
404 | << i18n("Vacation") ; | 405 | << i18n("Vacation") ; |
405 | retval.sort(); | 406 | retval.sort(); |
406 | //qDebug("cat %s ", retval.join("-").latin1()); | 407 | //qDebug("cat %s ", retval.join("-").latin1()); |
407 | return retval; | 408 | return retval; |
408 | } | 409 | } |
409 | // << i18n("Business Travel") << i18n("Education") << i18n("Hiking") << i18n("Hunting") << i18n("Recurring") << i18n("Personal Travel") << i18n("Speach") << i18n("Festival") << i18n("Competition")<< i18n("Party")<< i18n("Projects")<< i18n("Kids") << i18n("Special Occasion")<< i18n("Breakfast")<< i18n("Dinner") << i18n("Lunch")<< i18n("University")<< i18n("School")<< i18n("Flight")<< i18n("Key Customer") << i18n("VIP") << i18n("SyncEvent") << i18n("Cinema") | 410 | // << i18n("Business Travel") << i18n("Education") << i18n("Hiking") << i18n("Hunting") << i18n("Recurring") << i18n("Personal Travel") << i18n("Speach") << i18n("Festival") << i18n("Competition")<< i18n("Party")<< i18n("Projects")<< i18n("Kids") << i18n("Special Occasion")<< i18n("Breakfast")<< i18n("Dinner") << i18n("Lunch")<< i18n("University")<< i18n("School")<< i18n("Flight")<< i18n("Key Customer") << i18n("VIP") << i18n("SyncEvent") << i18n("Cinema") |
410 | void KOPrefs::usrReadConfig() | 411 | void KOPrefs::usrReadConfig() |
411 | { | 412 | { |
412 | config()->setGroup("General"); | 413 | config()->setGroup("General"); |
413 | 414 | ||
414 | //qDebug("KOPrefs::usrReadConfig() "); | 415 | //qDebug("KOPrefs::usrReadConfig() "); |
415 | mCustomCategories = config()->readListEntry("Custom Categories"); | 416 | mCustomCategories = config()->readListEntry("Custom Categories"); |
416 | mOldLoadedLanguage = mOldLanguage ; | 417 | mOldLoadedLanguage = mOldLanguage ; |
417 | mOldLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; | 418 | mOldLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; |
418 | if (mLocationDefaults.isEmpty()) { | 419 | if (mLocationDefaults.isEmpty()) { |
419 | mLocationDefaults = getLocationDefaultList(); | 420 | mLocationDefaults = getLocationDefaultList(); |
420 | } | 421 | } |
421 | 422 | ||
422 | if (mEventSummaryUser.isEmpty()) { | 423 | if (mEventSummaryUser.isEmpty()) { |
423 | mEventSummaryUser = getDefaultList() ; | 424 | mEventSummaryUser = getDefaultList() ; |
424 | } | 425 | } |
425 | if (mTodoSummaryUser.isEmpty()) { | 426 | if (mTodoSummaryUser.isEmpty()) { |
426 | mTodoSummaryUser = getDefaultList() ; | 427 | mTodoSummaryUser = getDefaultList() ; |
427 | } | 428 | } |
428 | 429 | ||
429 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); | 430 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); |
430 | 431 | ||
431 | config()->setGroup("Personal Settings"); | 432 | config()->setGroup("Personal Settings"); |
432 | mName = config()->readEntry("user_name",""); | 433 | mName = config()->readEntry("user_name",""); |
433 | mEmail = config()->readEntry("user_email",""); | 434 | mEmail = config()->readEntry("user_email",""); |
434 | fillMailDefaults(); | 435 | fillMailDefaults(); |
435 | 436 | ||
436 | config()->setGroup("Category Colors"); | 437 | config()->setGroup("Category Colors"); |
437 | QStringList::Iterator it; | 438 | QStringList::Iterator it; |
438 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 439 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
439 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); | 440 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); |
440 | 441 | ||
441 | } | 442 | } |
442 | KConfig fc (locateLocal("config","kopicalendarrc")); | 443 | KConfig fc (locateLocal("config","kopicalendarrc")); |
443 | fc.setGroup("CC"); | 444 | fc.setGroup("CC"); |
444 | int numCals = fc.readNumEntry("NumberCalendars",0 ); | 445 | int numCals = fc.readNumEntry("NumberCalendars",0 ); |
445 | mNextAvailableCalendar = 1; | 446 | mNextAvailableCalendar = 1; |
446 | if ( numCals == 0 ) { | 447 | if ( numCals == 0 ) { |
447 | KopiCalendarFile *kkf = getNewCalendar(); | 448 | KopiCalendarFile *kkf = getNewCalendar(); |
448 | kkf->isStandard = true; | 449 | kkf->isStandard = true; |
449 | kkf->mName = i18n("Standard"); | 450 | kkf->mName = i18n("Standard"); |
450 | kkf->mFileName = locateLocal( "data", "korganizer/mycalendar.ics" ); | 451 | kkf->mFileName = locateLocal( "data", "korganizer/mycalendar.ics" ); |
451 | } | 452 | } |
452 | while ( mNextAvailableCalendar <= numCals ) { | 453 | while ( mNextAvailableCalendar <= numCals ) { |
453 | //qDebug("Read cal #%d ", mNextAvailableCalendar ); | 454 | //qDebug("Read cal #%d ", mNextAvailableCalendar ); |
454 | QString prefix = "Cal_" +QString::number( mNextAvailableCalendar ); | 455 | QString prefix = "Cal_" +QString::number( mNextAvailableCalendar ); |
455 | KopiCalendarFile *kkf = getNewCalendar(); | 456 | KopiCalendarFile *kkf = getNewCalendar(); |
456 | kkf->isStandard = fc.readBoolEntry( prefix+"_isStandard", false ); | 457 | kkf->isStandard = fc.readBoolEntry( prefix+"_isStandard", false ); |
457 | kkf->isEnabled = fc.readBoolEntry( prefix+"_isEnabled", true); | 458 | kkf->isEnabled = fc.readBoolEntry( prefix+"_isEnabled", true); |
458 | kkf->isRelative = fc.readBoolEntry( prefix+"_isRelative", false ); | 459 | kkf->isRelative = fc.readBoolEntry( prefix+"_isRelative", false ); |
459 | kkf->isAlarmEnabled = fc.readBoolEntry( prefix+"_isAlarmEnabled", true); | 460 | kkf->isAlarmEnabled = fc.readBoolEntry( prefix+"_isAlarmEnabled", true); |
460 | kkf->isReadOnly = fc.readBoolEntry( prefix+"_isReadOnly", false); | 461 | kkf->isReadOnly = fc.readBoolEntry( prefix+"_isReadOnly", false); |
461 | kkf->mName = fc.readEntry( prefix+"_Name", "Calendar"); | 462 | kkf->mName = fc.readEntry( prefix+"_Name", "Calendar"); |
462 | kkf->mFileName = fc.readEntry( prefix+"_FileName", kkf->mFileName); | 463 | kkf->mFileName = fc.readEntry( prefix+"_FileName", kkf->mFileName); |
463 | kkf->mSavedFileName = fc.readEntry( prefix+"_SavedFileName", kkf->mFileName); | 464 | kkf->mSavedFileName = fc.readEntry( prefix+"_SavedFileName", kkf->mFileName); |
464 | kkf->mDefaultColor = fc.readColorEntry( prefix+"_Color",&mEventColor); | 465 | kkf->mDefaultColor = fc.readColorEntry( prefix+"_Color",&mEventColor); |
465 | if ( kkf->mCalNumber == 1 ) { | 466 | if ( kkf->mCalNumber == 1 ) { |
466 | kkf->mFileName = locateLocal( "data", "korganizer/mycalendar.ics" ); | 467 | kkf->mFileName = locateLocal( "data", "korganizer/mycalendar.ics" ); |
467 | } | 468 | } |
468 | //qDebug("NAME %s %s", kkf->mName.latin1(), i18n("Birthdays").latin1() ); | 469 | //qDebug("NAME %s %s", kkf->mName.latin1(), i18n("Birthdays").latin1() ); |
469 | if ( kkf->mName == i18n("Birthdays") ) { | 470 | if ( kkf->mName == i18n("Birthdays") ) { |
470 | kkf->mFileName = locateLocal( "data", "korganizer/birthdays.ics" ); | 471 | kkf->mFileName = locateLocal( "data", "korganizer/birthdays.ics" ); |
471 | } | 472 | } |
472 | if ( kkf->isRelative ) | 473 | if ( kkf->isRelative ) |
473 | kkf->mFileName = KGlobalSettings::calendarDir() + kkf->mSavedFileName; | 474 | kkf->mFileName = KGlobalSettings::calendarDir() + kkf->mSavedFileName; |
474 | } | 475 | } |
475 | 476 | ||
476 | KPimPrefs::usrReadConfig(); | 477 | KPimPrefs::usrReadConfig(); |
477 | } | 478 | } |
478 | 479 | ||
479 | KopiCalendarFile * KOPrefs::getCalendar( int num ) | 480 | KopiCalendarFile * KOPrefs::getCalendar( int num ) |
480 | { | 481 | { |
481 | return mDefCalColors[num-1]; | 482 | return mDefCalColors[num-1]; |
482 | } | 483 | } |
483 | 484 | ||
484 | KopiCalendarFile * KOPrefs::getNewCalendar() | 485 | KopiCalendarFile * KOPrefs::getNewCalendar() |
485 | { | 486 | { |
486 | KopiCalendarFile * kkf = new KopiCalendarFile(); | 487 | KopiCalendarFile * kkf = new KopiCalendarFile(); |
487 | kkf->mCalNumber = mNextAvailableCalendar; | 488 | kkf->mCalNumber = mNextAvailableCalendar; |
488 | mDefCalColors.resize( mNextAvailableCalendar ); | 489 | mDefCalColors.resize( mNextAvailableCalendar ); |
489 | mDefCalColors[mNextAvailableCalendar-1] = kkf; | 490 | mDefCalColors[mNextAvailableCalendar-1] = kkf; |
490 | ++mNextAvailableCalendar; | 491 | ++mNextAvailableCalendar; |
491 | kkf->mDefaultColor = mEventColor; | 492 | kkf->mDefaultColor = mEventColor; |
492 | kkf->mName = i18n("New Calendar"); | 493 | kkf->mName = i18n("New Calendar"); |
493 | mCalendars.append( kkf ); | 494 | mCalendars.append( kkf ); |
494 | return kkf; | 495 | return kkf; |
495 | } | 496 | } |
496 | void KOPrefs::deleteCalendar( int num ) | 497 | void KOPrefs::deleteCalendar( int num ) |
497 | { | 498 | { |
498 | KopiCalendarFile * kkf = mCalendars.first(); | 499 | KopiCalendarFile * kkf = mCalendars.first(); |
499 | while ( kkf ) { | 500 | while ( kkf ) { |
500 | if ( kkf->mCalNumber == num ) { | 501 | if ( kkf->mCalNumber == num ) { |
501 | qDebug("KOPrefs::deleteCalendar %d ", num ); | 502 | qDebug("KOPrefs::deleteCalendar %d ", num ); |
502 | mCalendars.remove( kkf ); | 503 | mCalendars.remove( kkf ); |
503 | delete kkf; | 504 | delete kkf; |
504 | return; | 505 | return; |
505 | } | 506 | } |
506 | kkf = mCalendars.next(); | 507 | kkf = mCalendars.next(); |
507 | } | 508 | } |
508 | } | 509 | } |
509 | int KOPrefs::getCalendarID( const QString & name ) | 510 | int KOPrefs::getCalendarID( const QString & name ) |
510 | { | 511 | { |
511 | KopiCalendarFile * kkf = mCalendars.first(); | 512 | KopiCalendarFile * kkf = mCalendars.first(); |
512 | while ( kkf ) { | 513 | while ( kkf ) { |
513 | if ( name == kkf->mName) | 514 | if ( name == kkf->mName) |
514 | return kkf->mCalNumber; | 515 | return kkf->mCalNumber; |
515 | kkf = mCalendars.next(); | 516 | kkf = mCalendars.next(); |
516 | } | 517 | } |
517 | return 1; | 518 | return 1; |
518 | } | 519 | } |
519 | QString KOPrefs::calName( int calNum) const | 520 | QString KOPrefs::calName( int calNum) const |
520 | { | 521 | { |
521 | return (mDefCalColors[calNum-1])->mName; | 522 | return (mDefCalColors[calNum-1])->mName; |
522 | } | 523 | } |
523 | QColor KOPrefs::defaultColor( int calNum ) const | 524 | QColor KOPrefs::defaultColor( int calNum ) const |
524 | { | 525 | { |
525 | if ( calNum == 1 ) return mEventColor; | 526 | if ( calNum == 1 ) return mEventColor; |
526 | return (mDefCalColors[calNum-1])->mDefaultColor; | 527 | return (mDefCalColors[calNum-1])->mDefaultColor; |
527 | } | 528 | } |
528 | void KOPrefs::usrWriteConfig() | 529 | void KOPrefs::usrWriteConfig() |
529 | { | 530 | { |
530 | config()->setGroup("General"); | 531 | config()->setGroup("General"); |
531 | config()->writeEntry("Custom Categories",mCustomCategories); | 532 | config()->writeEntry("Custom Categories",mCustomCategories); |
532 | 533 | ||
533 | config()->setGroup("Personal Settings"); | 534 | config()->setGroup("Personal Settings"); |
534 | config()->writeEntry("user_name",mName); | 535 | config()->writeEntry("user_name",mName); |
535 | config()->writeEntry("user_email",mEmail); | 536 | config()->writeEntry("user_email",mEmail); |
536 | 537 | ||
537 | config()->setGroup("Category Colors"); | 538 | config()->setGroup("Category Colors"); |
538 | QDictIterator<QColor> it(mCategoryColors); | 539 | QDictIterator<QColor> it(mCategoryColors); |
539 | while (it.current()) { | 540 | while (it.current()) { |
540 | config()->writeEntry(it.currentKey(),*(it.current())); | 541 | config()->writeEntry(it.currentKey(),*(it.current())); |
541 | ++it; | 542 | ++it; |
542 | } | 543 | } |
543 | KConfig fc (locateLocal("config","kopicalendarrc")); | 544 | KConfig fc (locateLocal("config","kopicalendarrc")); |
544 | fc.setGroup("CC"); | 545 | fc.setGroup("CC"); |
545 | fc.deleteGroup( "CC"); | 546 | fc.deleteGroup( "CC"); |
546 | fc.setGroup("CC"); | 547 | fc.setGroup("CC"); |
547 | fc.writeEntry("NumberCalendars",mCalendars.count()); | 548 | fc.writeEntry("NumberCalendars",mCalendars.count()); |
548 | int numCal = 1; | 549 | int numCal = 1; |
549 | int writeCal = 0; | 550 | int writeCal = 0; |
550 | while ( numCal < mNextAvailableCalendar ) { | 551 | while ( numCal < mNextAvailableCalendar ) { |
551 | KopiCalendarFile * kkf = mCalendars.first(); | 552 | KopiCalendarFile * kkf = mCalendars.first(); |
552 | while ( kkf ) { | 553 | while ( kkf ) { |
553 | //qDebug("cal num %d %d ", kkf->mCalNumber, numCal); | 554 | //qDebug("cal num %d %d ", kkf->mCalNumber, numCal); |
554 | if ( kkf->mCalNumber == numCal ) { | 555 | if ( kkf->mCalNumber == numCal ) { |
555 | ++writeCal; | 556 | ++writeCal; |
556 | //qDebug("Write calendar %d %d ", numCal , writeCal); | 557 | //qDebug("Write calendar %d %d ", numCal , writeCal); |
557 | QString prefix = "Cal_" + QString::number( writeCal ); | 558 | QString prefix = "Cal_" + QString::number( writeCal ); |
558 | fc.writeEntry( prefix+"_isStandard", kkf->isStandard ); | 559 | fc.writeEntry( prefix+"_isStandard", kkf->isStandard ); |
559 | fc.writeEntry( prefix+"_isEnabled", kkf->isEnabled ); | 560 | fc.writeEntry( prefix+"_isEnabled", kkf->isEnabled ); |
560 | fc.writeEntry( prefix+"_isAlarmEnabled", kkf->isAlarmEnabled ); | 561 | fc.writeEntry( prefix+"_isAlarmEnabled", kkf->isAlarmEnabled ); |
561 | fc.writeEntry( prefix+"_isReadOnly", kkf->isReadOnly ); | 562 | fc.writeEntry( prefix+"_isReadOnly", kkf->isReadOnly ); |
562 | fc.writeEntry( prefix+"_isRelative", kkf->isRelative ); | 563 | fc.writeEntry( prefix+"_isRelative", kkf->isRelative ); |
563 | fc.writeEntry( prefix+"_Name", kkf->mName); | 564 | fc.writeEntry( prefix+"_Name", kkf->mName); |
564 | fc.writeEntry( prefix+"_FileName", kkf->mFileName); | 565 | fc.writeEntry( prefix+"_FileName", kkf->mFileName); |
565 | fc.writeEntry( prefix+"_SavedFileName", kkf->mSavedFileName); | 566 | fc.writeEntry( prefix+"_SavedFileName", kkf->mSavedFileName); |
566 | fc.writeEntry( prefix+"_Color",kkf->mDefaultColor); | 567 | fc.writeEntry( prefix+"_Color",kkf->mDefaultColor); |
567 | } | 568 | } |
568 | kkf = mCalendars.next(); | 569 | kkf = mCalendars.next(); |
569 | } | 570 | } |
570 | ++numCal; | 571 | ++numCal; |
571 | } | 572 | } |
572 | fc.sync(); | 573 | fc.sync(); |
573 | KPimPrefs::usrWriteConfig(); | 574 | KPimPrefs::usrWriteConfig(); |
574 | } | 575 | } |
575 | 576 | ||
576 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) | 577 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) |
577 | { | 578 | { |
578 | mCategoryColors.replace(cat,new QColor(color)); | 579 | mCategoryColors.replace(cat,new QColor(color)); |
579 | } | 580 | } |
580 | 581 | ||
581 | QColor *KOPrefs::categoryColor(QString cat) | 582 | QColor *KOPrefs::categoryColor(QString cat) |
582 | { | 583 | { |
583 | QColor *color = 0; | 584 | QColor *color = 0; |
584 | 585 | ||
585 | if (!cat.isEmpty()) color = mCategoryColors[cat]; | 586 | if (!cat.isEmpty()) color = mCategoryColors[cat]; |
586 | 587 | ||
587 | if (color) return color; | 588 | if (color) return color; |
588 | else return &mDefaultCategoryColor; | 589 | else return &mDefaultCategoryColor; |
589 | } | 590 | } |
590 | 591 | ||
591 | void KOPrefs::setFullName(const QString &name) | 592 | void KOPrefs::setFullName(const QString &name) |
592 | { | 593 | { |
593 | mName = name; | 594 | mName = name; |
594 | } | 595 | } |
595 | 596 | ||
596 | void KOPrefs::setEmail(const QString &email) | 597 | void KOPrefs::setEmail(const QString &email) |
597 | { | 598 | { |
598 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); | 599 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); |
599 | mEmail = email; | 600 | mEmail = email; |
600 | } | 601 | } |
601 | 602 | ||
602 | QString KOPrefs::fullName() | 603 | QString KOPrefs::fullName() |
603 | { | 604 | { |
604 | if (mEmailControlCenter) { | 605 | if (mEmailControlCenter) { |
605 | KEMailSettings settings; | 606 | KEMailSettings settings; |
606 | return settings.getSetting(KEMailSettings::RealName); | 607 | return settings.getSetting(KEMailSettings::RealName); |
607 | } else { | 608 | } else { |
608 | return mName; | 609 | return mName; |
609 | } | 610 | } |
610 | } | 611 | } |
611 | 612 | ||
612 | QString KOPrefs::email() | 613 | QString KOPrefs::email() |
613 | { | 614 | { |
614 | if (mEmailControlCenter) { | 615 | if (mEmailControlCenter) { |
615 | KEMailSettings settings; | 616 | KEMailSettings settings; |
616 | return settings.getSetting(KEMailSettings::EmailAddress); | 617 | return settings.getSetting(KEMailSettings::EmailAddress); |
617 | } else { | 618 | } else { |
618 | return mEmail; | 619 | return mEmail; |
619 | } | 620 | } |
620 | } | 621 | } |
621 | KConfig* KOPrefs::getConfig() | 622 | KConfig* KOPrefs::getConfig() |
622 | { | 623 | { |
623 | return config(); | 624 | return config(); |
624 | } | 625 | } |
diff --git a/korganizer/koprefs.h b/korganizer/koprefs.h index 392360d..2ff03fa 100644 --- a/korganizer/koprefs.h +++ b/korganizer/koprefs.h | |||
@@ -1,363 +1,364 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef KOPREFS_H | 23 | #ifndef KOPREFS_H |
24 | #define KOPREFS_H | 24 | #define KOPREFS_H |
25 | 25 | ||
26 | 26 | ||
27 | #include <libkdepim/kpimprefs.h> | 27 | #include <libkdepim/kpimprefs.h> |
28 | #include <qdict.h> | 28 | #include <qdict.h> |
29 | #include <qdir.h> | 29 | #include <qdir.h> |
30 | #include <qobject.h> | 30 | #include <qobject.h> |
31 | 31 | ||
32 | class KConfig; | 32 | class KConfig; |
33 | class QFont; | 33 | class QFont; |
34 | class QColor; | 34 | class QColor; |
35 | class QStringList; | 35 | class QStringList; |
36 | 36 | ||
37 | #define VIEW_WN_VIEW 1 | 37 | #define VIEW_WN_VIEW 1 |
38 | #define VIEW_NX_VIEW 2 | 38 | #define VIEW_NX_VIEW 2 |
39 | #define VIEW_J_VIEW 3 | 39 | #define VIEW_J_VIEW 3 |
40 | #define VIEW_A_VIEW 4 | 40 | #define VIEW_A_VIEW 4 |
41 | #define VIEW_ML_VIEW 5 | 41 | #define VIEW_ML_VIEW 5 |
42 | #define VIEW_M_VIEW 6 | 42 | #define VIEW_M_VIEW 6 |
43 | #define VIEW_L_VIEW 7 | 43 | #define VIEW_L_VIEW 7 |
44 | #define VIEW_T_VIEW 8 | 44 | #define VIEW_T_VIEW 8 |
45 | 45 | ||
46 | class KopiCalendarFile : public QObject | 46 | class KopiCalendarFile : public QObject |
47 | { | 47 | { |
48 | public: | 48 | public: |
49 | KopiCalendarFile( ) : QObject( ) | 49 | KopiCalendarFile( ) : QObject( ) |
50 | { | 50 | { |
51 | isStandard = false; | 51 | isStandard = false; |
52 | isEnabled = true; | 52 | isEnabled = true; |
53 | isAlarmEnabled = true; | 53 | isAlarmEnabled = true; |
54 | isReadOnly = false; | 54 | isReadOnly = false; |
55 | mName = "Calendar"; | 55 | mName = "Calendar"; |
56 | mFileName = QDir::homeDirPath() + "/icalfile.ics"; | 56 | mFileName = QDir::homeDirPath() + "/icalfile.ics"; |
57 | mSavedFileName = "icalfile.ics"; | 57 | mSavedFileName = "icalfile.ics"; |
58 | mCalNumber = 0; | 58 | mCalNumber = 0; |
59 | mDefaultColor = Qt::red; | 59 | mDefaultColor = Qt::red; |
60 | mErrorOnLoad = false; | 60 | mErrorOnLoad = false; |
61 | isRelative = false; | 61 | isRelative = false; |
62 | } | 62 | } |
63 | bool isStandard; | 63 | bool isStandard; |
64 | bool isEnabled; | 64 | bool isEnabled; |
65 | bool isAlarmEnabled; | 65 | bool isAlarmEnabled; |
66 | bool isReadOnly; | 66 | bool isReadOnly; |
67 | bool mErrorOnLoad; | 67 | bool mErrorOnLoad; |
68 | QString mName; | 68 | QString mName; |
69 | QString mFileName; | 69 | QString mFileName; |
70 | QString mSavedFileName; | 70 | QString mSavedFileName; |
71 | bool isRelative; | 71 | bool isRelative; |
72 | int mCalNumber; | 72 | int mCalNumber; |
73 | QColor mDefaultColor; | 73 | QColor mDefaultColor; |
74 | QDateTime mLoadDt; | 74 | QDateTime mLoadDt; |
75 | }; | 75 | }; |
76 | class KOPrefs : public KPimPrefs | 76 | class KOPrefs : public KPimPrefs |
77 | { | 77 | { |
78 | public: | 78 | public: |
79 | enum { FormatVCalendar, FormatICalendar }; | 79 | enum { FormatVCalendar, FormatICalendar }; |
80 | enum { MailClientKMail, MailClientSendmail }; | 80 | enum { MailClientKMail, MailClientSendmail }; |
81 | enum { IMIPDummy, IMIPKMail }; | 81 | enum { IMIPDummy, IMIPKMail }; |
82 | enum { IMIPOutbox, IMIPdirectsend }; | 82 | enum { IMIPOutbox, IMIPdirectsend }; |
83 | enum { neverAuto, addressbookAuto, selectedAuto }; | 83 | enum { neverAuto, addressbookAuto, selectedAuto }; |
84 | enum { standardDestination, askDestination }; | 84 | enum { standardDestination, askDestination }; |
85 | 85 | ||
86 | virtual ~KOPrefs(); | 86 | virtual ~KOPrefs(); |
87 | 87 | ||
88 | /** Get instance of KOPrefs. It is made sure that there is only one | 88 | /** Get instance of KOPrefs. It is made sure that there is only one |
89 | instance. */ | 89 | instance. */ |
90 | static KOPrefs *instance(); | 90 | static KOPrefs *instance(); |
91 | 91 | ||
92 | /** Set preferences to default values */ | 92 | /** Set preferences to default values */ |
93 | void usrSetDefaults(); | 93 | void usrSetDefaults(); |
94 | 94 | ||
95 | /** Read preferences from config file */ | 95 | /** Read preferences from config file */ |
96 | void usrReadConfig(); | 96 | void usrReadConfig(); |
97 | 97 | ||
98 | /** Write preferences to config file */ | 98 | /** Write preferences to config file */ |
99 | void usrWriteConfig(); | 99 | void usrWriteConfig(); |
100 | void setCategoryDefaults(); | 100 | void setCategoryDefaults(); |
101 | void setAllDefaults(); | 101 | void setAllDefaults(); |
102 | KopiCalendarFile * getNewCalendar(); | 102 | KopiCalendarFile * getNewCalendar(); |
103 | KopiCalendarFile * getCalendar( int ); | 103 | KopiCalendarFile * getCalendar( int ); |
104 | void deleteCalendar( int ); | 104 | void deleteCalendar( int ); |
105 | QColor defaultColor( int ) const; | 105 | QColor defaultColor( int ) const; |
106 | QString calName( int ) const; | 106 | QString calName( int ) const; |
107 | int getCalendarID( const QString & name ); | 107 | int getCalendarID( const QString & name ); |
108 | protected: | 108 | protected: |
109 | void setTimeZoneIdDefault(); | 109 | void setTimeZoneIdDefault(); |
110 | 110 | ||
111 | /** Fill empty mail fields with default values. */ | 111 | /** Fill empty mail fields with default values. */ |
112 | void fillMailDefaults(); | 112 | void fillMailDefaults(); |
113 | 113 | ||
114 | private: | 114 | private: |
115 | /** Constructor disabled for public. Use instance() to create a KOPrefs | 115 | /** Constructor disabled for public. Use instance() to create a KOPrefs |
116 | object. */ | 116 | object. */ |
117 | KOPrefs(); | 117 | KOPrefs(); |
118 | 118 | ||
119 | static KOPrefs *mInstance; | 119 | static KOPrefs *mInstance; |
120 | QStringList getDefaultList(); | 120 | QStringList getDefaultList(); |
121 | QStringList getLocationDefaultList(); | 121 | QStringList getLocationDefaultList(); |
122 | public: | 122 | public: |
123 | // preferences data | 123 | // preferences data |
124 | KConfig* getConfig(); | 124 | KConfig* getConfig(); |
125 | void setFullName(const QString &); | 125 | void setFullName(const QString &); |
126 | QString fullName(); | 126 | QString fullName(); |
127 | void setEmail(const QString &); | 127 | void setEmail(const QString &); |
128 | QString email(); | 128 | QString email(); |
129 | 129 | ||
130 | QString mAdditional; | 130 | QString mAdditional; |
131 | 131 | ||
132 | bool mEmailControlCenter; | 132 | bool mEmailControlCenter; |
133 | 133 | ||
134 | bool mBcc; | 134 | bool mBcc; |
135 | bool mAutoSave; | 135 | bool mAutoSave; |
136 | int mAutoSaveInterval; | 136 | int mAutoSaveInterval; |
137 | bool mConfirm; | 137 | bool mConfirm; |
138 | 138 | ||
139 | bool mEnableGroupScheduling; | 139 | bool mEnableGroupScheduling; |
140 | bool mEnableProjectView; | 140 | bool mEnableProjectView; |
141 | 141 | ||
142 | int mDefaultFormat; | 142 | int mDefaultFormat; |
143 | int mMailClient; | 143 | int mMailClient; |
144 | 144 | ||
145 | int mStartTime; | 145 | int mStartTime; |
146 | int mDefaultDuration; | 146 | int mDefaultDuration; |
147 | int mAlarmTime; | 147 | int mAlarmTime; |
148 | 148 | ||
149 | int mWorkingHoursStart; | 149 | int mWorkingHoursStart; |
150 | int mWorkingHoursEnd; | 150 | int mWorkingHoursEnd; |
151 | bool mExcludeHolidays; | 151 | bool mExcludeHolidays; |
152 | bool mExcludeSaturdays; | 152 | bool mExcludeSaturdays; |
153 | bool mMarcusBainsShowSeconds; | 153 | bool mMarcusBainsShowSeconds; |
154 | 154 | ||
155 | QFont mTimeBarFont; | 155 | QFont mTimeBarFont; |
156 | QFont mMonthViewFont; | 156 | QFont mMonthViewFont; |
157 | QFont mAgendaViewFont; | 157 | QFont mAgendaViewFont; |
158 | QFont mMarcusBainsFont; | 158 | QFont mMarcusBainsFont; |
159 | QFont mTimeLabelsFont; | 159 | QFont mTimeLabelsFont; |
160 | QFont mTodoViewFont; | 160 | QFont mTodoViewFont; |
161 | QFont mListViewFont; | 161 | QFont mListViewFont; |
162 | QFont mDateNavigatorFont; | 162 | QFont mDateNavigatorFont; |
163 | QFont mEditBoxFont; | 163 | QFont mEditBoxFont; |
164 | QFont mJornalViewFont; | 164 | QFont mJornalViewFont; |
165 | QFont mWhatsNextFont; | 165 | QFont mWhatsNextFont; |
166 | QFont mEventViewFont; | 166 | QFont mEventViewFont; |
167 | 167 | ||
168 | 168 | ||
169 | 169 | ||
170 | 170 | ||
171 | QColor mHolidayColor; | 171 | QColor mHolidayColor; |
172 | QColor mHighlightColor; | 172 | QColor mHighlightColor; |
173 | QColor mEventColor; | 173 | QColor mEventColor; |
174 | QColor mTodoDoneColor; | 174 | QColor mTodoDoneColor; |
175 | QColor mAgendaBgColor; | 175 | QColor mAgendaBgColor; |
176 | QColor mWorkingHoursColor; | 176 | QColor mWorkingHoursColor; |
177 | QColor mTodoDueTodayColor; | 177 | QColor mTodoDueTodayColor; |
178 | QColor mTodoOverdueColor; | 178 | QColor mTodoOverdueColor; |
179 | QColor mTodoRunColor; | 179 | QColor mTodoRunColor; |
180 | QColor mMonthViewEvenColor; | 180 | QColor mMonthViewEvenColor; |
181 | QColor mMonthViewOddColor; | 181 | QColor mMonthViewOddColor; |
182 | QColor mMonthViewHolidayColor; | 182 | QColor mMonthViewHolidayColor; |
183 | bool mMonthViewUsesDayColors; | 183 | bool mMonthViewUsesDayColors; |
184 | bool mMonthViewSatSunTog; | 184 | bool mMonthViewSatSunTog; |
185 | bool mMonthViewWeek; | 185 | bool mMonthViewWeek; |
186 | bool mMonthViewWeekRowlayout; | ||
186 | QColor mAppColor1; | 187 | QColor mAppColor1; |
187 | QColor mAppColor2; | 188 | QColor mAppColor2; |
188 | bool mUseAppColors; | 189 | bool mUseAppColors; |
189 | 190 | ||
190 | int mDayBegins; | 191 | int mDayBegins; |
191 | int mHourSize; | 192 | int mHourSize; |
192 | int mAllDaySize; | 193 | int mAllDaySize; |
193 | bool mShowFullMenu; | 194 | bool mShowFullMenu; |
194 | bool mDailyRecur; | 195 | bool mDailyRecur; |
195 | bool mWeeklyRecur; | 196 | bool mWeeklyRecur; |
196 | bool mMonthDailyRecur; | 197 | bool mMonthDailyRecur; |
197 | bool mMonthWeeklyRecur; | 198 | bool mMonthWeeklyRecur; |
198 | bool mMonthShowIcons; | 199 | bool mMonthShowIcons; |
199 | bool mMonthShowTimes; | 200 | bool mMonthShowTimes; |
200 | bool mMonthShowShort; | 201 | bool mMonthShowShort; |
201 | bool mEnableToolTips; | 202 | bool mEnableToolTips; |
202 | bool mEnableMonthScroll; | 203 | bool mEnableMonthScroll; |
203 | bool mFullViewMonth; | 204 | bool mFullViewMonth; |
204 | bool mMonthViewUsesCategoryColor; | 205 | bool mMonthViewUsesCategoryColor; |
205 | bool mFullViewTodo; | 206 | bool mFullViewTodo; |
206 | bool mShowCompletedTodo; | 207 | bool mShowCompletedTodo; |
207 | bool mMarcusBainsEnabled; | 208 | bool mMarcusBainsEnabled; |
208 | int mNextXDays; | 209 | int mNextXDays; |
209 | int mWhatsNextDays; | 210 | int mWhatsNextDays; |
210 | int mWhatsNextPrios; | 211 | int mWhatsNextPrios; |
211 | bool mEnableQuickTodo; | 212 | bool mEnableQuickTodo; |
212 | 213 | ||
213 | bool mCompactDialogs; | 214 | bool mCompactDialogs; |
214 | bool mVerticalScreen; | 215 | bool mVerticalScreen; |
215 | 216 | ||
216 | bool mShowIconNewTodo; | 217 | bool mShowIconNewTodo; |
217 | bool mShowIconNewEvent; | 218 | bool mShowIconNewEvent; |
218 | bool mShowIconSearch; | 219 | bool mShowIconSearch; |
219 | bool mShowIconList; | 220 | bool mShowIconList; |
220 | bool mShowIconDay1; | 221 | bool mShowIconDay1; |
221 | bool mShowIconDay5; | 222 | bool mShowIconDay5; |
222 | bool mShowIconDay6; | 223 | bool mShowIconDay6; |
223 | bool mShowIconDay7; | 224 | bool mShowIconDay7; |
224 | bool mShowIconMonth; | 225 | bool mShowIconMonth; |
225 | bool mShowIconTodoview; | 226 | bool mShowIconTodoview; |
226 | bool mShowIconBackFast; | 227 | bool mShowIconBackFast; |
227 | bool mShowIconBack; | 228 | bool mShowIconBack; |
228 | bool mShowIconToday; | 229 | bool mShowIconToday; |
229 | bool mShowIconForward; | 230 | bool mShowIconForward; |
230 | bool mShowIconForwardFast; | 231 | bool mShowIconForwardFast; |
231 | bool mShowIconWhatsThis; | 232 | bool mShowIconWhatsThis; |
232 | bool mShowIconWeekNum; | 233 | bool mShowIconWeekNum; |
233 | bool mShowIconNextDays; | 234 | bool mShowIconNextDays; |
234 | bool mShowIconNext; | 235 | bool mShowIconNext; |
235 | bool mShowIconJournal; | 236 | bool mShowIconJournal; |
236 | bool mShowIconFilter; | 237 | bool mShowIconFilter; |
237 | bool mShowIconOnetoolbar; | 238 | bool mShowIconOnetoolbar; |
238 | bool mShowIconNavigator; | 239 | bool mShowIconNavigator; |
239 | bool mShowIconAllday; | 240 | bool mShowIconAllday; |
240 | bool mShowIconFilterview; | 241 | bool mShowIconFilterview; |
241 | bool mShowIconToggleFull; | 242 | bool mShowIconToggleFull; |
242 | 243 | ||
243 | bool mShowIconStretch; | 244 | bool mShowIconStretch; |
244 | 245 | ||
245 | bool mToolBarHor; | 246 | bool mToolBarHor; |
246 | bool mToolBarUp; | 247 | bool mToolBarUp; |
247 | bool mToolBarHorV; | 248 | bool mToolBarHorV; |
248 | bool mToolBarUpV; | 249 | bool mToolBarUpV; |
249 | bool mToolBarHorN; | 250 | bool mToolBarHorN; |
250 | bool mToolBarUpN; | 251 | bool mToolBarUpN; |
251 | bool mToolBarHorF; | 252 | bool mToolBarHorF; |
252 | bool mToolBarUpF; | 253 | bool mToolBarUpF; |
253 | bool mToolBarMiniIcons; | 254 | bool mToolBarMiniIcons; |
254 | 255 | ||
255 | bool mAskForQuit; | 256 | bool mAskForQuit; |
256 | bool mUsePassWd; | 257 | bool mUsePassWd; |
257 | bool mShowSyncEvents; | 258 | bool mShowSyncEvents; |
258 | bool mShowTodoInAgenda; | 259 | bool mShowTodoInAgenda; |
259 | bool mShowCompletedTodoInAgenda; | 260 | bool mShowCompletedTodoInAgenda; |
260 | bool mShowTimeInAgenda; | 261 | bool mShowTimeInAgenda; |
261 | bool mHideNonStartedTodos; | 262 | bool mHideNonStartedTodos; |
262 | 263 | ||
263 | bool mBlockPopupMenu; | 264 | bool mBlockPopupMenu; |
264 | 265 | ||
265 | int mLastSyncTime; | 266 | int mLastSyncTime; |
266 | void setCategoryColor(QString cat,const QColor & color); | 267 | void setCategoryColor(QString cat,const QColor & color); |
267 | QColor *categoryColor(QString cat); | 268 | QColor *categoryColor(QString cat); |
268 | 269 | ||
269 | QString mArchiveFile; | 270 | QString mArchiveFile; |
270 | QString mHtmlExportFile; | 271 | QString mHtmlExportFile; |
271 | bool mHtmlWithSave; | 272 | bool mHtmlWithSave; |
272 | 273 | ||
273 | QStringList mSelectedPlugins; | 274 | QStringList mSelectedPlugins; |
274 | 275 | ||
275 | QString mLastImportFile; | 276 | QString mLastImportFile; |
276 | QString mLastVcalFile; | 277 | QString mLastVcalFile; |
277 | QString mLastSaveFile; | 278 | QString mLastSaveFile; |
278 | QString mLastLoadFile; | 279 | QString mLastLoadFile; |
279 | 280 | ||
280 | 281 | ||
281 | QString mDefaultAlarmFile; | 282 | QString mDefaultAlarmFile; |
282 | int mIMIPScheduler; | 283 | int mIMIPScheduler; |
283 | int mIMIPSend; | 284 | int mIMIPSend; |
284 | QStringList mAdditionalMails; | 285 | QStringList mAdditionalMails; |
285 | int mIMIPAutoRefresh; | 286 | int mIMIPAutoRefresh; |
286 | int mIMIPAutoInsertReply; | 287 | int mIMIPAutoInsertReply; |
287 | int mIMIPAutoInsertRequest; | 288 | int mIMIPAutoInsertRequest; |
288 | int mIMIPAutoFreeBusy; | 289 | int mIMIPAutoFreeBusy; |
289 | int mIMIPAutoFreeBusyReply; | 290 | int mIMIPAutoFreeBusyReply; |
290 | 291 | ||
291 | QStringList mTodoTemplates; | 292 | QStringList mTodoTemplates; |
292 | QStringList mEventTemplates; | 293 | QStringList mEventTemplates; |
293 | 294 | ||
294 | int mDestination; | 295 | int mDestination; |
295 | 296 | ||
296 | 297 | ||
297 | bool mEditOnDoubleClick; | 298 | bool mEditOnDoubleClick; |
298 | bool mViewChangeHoldFullscreen; | 299 | bool mViewChangeHoldFullscreen; |
299 | bool mViewChangeHoldNonFullscreen; | 300 | bool mViewChangeHoldNonFullscreen; |
300 | bool mCenterOnCurrentTime; | 301 | bool mCenterOnCurrentTime; |
301 | bool mSetTimeToDayStartAt; | 302 | bool mSetTimeToDayStartAt; |
302 | bool mHighlightCurrentDay; | 303 | bool mHighlightCurrentDay; |
303 | bool mUseHighlightLightColor; | 304 | bool mUseHighlightLightColor; |
304 | bool mListViewMonthTimespan; | 305 | bool mListViewMonthTimespan; |
305 | bool mWNViewShowsParents; | 306 | bool mWNViewShowsParents; |
306 | bool mWNViewShowsPast; | 307 | bool mWNViewShowsPast; |
307 | bool mWNViewShowLocation; | 308 | bool mWNViewShowLocation; |
308 | bool mTodoViewShowsPercentage; | 309 | bool mTodoViewShowsPercentage; |
309 | bool mTodoViewUsesCatColors; | 310 | bool mTodoViewUsesCatColors; |
310 | bool mMonthViewUsesBigFont; | 311 | bool mMonthViewUsesBigFont; |
311 | bool mTodoViewUsesSmallFont; | 312 | bool mTodoViewUsesSmallFont; |
312 | bool mTodoViewUsesForegroundColor; | 313 | bool mTodoViewUsesForegroundColor; |
313 | bool mMonthViewUsesForegroundColor; | 314 | bool mMonthViewUsesForegroundColor; |
314 | 315 | ||
315 | bool mHightlightDateTimeEdit; | 316 | bool mHightlightDateTimeEdit; |
316 | bool mShortDateInViewer; | 317 | bool mShortDateInViewer; |
317 | 318 | ||
318 | bool mShowDateNavigator; | 319 | bool mShowDateNavigator; |
319 | 320 | ||
320 | QStringList mLocationDefaults; | 321 | QStringList mLocationDefaults; |
321 | QStringList mEventSummaryUser; | 322 | QStringList mEventSummaryUser; |
322 | QStringList mTodoSummaryUser; | 323 | QStringList mTodoSummaryUser; |
323 | QStringList mJournalSummaryUser; | 324 | QStringList mJournalSummaryUser; |
324 | 325 | ||
325 | bool mUseInternalAlarmNotification; | 326 | bool mUseInternalAlarmNotification; |
326 | int mAlarmPlayBeeps; | 327 | int mAlarmPlayBeeps; |
327 | int mAlarmSuspendTime; | 328 | int mAlarmSuspendTime; |
328 | int mAlarmSuspendCount; | 329 | int mAlarmSuspendCount; |
329 | int mAlarmBeepInterval; | 330 | int mAlarmBeepInterval; |
330 | int mOldLanguage; | 331 | int mOldLanguage; |
331 | int mOldLoadedLanguage; | 332 | int mOldLoadedLanguage; |
332 | 333 | ||
333 | 334 | ||
334 | QString mActiveSyncPort; | 335 | QString mActiveSyncPort; |
335 | QString mActiveSyncIP; | 336 | QString mActiveSyncIP; |
336 | 337 | ||
337 | // settings for eventviewer | 338 | // settings for eventviewer |
338 | bool mEVshowDetails; | 339 | bool mEVshowDetails; |
339 | bool mEVshowCreated; | 340 | bool mEVshowCreated; |
340 | bool mEVshowChanged; | 341 | bool mEVshowChanged; |
341 | bool mWTshowDetails; | 342 | bool mWTshowDetails; |
342 | bool mWTshowCreated; | 343 | bool mWTshowCreated; |
343 | bool mWTshowChanged; | 344 | bool mWTshowChanged; |
344 | 345 | ||
345 | int mCurrentDisplayedView; | 346 | int mCurrentDisplayedView; |
346 | QPtrList<KopiCalendarFile> mCalendars; | 347 | QPtrList<KopiCalendarFile> mCalendars; |
347 | int mNextAvailableCalendar; | 348 | int mNextAvailableCalendar; |
348 | bool mGlobalUpdateDisabled; | 349 | bool mGlobalUpdateDisabled; |
349 | 350 | ||
350 | private: | 351 | private: |
351 | QDict<QColor> mCategoryColors; | 352 | QDict<QColor> mCategoryColors; |
352 | QArray<KopiCalendarFile*> mDefCalColors; | 353 | QArray<KopiCalendarFile*> mDefCalColors; |
353 | QColor mDefaultCategoryColor; | 354 | QColor mDefaultCategoryColor; |
354 | 355 | ||
355 | QFont mDefaultTimeBarFont; | 356 | QFont mDefaultTimeBarFont; |
356 | QFont mDefaultViewFont; | 357 | QFont mDefaultViewFont; |
357 | QFont mDefaultMonthViewFont; | 358 | QFont mDefaultMonthViewFont; |
358 | 359 | ||
359 | QString mName; | 360 | QString mName; |
360 | QString mEmail; | 361 | QString mEmail; |
361 | }; | 362 | }; |
362 | 363 | ||
363 | #endif | 364 | #endif |
diff --git a/korganizer/koprefsdialog.cpp b/korganizer/koprefsdialog.cpp index ebcff33..05bd73f 100644 --- a/korganizer/koprefsdialog.cpp +++ b/korganizer/koprefsdialog.cpp | |||
@@ -194,1024 +194,1028 @@ void KOPrefsDialog::setupLocaleTab() | |||
194 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 194 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
195 | syncPrefsGroup->addRadio(i18n("24:00")); | 195 | syncPrefsGroup->addRadio(i18n("24:00")); |
196 | syncPrefsGroup->addRadio(i18n("12:00am")); | 196 | syncPrefsGroup->addRadio(i18n("12:00am")); |
197 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 197 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
198 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 198 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
199 | ++iii; | 199 | ++iii; |
200 | KPrefsDialogWidBool *sb; | 200 | KPrefsDialogWidBool *sb; |
201 | if ( QApplication::desktop()->width() < 300 ) { | 201 | if ( QApplication::desktop()->width() < 300 ) { |
202 | sb = | 202 | sb = |
203 | addWidBool(i18n("Week starts on Sunday"), | 203 | addWidBool(i18n("Week starts on Sunday"), |
204 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); | 204 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); |
205 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 205 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
206 | ++iii; | 206 | ++iii; |
207 | sb = | 207 | sb = |
208 | addWidBool(i18n("Use short date in (WN/E) view"), | 208 | addWidBool(i18n("Use short date in (WN/E) view"), |
209 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 209 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
210 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 210 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
211 | } | 211 | } |
212 | else { | 212 | else { |
213 | QWidget * hb = new QWidget( topFrame ); | 213 | QWidget * hb = new QWidget( topFrame ); |
214 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); | 214 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); |
215 | sb = | 215 | sb = |
216 | addWidBool(i18n("Week starts on Sunday"), | 216 | addWidBool(i18n("Week starts on Sunday"), |
217 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); | 217 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); |
218 | hbLayout->addWidget(sb->checkBox() ); | 218 | hbLayout->addWidget(sb->checkBox() ); |
219 | sb = | 219 | sb = |
220 | addWidBool(i18n("Use short date in (WN/E) view"), | 220 | addWidBool(i18n("Use short date in (WN/E) view"), |
221 | &(KOPrefs::instance()->mShortDateInViewer),hb); | 221 | &(KOPrefs::instance()->mShortDateInViewer),hb); |
222 | hbLayout->addWidget(sb->checkBox() ); | 222 | hbLayout->addWidget(sb->checkBox() ); |
223 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); | 223 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); |
224 | 224 | ||
225 | } | 225 | } |
226 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION | 226 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION |
227 | #if 0 | 227 | #if 0 |
228 | ++iii; | 228 | ++iii; |
229 | sb = | 229 | sb = |
230 | addWidBool(i18n("Quick load/save (w/o Unicode)"), | 230 | addWidBool(i18n("Quick load/save (w/o Unicode)"), |
231 | &(KOPrefs::instance()->mUseQuicksave),topFrame); | 231 | &(KOPrefs::instance()->mUseQuicksave),topFrame); |
232 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 232 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
233 | #endif | 233 | #endif |
234 | #endif | 234 | #endif |
235 | } | 235 | } |
236 | 236 | ||
237 | void KOPrefsDialog::setupMainTab() | 237 | void KOPrefsDialog::setupMainTab() |
238 | { | 238 | { |
239 | QFrame *topFrame = addPage(i18n("General"),0,0); | 239 | QFrame *topFrame = addPage(i18n("General"),0,0); |
240 | // DesktopIcon("identity",KIcon::SizeMedium)); | 240 | // DesktopIcon("identity",KIcon::SizeMedium)); |
241 | 241 | ||
242 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); | 242 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); |
243 | topLayout->setSpacing(mSpacingHint); | 243 | topLayout->setSpacing(mSpacingHint); |
244 | topLayout->setMargin(mMarginHint); | 244 | topLayout->setMargin(mMarginHint); |
245 | 245 | ||
246 | // KPrefsDialogWidBool *emailControlCenter = | 246 | // KPrefsDialogWidBool *emailControlCenter = |
247 | // addWidBool(i18n("&Use email settings from Control Center"), | 247 | // addWidBool(i18n("&Use email settings from Control Center"), |
248 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); | 248 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); |
249 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); | 249 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); |
250 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), | 250 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), |
251 | // SLOT(toggleEmailSettings(bool))); | 251 | // SLOT(toggleEmailSettings(bool))); |
252 | 252 | ||
253 | mNameEdit = new QLineEdit(topFrame); | 253 | mNameEdit = new QLineEdit(topFrame); |
254 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); | 254 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); |
255 | topLayout->addWidget(mNameLabel,0,0); | 255 | topLayout->addWidget(mNameLabel,0,0); |
256 | topLayout->addWidget(mNameEdit,0,1); | 256 | topLayout->addWidget(mNameEdit,0,1); |
257 | 257 | ||
258 | mEmailEdit = new QLineEdit(topFrame); | 258 | mEmailEdit = new QLineEdit(topFrame); |
259 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); | 259 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); |
260 | topLayout->addWidget(mEmailLabel,1,0); | 260 | topLayout->addWidget(mEmailLabel,1,0); |
261 | topLayout->addWidget(mEmailEdit,1,1); | 261 | topLayout->addWidget(mEmailEdit,1,1); |
262 | KPrefsDialogWidBool *wb; | 262 | KPrefsDialogWidBool *wb; |
263 | 263 | ||
264 | 264 | ||
265 | 265 | ||
266 | KPrefsDialogWidBool *widbool = addWidBool(i18n("Full menu bar(nr)"), | 266 | KPrefsDialogWidBool *widbool = addWidBool(i18n("Full menu bar(nr)"), |
267 | &(KOPrefs::instance()->mShowFullMenu),topFrame); | 267 | &(KOPrefs::instance()->mShowFullMenu),topFrame); |
268 | topLayout->addMultiCellWidget( widbool->checkBox(), 2,2,0,1); | 268 | topLayout->addMultiCellWidget( widbool->checkBox(), 2,2,0,1); |
269 | 269 | ||
270 | 270 | ||
271 | widbool = addWidBool(i18n("Mini icons in toolbar(nr)"), | 271 | widbool = addWidBool(i18n("Mini icons in toolbar(nr)"), |
272 | &(KOPrefs::instance()->mToolBarMiniIcons),topFrame); | 272 | &(KOPrefs::instance()->mToolBarMiniIcons),topFrame); |
273 | topLayout->addMultiCellWidget( widbool->checkBox(), 3,3,0,1); | 273 | topLayout->addMultiCellWidget( widbool->checkBox(), 3,3,0,1); |
274 | 274 | ||
275 | 275 | ||
276 | KPrefsDialogWidBool *verticalScreen = | 276 | KPrefsDialogWidBool *verticalScreen = |
277 | addWidBool(i18n("Vertical screen layout(Needs restart)"), | 277 | addWidBool(i18n("Vertical screen layout(Needs restart)"), |
278 | &(KOPrefs::instance()->mVerticalScreen),topFrame); | 278 | &(KOPrefs::instance()->mVerticalScreen),topFrame); |
279 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); | 279 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); |
280 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),4,4,0,1); | 280 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),4,4,0,1); |
281 | 281 | ||
282 | 282 | ||
283 | int iii = 5; | 283 | int iii = 5; |
284 | widbool = addWidBool(i18n("Block popup until mouse button release"), | 284 | widbool = addWidBool(i18n("Block popup until mouse button release"), |
285 | &(KOPrefs::instance()->mBlockPopupMenu),topFrame); | 285 | &(KOPrefs::instance()->mBlockPopupMenu),topFrame); |
286 | topLayout->addMultiCellWidget( widbool->checkBox(), iii,iii,0,1); | 286 | topLayout->addMultiCellWidget( widbool->checkBox(), iii,iii,0,1); |
287 | ++iii; | 287 | ++iii; |
288 | if ( QApplication::desktop()->height() <= 240 ) { | 288 | if ( QApplication::desktop()->height() <= 240 ) { |
289 | topFrame = addPage(i18n("General") +" 2",0,0); | 289 | topFrame = addPage(i18n("General") +" 2",0,0); |
290 | topLayout = new QGridLayout(topFrame,4,2); | 290 | topLayout = new QGridLayout(topFrame,4,2); |
291 | topLayout->setSpacing(2); | 291 | topLayout->setSpacing(2); |
292 | topLayout->setMargin(3); | 292 | topLayout->setMargin(3); |
293 | iii = 0; | 293 | iii = 0; |
294 | } | 294 | } |
295 | QHBox *dummy = new QHBox(topFrame); | 295 | QHBox *dummy = new QHBox(topFrame); |
296 | new QLabel(i18n("Days in Next-X-Days:"),dummy); | 296 | new QLabel(i18n("Days in Next-X-Days:"),dummy); |
297 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); | 297 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); |
298 | 298 | ||
299 | topLayout->addMultiCellWidget(dummy,iii,iii,0,1); | 299 | topLayout->addMultiCellWidget(dummy,iii,iii,0,1); |
300 | 300 | ||
301 | ++iii; | 301 | ++iii; |
302 | 302 | ||
303 | 303 | ||
304 | // KPrefsDialogWidBool *bcc = | 304 | // KPrefsDialogWidBool *bcc = |
305 | // addWidBool(i18n("Send copy to owner when mailing events"), | 305 | // addWidBool(i18n("Send copy to owner when mailing events"), |
306 | // &(KOPrefs::instance()->mBcc),topFrame); | 306 | // &(KOPrefs::instance()->mBcc),topFrame); |
307 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); | 307 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); |
308 | 308 | ||
309 | 309 | ||
310 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); | 310 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); |
311 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); | 311 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); |
312 | 312 | ||
313 | // addWidBool(i18n("Enable automatic saving of calendar"), | 313 | // addWidBool(i18n("Enable automatic saving of calendar"), |
314 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); | 314 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); |
315 | 315 | ||
316 | QHBox *intervalBox = new QHBox(topFrame); | 316 | QHBox *intervalBox = new QHBox(topFrame); |
317 | // intervalBox->setSpacing(mSpacingHint); | 317 | // intervalBox->setSpacing(mSpacingHint); |
318 | topLayout->addMultiCellWidget(intervalBox,iii,iii,0,1); | 318 | topLayout->addMultiCellWidget(intervalBox,iii,iii,0,1); |
319 | ++iii; | 319 | ++iii; |
320 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); | 320 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); |
321 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); | 321 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); |
322 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); | 322 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); |
323 | /* | 323 | /* |
324 | QHBox * agendasize = new QHBox ( topFrame ); | 324 | QHBox * agendasize = new QHBox ( topFrame ); |
325 | 325 | ||
326 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); | 326 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); |
327 | 327 | ||
328 | 328 | ||
329 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); | 329 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); |
330 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); | 330 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); |
331 | */ | 331 | */ |
332 | 332 | ||
333 | 333 | ||
334 | KPrefsDialogWidBool *ask = | 334 | KPrefsDialogWidBool *ask = |
335 | addWidBool(i18n("Ask for quit when closing KO/Pi"), | 335 | addWidBool(i18n("Ask for quit when closing KO/Pi"), |
336 | &(KOPrefs::instance()->mAskForQuit),topFrame); | 336 | &(KOPrefs::instance()->mAskForQuit),topFrame); |
337 | topLayout->addMultiCellWidget(ask->checkBox(),iii,iii,0,1); | 337 | topLayout->addMultiCellWidget(ask->checkBox(),iii,iii,0,1); |
338 | ++iii; | 338 | ++iii; |
339 | 339 | ||
340 | 340 | ||
341 | /* | 341 | /* |
342 | KPrefsDialogWidBool *confirmCheck = | 342 | KPrefsDialogWidBool *confirmCheck = |
343 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), | 343 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), |
344 | topFrame); | 344 | topFrame); |
345 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); | 345 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); |
346 | 346 | ||
347 | 347 | ||
348 | mEnableGroupScheduling = | 348 | mEnableGroupScheduling = |
349 | addWidBool(i18n("Enable group scheduling"), | 349 | addWidBool(i18n("Enable group scheduling"), |
350 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); | 350 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); |
351 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); | 351 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); |
352 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), | 352 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), |
353 | SLOT(warningGroupScheduling())); | 353 | SLOT(warningGroupScheduling())); |
354 | 354 | ||
355 | mEnableProjectView = | 355 | mEnableProjectView = |
356 | addWidBool(i18n("Enable project view"), | 356 | addWidBool(i18n("Enable project view"), |
357 | &(KOPrefs::instance()->mEnableProjectView),topFrame); | 357 | &(KOPrefs::instance()->mEnableProjectView),topFrame); |
358 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); | 358 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); |
359 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), | 359 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), |
360 | SLOT(warningProjectView())); | 360 | SLOT(warningProjectView())); |
361 | 361 | ||
362 | // Can't be disabled anymore | 362 | // Can't be disabled anymore |
363 | mEnableGroupScheduling->checkBox()->hide(); | 363 | mEnableGroupScheduling->checkBox()->hide(); |
364 | 364 | ||
365 | // Disable setting, because this feature now becomes stable | 365 | // Disable setting, because this feature now becomes stable |
366 | mEnableProjectView->checkBox()->hide(); | 366 | mEnableProjectView->checkBox()->hide(); |
367 | 367 | ||
368 | KPrefsDialogWidRadios *defaultFormatGroup = | 368 | KPrefsDialogWidRadios *defaultFormatGroup = |
369 | addWidRadios(i18n("Default Calendar Format"), | 369 | addWidRadios(i18n("Default Calendar Format"), |
370 | &(KOPrefs::instance()->mDefaultFormat),topFrame); | 370 | &(KOPrefs::instance()->mDefaultFormat),topFrame); |
371 | defaultFormatGroup->addRadio(i18n("vCalendar")); | 371 | defaultFormatGroup->addRadio(i18n("vCalendar")); |
372 | defaultFormatGroup->addRadio(i18n("iCalendar")); | 372 | defaultFormatGroup->addRadio(i18n("iCalendar")); |
373 | 373 | ||
374 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); | 374 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); |
375 | 375 | ||
376 | // Default format unconditionally is iCalendar | 376 | // Default format unconditionally is iCalendar |
377 | defaultFormatGroup->groupBox()->hide(); | 377 | defaultFormatGroup->groupBox()->hide(); |
378 | 378 | ||
379 | KPrefsDialogWidRadios *mailClientGroup = | 379 | KPrefsDialogWidRadios *mailClientGroup = |
380 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), | 380 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), |
381 | topFrame); | 381 | topFrame); |
382 | mailClientGroup->addRadio(i18n("KMail")); | 382 | mailClientGroup->addRadio(i18n("KMail")); |
383 | mailClientGroup->addRadio(i18n("Sendmail")); | 383 | mailClientGroup->addRadio(i18n("Sendmail")); |
384 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); | 384 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); |
385 | 385 | ||
386 | KPrefsDialogWidBool *htmlsave = | 386 | KPrefsDialogWidBool *htmlsave = |
387 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), | 387 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), |
388 | topFrame); | 388 | topFrame); |
389 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); | 389 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); |
390 | 390 | ||
391 | KPrefsDialogWidRadios *destinationGroup = | 391 | KPrefsDialogWidRadios *destinationGroup = |
392 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), | 392 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), |
393 | topFrame); | 393 | topFrame); |
394 | destinationGroup->addRadio(i18n("be added to the standard resource")); | 394 | destinationGroup->addRadio(i18n("be added to the standard resource")); |
395 | destinationGroup->addRadio(i18n("be asked which resource to use")); | 395 | destinationGroup->addRadio(i18n("be asked which resource to use")); |
396 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); | 396 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); |
397 | 397 | ||
398 | topLayout->setRowStretch(14,1); | 398 | topLayout->setRowStretch(14,1); |
399 | */ | 399 | */ |
400 | } | 400 | } |
401 | 401 | ||
402 | 402 | ||
403 | void KOPrefsDialog::setupTimeTab() | 403 | void KOPrefsDialog::setupTimeTab() |
404 | { | 404 | { |
405 | QFrame *topFrame = addPage(i18n("Time"),0,0); | 405 | QFrame *topFrame = addPage(i18n("Time"),0,0); |
406 | // DesktopIcon("clock",KIcon::SizeMedium)); | 406 | // DesktopIcon("clock",KIcon::SizeMedium)); |
407 | 407 | ||
408 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 408 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
409 | topLayout->setSpacing(mSpacingHint); | 409 | topLayout->setSpacing(mSpacingHint); |
410 | topLayout->setMargin(mMarginHint); | 410 | topLayout->setMargin(mMarginHint); |
411 | 411 | ||
412 | QHBox *dummy = new QHBox(topFrame); | 412 | QHBox *dummy = new QHBox(topFrame); |
413 | KPrefsDialogWidTime *dayBegins = | 413 | KPrefsDialogWidTime *dayBegins = |
414 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 414 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
415 | dummy); | 415 | dummy); |
416 | //topLayout->addWidget(dayBegins->label(),2,0); | 416 | //topLayout->addWidget(dayBegins->label(),2,0); |
417 | 417 | ||
418 | //topLayout->addWidget(dayBegins->spinBox(),2,1); | 418 | //topLayout->addWidget(dayBegins->spinBox(),2,1); |
419 | topLayout->addMultiCellWidget(dummy,0,0,0,1); | 419 | topLayout->addMultiCellWidget(dummy,0,0,0,1); |
420 | 420 | ||
421 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), | 421 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), |
422 | topFrame),1,0); | 422 | topFrame),1,0); |
423 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); | 423 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); |
424 | mStartTimeSpin->setSuffix(":00"); | 424 | mStartTimeSpin->setSuffix(":00"); |
425 | topLayout->addWidget(mStartTimeSpin,1,1); | 425 | topLayout->addWidget(mStartTimeSpin,1,1); |
426 | 426 | ||
427 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), | 427 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), |
428 | topFrame),2,0); | 428 | topFrame),2,0); |
429 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); | 429 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); |
430 | mDefaultDurationSpin->setSuffix(":00"); | 430 | mDefaultDurationSpin->setSuffix(":00"); |
431 | topLayout->addWidget(mDefaultDurationSpin,2,1); | 431 | topLayout->addWidget(mDefaultDurationSpin,2,1); |
432 | 432 | ||
433 | QStringList alarmList; | 433 | QStringList alarmList; |
434 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") | 434 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") |
435 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; | 435 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; |
436 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), | 436 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), |
437 | 3,0); | 437 | 3,0); |
438 | mAlarmTimeCombo = new QComboBox(topFrame); | 438 | mAlarmTimeCombo = new QComboBox(topFrame); |
439 | mAlarmTimeCombo->insertStringList(alarmList); | 439 | mAlarmTimeCombo->insertStringList(alarmList); |
440 | topLayout->addWidget(mAlarmTimeCombo,3,1); | 440 | topLayout->addWidget(mAlarmTimeCombo,3,1); |
441 | int iii = 4; | 441 | int iii = 4; |
442 | if ( QApplication::desktop()->height() <= 240 ) { | 442 | if ( QApplication::desktop()->height() <= 240 ) { |
443 | topFrame = addPage(i18n("Time") +" 2",0,0); | 443 | topFrame = addPage(i18n("Time") +" 2",0,0); |
444 | topLayout = new QGridLayout(topFrame,1,2); | 444 | topLayout = new QGridLayout(topFrame,1,2); |
445 | topLayout->setSpacing(2); | 445 | topLayout->setSpacing(2); |
446 | topLayout->setMargin(3); | 446 | topLayout->setMargin(3); |
447 | iii = 0; | 447 | iii = 0; |
448 | } | 448 | } |
449 | 449 | ||
450 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, | 450 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, |
451 | i18n("Working Hours"), | 451 | i18n("Working Hours"), |
452 | topFrame); | 452 | topFrame); |
453 | topLayout->addMultiCellWidget(workingHoursGroup,iii,iii,0,1); | 453 | topLayout->addMultiCellWidget(workingHoursGroup,iii,iii,0,1); |
454 | workingHoursGroup->layout()->setSpacing( 0 ); | 454 | workingHoursGroup->layout()->setSpacing( 0 ); |
455 | workingHoursGroup->layout()->setMargin( 4 ); | 455 | workingHoursGroup->layout()->setMargin( 4 ); |
456 | QHBox *workStartBox = new QHBox(workingHoursGroup); | 456 | QHBox *workStartBox = new QHBox(workingHoursGroup); |
457 | // workStartBox->setMargin( 0 ); | 457 | // workStartBox->setMargin( 0 ); |
458 | addWidTime(i18n("Daily starting hour:"), | 458 | addWidTime(i18n("Daily starting hour:"), |
459 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); | 459 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); |
460 | 460 | ||
461 | QHBox *workEndBox = new QHBox(workingHoursGroup); | 461 | QHBox *workEndBox = new QHBox(workingHoursGroup); |
462 | //workEndBox->setMargin( 0 ); | 462 | //workEndBox->setMargin( 0 ); |
463 | addWidTime(i18n("Daily ending hour:"), | 463 | addWidTime(i18n("Daily ending hour:"), |
464 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); | 464 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); |
465 | QVBox *excludeBox = new QVBox(workingHoursGroup); | 465 | QVBox *excludeBox = new QVBox(workingHoursGroup); |
466 | //excludeBox->setMargin( 0 ); | 466 | //excludeBox->setMargin( 0 ); |
467 | addWidBool(i18n("Exclude holidays"), | 467 | addWidBool(i18n("Exclude holidays"), |
468 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); | 468 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); |
469 | 469 | ||
470 | addWidBool(i18n("Exclude Saturdays"), | 470 | addWidBool(i18n("Exclude Saturdays"), |
471 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); | 471 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); |
472 | 472 | ||
473 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), | 473 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), |
474 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), | 474 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), |
475 | // topFrame); | 475 | // topFrame); |
476 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); | 476 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); |
477 | 477 | ||
478 | // topLayout->setRowStretch(6,1); | 478 | // topLayout->setRowStretch(6,1); |
479 | } | 479 | } |
480 | 480 | ||
481 | 481 | ||
482 | void KOPrefsDialog::setupViewsTab() | 482 | void KOPrefsDialog::setupViewsTab() |
483 | { | 483 | { |
484 | 484 | ||
485 | QFrame *topFrame = addPage(i18n("Views"),0,0); | 485 | QFrame *topFrame = addPage(i18n("Views"),0,0); |
486 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 486 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
487 | 487 | ||
488 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); | 488 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); |
489 | topLayout->setSpacing(mSpacingHint); | 489 | topLayout->setSpacing(mSpacingHint); |
490 | topLayout->setMargin(mMarginHint); | 490 | topLayout->setMargin(mMarginHint); |
491 | 491 | ||
492 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; | 492 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; |
493 | // topLayout->addLayout(dayBeginsLayout,0,0); | 493 | // topLayout->addLayout(dayBeginsLayout,0,0); |
494 | 494 | ||
495 | // KPrefsDialogWidTime *dayBegins = | 495 | // KPrefsDialogWidTime *dayBegins = |
496 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 496 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
497 | // topFrame); | 497 | // topFrame); |
498 | // dayBeginsLayout->addWidget(dayBegins->label()); | 498 | // dayBeginsLayout->addWidget(dayBegins->label()); |
499 | // dayBeginsLayout->addStretch(1); | 499 | // dayBeginsLayout->addStretch(1); |
500 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); | 500 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); |
501 | 501 | ||
502 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; | 502 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; |
503 | // topLayout->addLayout(nextDaysLayout,1,0); | 503 | // topLayout->addLayout(nextDaysLayout,1,0); |
504 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); | 504 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); |
505 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); | 505 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); |
506 | // nextDaysLayout->addStretch(1); | 506 | // nextDaysLayout->addStretch(1); |
507 | // nextDaysLayout->addWidget(mNextXDaysSpin); | 507 | // nextDaysLayout->addWidget(mNextXDaysSpin); |
508 | 508 | ||
509 | 509 | ||
510 | int ii = 0; | 510 | int ii = 0; |
511 | KPrefsDialogWidBool *dummy = | 511 | KPrefsDialogWidBool *dummy = |
512 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), | 512 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), |
513 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); | 513 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); |
514 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 514 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
515 | 515 | ||
516 | 516 | ||
517 | 517 | ||
518 | 518 | ||
519 | 519 | ||
520 | 520 | ||
521 | // topLayout->addWidget(hourSizeGroup,ii++,0); | 521 | // topLayout->addWidget(hourSizeGroup,ii++,0); |
522 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); | 522 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); |
523 | //topLayout->setRowStretch(11,1); | 523 | //topLayout->setRowStretch(11,1); |
524 | 524 | ||
525 | 525 | ||
526 | 526 | ||
527 | 527 | ||
528 | #if 0 | 528 | #if 0 |
529 | 529 | ||
530 | topFrame = addPage(i18n("ViewChange"),0,0); | 530 | topFrame = addPage(i18n("ViewChange"),0,0); |
531 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 531 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
532 | 532 | ||
533 | topLayout = new QGridLayout(topFrame,6,1); | 533 | topLayout = new QGridLayout(topFrame,6,1); |
534 | topLayout->setSpacing(mSpacingHint); | 534 | topLayout->setSpacing(mSpacingHint); |
535 | topLayout->setMargin(mMarginHint); | 535 | topLayout->setMargin(mMarginHint); |
536 | ii = 0; | 536 | ii = 0; |
537 | 537 | ||
538 | #endif | 538 | #endif |
539 | 539 | ||
540 | dummy = | 540 | dummy = |
541 | addWidBool(i18n("Hold fullscreen on view change"), | 541 | addWidBool(i18n("Hold fullscreen on view change"), |
542 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); | 542 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); |
543 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 543 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
544 | 544 | ||
545 | dummy = | 545 | dummy = |
546 | addWidBool(i18n("Hold non-fullscreen on view change"), | 546 | addWidBool(i18n("Hold non-fullscreen on view change"), |
547 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); | 547 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); |
548 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 548 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
549 | 549 | ||
550 | 550 | ||
551 | 551 | ||
552 | KPrefsDialogWidBool *fullViewMonth = | 552 | KPrefsDialogWidBool *fullViewMonth = |
553 | addWidBool(i18n("Next days view uses full window"), | 553 | addWidBool(i18n("Next days view uses full window"), |
554 | &(KOPrefs::instance()->mFullViewMonth),topFrame); | 554 | &(KOPrefs::instance()->mFullViewMonth),topFrame); |
555 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); | 555 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); |
556 | 556 | ||
557 | 557 | ||
558 | KPrefsDialogWidBool *fullViewTodo = | 558 | KPrefsDialogWidBool *fullViewTodo = |
559 | addWidBool(i18n("Event list view uses full window"), | 559 | addWidBool(i18n("Event list view uses full window"), |
560 | &(KOPrefs::instance()->mFullViewTodo),topFrame); | 560 | &(KOPrefs::instance()->mFullViewTodo),topFrame); |
561 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); | 561 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); |
562 | dummy = | 562 | dummy = |
563 | addWidBool(i18n("Listview uses monthly timespan"), | 563 | addWidBool(i18n("Listview uses monthly timespan"), |
564 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); | 564 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); |
565 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 565 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
566 | dummy = | 566 | dummy = |
567 | addWidBool(i18n("Highlight selection in Time Edit"), | 567 | addWidBool(i18n("Highlight selection in Time Edit"), |
568 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); | 568 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); |
569 | topLayout->addWidget( dummy->checkBox(), ii++,0); | 569 | topLayout->addWidget( dummy->checkBox(), ii++,0); |
570 | 570 | ||
571 | KPrefsDialogWidBool *dailyRecur = | 571 | KPrefsDialogWidBool *dailyRecur = |
572 | addWidBool(i18n("Show events that recur daily in date nav."), | 572 | addWidBool(i18n("Show events that recur daily in date nav."), |
573 | &(KOPrefs::instance()->mDailyRecur),topFrame); | 573 | &(KOPrefs::instance()->mDailyRecur),topFrame); |
574 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 574 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
575 | 575 | ||
576 | KPrefsDialogWidBool *weeklyRecur = | 576 | KPrefsDialogWidBool *weeklyRecur = |
577 | addWidBool(i18n("Show ev. that recur weekly in date nav."), | 577 | addWidBool(i18n("Show ev. that recur weekly in date nav."), |
578 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); | 578 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); |
579 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); | 579 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); |
580 | 580 | ||
581 | #ifdef DESKTOP_VERSION | 581 | #ifdef DESKTOP_VERSION |
582 | KPrefsDialogWidBool *enableToolTips = | 582 | KPrefsDialogWidBool *enableToolTips = |
583 | addWidBool(i18n("Enable tooltips displaying summary of ev."), | 583 | addWidBool(i18n("Enable tooltips displaying summary of ev."), |
584 | &(KOPrefs::instance()->mEnableToolTips),topFrame); | 584 | &(KOPrefs::instance()->mEnableToolTips),topFrame); |
585 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); | 585 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); |
586 | #endif | 586 | #endif |
587 | // ********************************************************* | 587 | // ********************************************************* |
588 | 588 | ||
589 | topFrame = addPage(i18n("Agenda View"),0,0); | 589 | topFrame = addPage(i18n("Agenda View"),0,0); |
590 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 590 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
591 | 591 | ||
592 | topLayout = new QGridLayout(topFrame,5,1); | 592 | topLayout = new QGridLayout(topFrame,5,1); |
593 | topLayout->setSpacing(mSpacingHint); | 593 | topLayout->setSpacing(mSpacingHint); |
594 | topLayout->setMargin(mMarginHint); | 594 | topLayout->setMargin(mMarginHint); |
595 | ii = 0; | 595 | ii = 0; |
596 | 596 | ||
597 | 597 | ||
598 | dummy = | 598 | dummy = |
599 | addWidBool(i18n("Show time in agenda items"), | 599 | addWidBool(i18n("Show time in agenda items"), |
600 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); | 600 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); |
601 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 601 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
602 | 602 | ||
603 | dummy = | 603 | dummy = |
604 | addWidBool(i18n("Highlight current day in agenda"), | 604 | addWidBool(i18n("Highlight current day in agenda"), |
605 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); | 605 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); |
606 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 606 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
607 | 607 | ||
608 | dummy = | 608 | dummy = |
609 | addWidBool(i18n("Use light color for highlight current day"), | 609 | addWidBool(i18n("Use light color for highlight current day"), |
610 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); | 610 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); |
611 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 611 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
612 | 612 | ||
613 | 613 | ||
614 | KPrefsDialogWidBool *marcusBainsEnabled = | 614 | KPrefsDialogWidBool *marcusBainsEnabled = |
615 | addWidBool(i18n("Show current time"), | 615 | addWidBool(i18n("Show current time"), |
616 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); | 616 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); |
617 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); | 617 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); |
618 | 618 | ||
619 | 619 | ||
620 | dummy = | 620 | dummy = |
621 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), | 621 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), |
622 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); | 622 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); |
623 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 623 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
624 | 624 | ||
625 | dummy = | 625 | dummy = |
626 | addWidBool(i18n("Set agenda to current time on change"), | 626 | addWidBool(i18n("Set agenda to current time on change"), |
627 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); | 627 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); |
628 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 628 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
629 | 629 | ||
630 | 630 | ||
631 | dummy = | 631 | dummy = |
632 | addWidBool(i18n("Allday Agenda view shows todos"), | 632 | addWidBool(i18n("Allday Agenda view shows todos"), |
633 | &(KOPrefs::instance()->mShowTodoInAgenda),topFrame); | 633 | &(KOPrefs::instance()->mShowTodoInAgenda),topFrame); |
634 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 634 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
635 | 635 | ||
636 | 636 | ||
637 | 637 | ||
638 | dummy = | 638 | dummy = |
639 | addWidBool(i18n("Agenda view shows completed todos"), | 639 | addWidBool(i18n("Agenda view shows completed todos"), |
640 | &(KOPrefs::instance()->mShowCompletedTodoInAgenda),topFrame); | 640 | &(KOPrefs::instance()->mShowCompletedTodoInAgenda),topFrame); |
641 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 641 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
642 | 642 | ||
643 | 643 | ||
644 | 644 | ||
645 | 645 | ||
646 | 646 | ||
647 | topFrame = addPage(i18n("Month View"),0,0); | 647 | topFrame = addPage(i18n("Month View"),0,0); |
648 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 648 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
649 | 649 | ||
650 | topLayout = new QGridLayout(topFrame,5,1); | 650 | topLayout = new QGridLayout(topFrame,5,1); |
651 | topLayout->setSpacing(mSpacingHint); | 651 | topLayout->setSpacing(mSpacingHint); |
652 | topLayout->setMargin(mMarginHint); | 652 | topLayout->setMargin(mMarginHint); |
653 | ii = 0; | 653 | ii = 0; |
654 | QLabel *lab; | 654 | QLabel *lab; |
655 | QHBox *habo = new QHBox( topFrame ); | 655 | QHBox *habo = new QHBox( topFrame ); |
656 | if ( QApplication::desktop()->width() <= 480 ) { | 656 | if ( QApplication::desktop()->width() <= 480 ) { |
657 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); | 657 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); |
658 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 658 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
659 | ii++; | 659 | ii++; |
660 | } else { | 660 | } else { |
661 | new QLabel ( i18n("Show events that recur "), habo ); | 661 | new QLabel ( i18n("Show events that recur "), habo ); |
662 | } | 662 | } |
663 | dailyRecur = | 663 | dailyRecur = |
664 | addWidBool(i18n("daily"), | 664 | addWidBool(i18n("daily"), |
665 | &(KOPrefs::instance()->mMonthDailyRecur),habo); | 665 | &(KOPrefs::instance()->mMonthDailyRecur),habo); |
666 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 666 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
667 | 667 | ||
668 | weeklyRecur = | 668 | weeklyRecur = |
669 | addWidBool(i18n("weekly"), | 669 | addWidBool(i18n("weekly"), |
670 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); | 670 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); |
671 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 671 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
672 | ii++; | 672 | ii++; |
673 | 673 | ||
674 | 674 | ||
675 | habo = new QHBox( topFrame ); | 675 | habo = new QHBox( topFrame ); |
676 | if ( QApplication::desktop()->width() <= 480 ) { | 676 | if ( QApplication::desktop()->width() <= 480 ) { |
677 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); | 677 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); |
678 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 678 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
679 | ii++; | 679 | ii++; |
680 | 680 | ||
681 | } else { | 681 | } else { |
682 | new QLabel ( i18n("Show in every cell "), habo ); | 682 | new QLabel ( i18n("Show in every cell "), habo ); |
683 | } | 683 | } |
684 | weeklyRecur = | 684 | weeklyRecur = |
685 | addWidBool(i18n("short month"), | 685 | addWidBool(i18n("short month"), |
686 | &(KOPrefs::instance()->mMonthShowShort),habo); | 686 | &(KOPrefs::instance()->mMonthShowShort),habo); |
687 | weeklyRecur = | 687 | weeklyRecur = |
688 | addWidBool(i18n("icons"), | 688 | addWidBool(i18n("icons"), |
689 | &(KOPrefs::instance()->mMonthShowIcons),habo); | 689 | &(KOPrefs::instance()->mMonthShowIcons),habo); |
690 | weeklyRecur = | 690 | weeklyRecur = |
691 | addWidBool(i18n("times"), | 691 | addWidBool(i18n("times"), |
692 | &(KOPrefs::instance()->mMonthShowTimes),habo); | 692 | &(KOPrefs::instance()->mMonthShowTimes),habo); |
693 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 693 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
694 | ii++; | 694 | ii++; |
695 | #ifdef DESKTOP_VERSION | 695 | #ifdef DESKTOP_VERSION |
696 | KPrefsDialogWidBool *enableMonthScroll = | 696 | KPrefsDialogWidBool *enableMonthScroll = |
697 | addWidBool(i18n("Enable scrollbars in month view cells"), | 697 | addWidBool(i18n("Enable scrollbars in month view cells"), |
698 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); | 698 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); |
699 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); | 699 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); |
700 | #endif | 700 | #endif |
701 | dummy = | 701 | dummy = |
702 | addWidBool(i18n("Week view mode uses bigger font"), | 702 | addWidBool(i18n("Week view mode uses bigger font"), |
703 | &(KOPrefs::instance()->mMonthViewUsesBigFont),topFrame); | 703 | &(KOPrefs::instance()->mMonthViewUsesBigFont),topFrame); |
704 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 704 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
705 | dummy = | 705 | dummy = |
706 | addWidBool(i18n("Week view mode uses row layout"), | ||
707 | &(KOPrefs::instance()->mMonthViewWeekRowlayout),topFrame); | ||
708 | topLayout->addWidget(dummy->checkBox(),ii++,0); | ||
709 | dummy = | ||
706 | addWidBool(i18n("Show Sat/Sun together"), | 710 | addWidBool(i18n("Show Sat/Sun together"), |
707 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); | 711 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); |
708 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 712 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
709 | 713 | ||
710 | KPrefsDialogWidBool *coloredCategoriesInMonthView = | 714 | KPrefsDialogWidBool *coloredCategoriesInMonthView = |
711 | addWidBool(i18n("Month view uses category colors"), | 715 | addWidBool(i18n("Month view uses category colors"), |
712 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); | 716 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); |
713 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 717 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
714 | 718 | ||
715 | dummy = | 719 | dummy = |
716 | addWidBool(i18n("Category colors are applied to text"), | 720 | addWidBool(i18n("Category colors are applied to text"), |
717 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); | 721 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); |
718 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 722 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
719 | 723 | ||
720 | 724 | ||
721 | 725 | ||
722 | if ( QApplication::desktop()->height() <= 240 ) { | 726 | if ( QApplication::desktop()->height() <= 240 ) { |
723 | topFrame = addPage(i18n("Month View") +" 2",0,0); | 727 | topFrame = addPage(i18n("Month View") +" 2",0,0); |
724 | topLayout = new QGridLayout(topFrame,4,1); | 728 | topLayout = new QGridLayout(topFrame,4,1); |
725 | topLayout->setSpacing(2); | 729 | topLayout->setSpacing(2); |
726 | topLayout->setMargin(1); | 730 | topLayout->setMargin(1); |
727 | ii = 0; | 731 | ii = 0; |
728 | } | 732 | } |
729 | 733 | ||
730 | 734 | ||
731 | coloredCategoriesInMonthView = | 735 | coloredCategoriesInMonthView = |
732 | addWidBool(i18n("Month view uses day colors"), | 736 | addWidBool(i18n("Month view uses day colors"), |
733 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); | 737 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); |
734 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 738 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
735 | 739 | ||
736 | KPrefsDialogWidColor *holidayColor = | 740 | KPrefsDialogWidColor *holidayColor = |
737 | addWidColor(i18n("Day color odd months"), | 741 | addWidColor(i18n("Day color odd months"), |
738 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); | 742 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); |
739 | topLayout->addWidget(holidayColor->label(),ii,0); | 743 | topLayout->addWidget(holidayColor->label(),ii,0); |
740 | topLayout->addWidget(holidayColor->button(),ii++,1); | 744 | topLayout->addWidget(holidayColor->button(),ii++,1); |
741 | 745 | ||
742 | holidayColor = | 746 | holidayColor = |
743 | addWidColor(i18n("Day color even months"), | 747 | addWidColor(i18n("Day color even months"), |
744 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); | 748 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); |
745 | topLayout->addWidget(holidayColor->label(),ii,0); | 749 | topLayout->addWidget(holidayColor->label(),ii,0); |
746 | topLayout->addWidget(holidayColor->button(),ii++,1); | 750 | topLayout->addWidget(holidayColor->button(),ii++,1); |
747 | 751 | ||
748 | 752 | ||
749 | holidayColor = | 753 | holidayColor = |
750 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), | 754 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), |
751 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); | 755 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); |
752 | topLayout->addWidget(holidayColor->label(),ii,0); | 756 | topLayout->addWidget(holidayColor->label(),ii,0); |
753 | topLayout->addWidget(holidayColor->button(),ii++,1); | 757 | topLayout->addWidget(holidayColor->button(),ii++,1); |
754 | // *********************** What'sNext View | 758 | // *********************** What'sNext View |
755 | topFrame = addPage(i18n("What's Next View"),0,0); | 759 | topFrame = addPage(i18n("What's Next View"),0,0); |
756 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 760 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
757 | 761 | ||
758 | topLayout = new QGridLayout(topFrame,4,1); | 762 | topLayout = new QGridLayout(topFrame,4,1); |
759 | topLayout->setSpacing(mSpacingHint); | 763 | topLayout->setSpacing(mSpacingHint); |
760 | topLayout->setMargin(mMarginHint); | 764 | topLayout->setMargin(mMarginHint); |
761 | ii = 0; | 765 | ii = 0; |
762 | 766 | ||
763 | 767 | ||
764 | QHBox* hdummy = new QHBox(topFrame); | 768 | QHBox* hdummy = new QHBox(topFrame); |
765 | new QLabel(i18n("Days in What's Next:"),hdummy); | 769 | new QLabel(i18n("Days in What's Next:"),hdummy); |
766 | mWhatsNextSpin = new QSpinBox(1,14,1,hdummy); | 770 | mWhatsNextSpin = new QSpinBox(1,14,1,hdummy); |
767 | 771 | ||
768 | topLayout->addWidget(hdummy,ii++,0); | 772 | topLayout->addWidget(hdummy,ii++,0); |
769 | 773 | ||
770 | QHBox *prioBox = new QHBox(topFrame); | 774 | QHBox *prioBox = new QHBox(topFrame); |
771 | // intervalBox->setSpacing(mSpacingHint); | 775 | // intervalBox->setSpacing(mSpacingHint); |
772 | topLayout->addWidget(prioBox,ii++,0); | 776 | topLayout->addWidget(prioBox,ii++,0); |
773 | 777 | ||
774 | QLabel *prioLabel = new QLabel(i18n("Number of max.displayed todo prios:"), prioBox); | 778 | QLabel *prioLabel = new QLabel(i18n("Number of max.displayed todo prios:"), prioBox); |
775 | mPrioSpin = new QSpinBox(0,5,1,prioBox); | 779 | mPrioSpin = new QSpinBox(0,5,1,prioBox); |
776 | if ( QApplication::desktop()->width() < 300 ) | 780 | if ( QApplication::desktop()->width() < 300 ) |
777 | mPrioSpin->setFixedWidth( 40 ); | 781 | mPrioSpin->setFixedWidth( 40 ); |
778 | 782 | ||
779 | KPrefsDialogWidBool *passwdk = | 783 | KPrefsDialogWidBool *passwdk = |
780 | 784 | ||
781 | addWidBool(i18n("Show events that are done"), | 785 | addWidBool(i18n("Show events that are done"), |
782 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); | 786 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); |
783 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 787 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
784 | passwdk = | 788 | passwdk = |
785 | addWidBool(i18n("Show parent To-Do's"), | 789 | addWidBool(i18n("Show parent To-Do's"), |
786 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); | 790 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); |
787 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 791 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
788 | 792 | ||
789 | passwdk = | 793 | passwdk = |
790 | addWidBool(i18n("Show location"), | 794 | addWidBool(i18n("Show location"), |
791 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); | 795 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); |
792 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 796 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
793 | 797 | ||
794 | 798 | ||
795 | passwdk = | 799 | passwdk = |
796 | addWidBool(i18n("Use short date in WN+Event view"), | 800 | addWidBool(i18n("Use short date in WN+Event view"), |
797 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 801 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
798 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 802 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
799 | 803 | ||
800 | 804 | ||
801 | 805 | ||
802 | 806 | ||
803 | // *********************** Todo View | 807 | // *********************** Todo View |
804 | 808 | ||
805 | topFrame = addPage(i18n("Todo View"),0,0); | 809 | topFrame = addPage(i18n("Todo View"),0,0); |
806 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 810 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
807 | 811 | ||
808 | topLayout = new QGridLayout(topFrame,4,1); | 812 | topLayout = new QGridLayout(topFrame,4,1); |
809 | topLayout->setSpacing(mSpacingHint); | 813 | topLayout->setSpacing(mSpacingHint); |
810 | topLayout->setMargin(mMarginHint); | 814 | topLayout->setMargin(mMarginHint); |
811 | ii = 0; | 815 | ii = 0; |
812 | dummy = | 816 | dummy = |
813 | addWidBool(i18n("Hide not running Todos in To-do view"), | 817 | addWidBool(i18n("Hide not running Todos in To-do view"), |
814 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); | 818 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); |
815 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 819 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
816 | 820 | ||
817 | 821 | ||
818 | KPrefsDialogWidBool *showCompletedTodo = | 822 | KPrefsDialogWidBool *showCompletedTodo = |
819 | addWidBool(i18n("To-do view shows completed Todos"), | 823 | addWidBool(i18n("To-do view shows completed Todos"), |
820 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); | 824 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); |
821 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); | 825 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); |
822 | dummy = | 826 | dummy = |
823 | addWidBool(i18n("To-do view shows complete as 'xx %'"), | 827 | addWidBool(i18n("To-do view shows complete as 'xx %'"), |
824 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); | 828 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); |
825 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 829 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
826 | 830 | ||
827 | dummy = | 831 | dummy = |
828 | addWidBool(i18n("Small To-do view uses smaller font"), | 832 | addWidBool(i18n("Small To-do view uses smaller font"), |
829 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); | 833 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); |
830 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 834 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
831 | 835 | ||
832 | 836 | ||
833 | 837 | ||
834 | dummy = | 838 | dummy = |
835 | addWidBool(i18n("Todo view uses category colors"), | 839 | addWidBool(i18n("Todo view uses category colors"), |
836 | &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame); | 840 | &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame); |
837 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 841 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
838 | 842 | ||
839 | 843 | ||
840 | QWidget* wid = new QWidget( topFrame ); | 844 | QWidget* wid = new QWidget( topFrame ); |
841 | // Todo run today color | 845 | // Todo run today color |
842 | KPrefsDialogWidColor *todoRunColor = | 846 | KPrefsDialogWidColor *todoRunColor = |
843 | addWidColor(i18n("Color for running todos:"), | 847 | addWidColor(i18n("Color for running todos:"), |
844 | &(KOPrefs::instance()->mTodoRunColor),wid); | 848 | &(KOPrefs::instance()->mTodoRunColor),wid); |
845 | QHBoxLayout *widLayout = new QHBoxLayout(wid); | 849 | QHBoxLayout *widLayout = new QHBoxLayout(wid); |
846 | widLayout->addWidget( todoRunColor->label() ); | 850 | widLayout->addWidget( todoRunColor->label() ); |
847 | widLayout->addWidget( todoRunColor->button() ); | 851 | widLayout->addWidget( todoRunColor->button() ); |
848 | topLayout->addWidget(wid,ii++,0); | 852 | topLayout->addWidget(wid,ii++,0); |
849 | 853 | ||
850 | wid = new QWidget( topFrame ); | 854 | wid = new QWidget( topFrame ); |
851 | // Todo due today color | 855 | // Todo due today color |
852 | KPrefsDialogWidColor *todoDueTodayColor = | 856 | KPrefsDialogWidColor *todoDueTodayColor = |
853 | addWidColor(i18n("Todo due today color:"), | 857 | addWidColor(i18n("Todo due today color:"), |
854 | &(KOPrefs::instance()->mTodoDueTodayColor),wid); | 858 | &(KOPrefs::instance()->mTodoDueTodayColor),wid); |
855 | widLayout = new QHBoxLayout(wid); | 859 | widLayout = new QHBoxLayout(wid); |
856 | widLayout->addWidget( todoDueTodayColor->label() ); | 860 | widLayout->addWidget( todoDueTodayColor->label() ); |
857 | widLayout->addWidget( todoDueTodayColor->button() ); | 861 | widLayout->addWidget( todoDueTodayColor->button() ); |
858 | topLayout->addWidget(wid,ii++,0); | 862 | topLayout->addWidget(wid,ii++,0); |
859 | //topLayout->addWidget(todoDueTodayColor->button(),ii++,1); | 863 | //topLayout->addWidget(todoDueTodayColor->button(),ii++,1); |
860 | 864 | ||
861 | // Todo overdue color | 865 | // Todo overdue color |
862 | wid = new QWidget( topFrame ); | 866 | wid = new QWidget( topFrame ); |
863 | widLayout = new QHBoxLayout(wid); | 867 | widLayout = new QHBoxLayout(wid); |
864 | KPrefsDialogWidColor *todoOverdueColor = | 868 | KPrefsDialogWidColor *todoOverdueColor = |
865 | addWidColor(i18n("Todo overdue color:"), | 869 | addWidColor(i18n("Todo overdue color:"), |
866 | &(KOPrefs::instance()->mTodoOverdueColor),wid); | 870 | &(KOPrefs::instance()->mTodoOverdueColor),wid); |
867 | widLayout->addWidget(todoOverdueColor->label()); | 871 | widLayout->addWidget(todoOverdueColor->label()); |
868 | widLayout->addWidget(todoOverdueColor->button()); | 872 | widLayout->addWidget(todoOverdueColor->button()); |
869 | topLayout->addWidget(wid,ii++,0); | 873 | topLayout->addWidget(wid,ii++,0); |
870 | 874 | ||
871 | dummy = | 875 | dummy = |
872 | addWidBool(i18n("Colors are applied to text"), | 876 | addWidBool(i18n("Colors are applied to text"), |
873 | &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame); | 877 | &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame); |
874 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 878 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
875 | 879 | ||
876 | 880 | ||
877 | 881 | ||
878 | topFrame = addPage(i18n("View Options"),0,0); | 882 | topFrame = addPage(i18n("View Options"),0,0); |
879 | 883 | ||
880 | topLayout = new QGridLayout(topFrame,4,1); | 884 | topLayout = new QGridLayout(topFrame,4,1); |
881 | topLayout->setSpacing(mSpacingHint); | 885 | topLayout->setSpacing(mSpacingHint); |
882 | topLayout->setMargin(mMarginHint); | 886 | topLayout->setMargin(mMarginHint); |
883 | ii = 0; | 887 | ii = 0; |
884 | 888 | ||
885 | dummy = | 889 | dummy = |
886 | addWidBool(i18n("Show Sync Events"), | 890 | addWidBool(i18n("Show Sync Events"), |
887 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); | 891 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); |
888 | topLayout->addWidget(dummy->checkBox(), ii++,0); | 892 | topLayout->addWidget(dummy->checkBox(), ii++,0); |
889 | 893 | ||
890 | lab = new QLabel( i18n("Show in todo/event viewer:"), topFrame); | 894 | lab = new QLabel( i18n("Show in todo/event viewer:"), topFrame); |
891 | topLayout->addWidget(lab ,ii++,0); | 895 | topLayout->addWidget(lab ,ii++,0); |
892 | 896 | ||
893 | dummy = addWidBool(i18n("Details"), | 897 | dummy = addWidBool(i18n("Details"), |
894 | &(KOPrefs::instance()->mEVshowDetails),topFrame); | 898 | &(KOPrefs::instance()->mEVshowDetails),topFrame); |
895 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 899 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
896 | dummy = addWidBool(i18n("Created time"), | 900 | dummy = addWidBool(i18n("Created time"), |
897 | &(KOPrefs::instance()->mEVshowCreated),topFrame); | 901 | &(KOPrefs::instance()->mEVshowCreated),topFrame); |
898 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 902 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
899 | dummy = addWidBool(i18n("Last modified time"), | 903 | dummy = addWidBool(i18n("Last modified time"), |
900 | &(KOPrefs::instance()->mEVshowChanged),topFrame); | 904 | &(KOPrefs::instance()->mEVshowChanged),topFrame); |
901 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 905 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
902 | 906 | ||
903 | 907 | ||
904 | lab = new QLabel( i18n("Show in What'sThis quick overview:"), topFrame); | 908 | lab = new QLabel( i18n("Show in What'sThis quick overview:"), topFrame); |
905 | topLayout->addWidget(lab ,ii++,0); | 909 | topLayout->addWidget(lab ,ii++,0); |
906 | 910 | ||
907 | dummy = addWidBool(i18n("Details"), | 911 | dummy = addWidBool(i18n("Details"), |
908 | &(KOPrefs::instance()->mWTshowDetails),topFrame); | 912 | &(KOPrefs::instance()->mWTshowDetails),topFrame); |
909 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 913 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
910 | dummy = addWidBool(i18n("Created time"), | 914 | dummy = addWidBool(i18n("Created time"), |
911 | &(KOPrefs::instance()->mWTshowCreated),topFrame); | 915 | &(KOPrefs::instance()->mWTshowCreated),topFrame); |
912 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 916 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
913 | dummy = addWidBool(i18n("Last modified time"), | 917 | dummy = addWidBool(i18n("Last modified time"), |
914 | &(KOPrefs::instance()->mWTshowChanged),topFrame); | 918 | &(KOPrefs::instance()->mWTshowChanged),topFrame); |
915 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 919 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
916 | 920 | ||
917 | 921 | ||
918 | topFrame = addPage(i18n("Alarm"),0,0); | 922 | topFrame = addPage(i18n("Alarm"),0,0); |
919 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 923 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
920 | 924 | ||
921 | topLayout = new QGridLayout(topFrame,2,1); | 925 | topLayout = new QGridLayout(topFrame,2,1); |
922 | topLayout->setSpacing(mSpacingHint); | 926 | topLayout->setSpacing(mSpacingHint); |
923 | topLayout->setMargin(mMarginHint); | 927 | topLayout->setMargin(mMarginHint); |
924 | int iii = 0; | 928 | int iii = 0; |
925 | 929 | ||
926 | dummy = | 930 | dummy = |
927 | addWidBool(i18n("Use internal alarm notification"), | 931 | addWidBool(i18n("Use internal alarm notification"), |
928 | &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame); | 932 | &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame); |
929 | topLayout->addWidget(dummy->checkBox(),iii++,0); | 933 | topLayout->addWidget(dummy->checkBox(),iii++,0); |
930 | 934 | ||
931 | if ( QApplication::desktop()->height() > 240 ) { | 935 | if ( QApplication::desktop()->height() > 240 ) { |
932 | 936 | ||
933 | lab = new QLabel( i18n("Note: KO/Pi must be running to notify you about an alarm. Recommended for use on Zaurus: Disable this option and install KO/Pi alarm applet.\n"), topFrame); | 937 | lab = new QLabel( i18n("Note: KO/Pi must be running to notify you about an alarm. Recommended for use on Zaurus: Disable this option and install KO/Pi alarm applet.\n"), topFrame); |
934 | 938 | ||
935 | topLayout->addWidget(lab ,iii++,0); | 939 | topLayout->addWidget(lab ,iii++,0); |
936 | } | 940 | } |
937 | #ifndef DESKTOP_VERSION | 941 | #ifndef DESKTOP_VERSION |
938 | lab->setAlignment( AlignLeft|WordBreak|AlignTop); | 942 | lab->setAlignment( AlignLeft|WordBreak|AlignTop); |
939 | #else | 943 | #else |
940 | lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); | 944 | lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); |
941 | lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); | 945 | lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); |
942 | #endif | 946 | #endif |
943 | 947 | ||
944 | QHBox* dummyBox = new QHBox(topFrame); | 948 | QHBox* dummyBox = new QHBox(topFrame); |
945 | new QLabel(i18n("Play beeps count:"),dummyBox); | 949 | new QLabel(i18n("Play beeps count:"),dummyBox); |
946 | mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox); | 950 | mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox); |
947 | topLayout->addWidget(dummyBox,iii++,0); | 951 | topLayout->addWidget(dummyBox,iii++,0); |
948 | 952 | ||
949 | dummyBox = new QHBox(topFrame); | 953 | dummyBox = new QHBox(topFrame); |
950 | new QLabel(i18n("Beeps interval in sec:"),dummyBox); | 954 | new QLabel(i18n("Beeps interval in sec:"),dummyBox); |
951 | mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox); | 955 | mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox); |
952 | topLayout->addWidget(dummyBox,iii++,0); | 956 | topLayout->addWidget(dummyBox,iii++,0); |
953 | 957 | ||
954 | dummyBox = new QHBox(topFrame); | 958 | dummyBox = new QHBox(topFrame); |
955 | new QLabel(i18n("Default suspend time in min:"),dummyBox); | 959 | new QLabel(i18n("Default suspend time in min:"),dummyBox); |
956 | mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox); | 960 | mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox); |
957 | topLayout->addWidget(dummyBox,iii++,0); | 961 | topLayout->addWidget(dummyBox,iii++,0); |
958 | 962 | ||
959 | dummyBox = new QHBox(topFrame); | 963 | dummyBox = new QHBox(topFrame); |
960 | new QLabel(i18n("Auto suspend count:"),dummyBox); | 964 | new QLabel(i18n("Auto suspend count:"),dummyBox); |
961 | mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox); | 965 | mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox); |
962 | topLayout->addWidget(dummyBox,iii++,0); | 966 | topLayout->addWidget(dummyBox,iii++,0); |
963 | 967 | ||
964 | 968 | ||
965 | 969 | ||
966 | QHBox* hbo = new QHBox ( topFrame ); | 970 | QHBox* hbo = new QHBox ( topFrame ); |
967 | mDefaultAlarmFile = new QLineEdit(hbo); | 971 | mDefaultAlarmFile = new QLineEdit(hbo); |
968 | QPushButton * loadTemplate = new QPushButton(hbo); | 972 | QPushButton * loadTemplate = new QPushButton(hbo); |
969 | QPixmap icon; | 973 | QPixmap icon; |
970 | if ( QApplication::desktop()->width() < 321 ) | 974 | if ( QApplication::desktop()->width() < 321 ) |
971 | icon = SmallIcon("fileimport16"); | 975 | icon = SmallIcon("fileimport16"); |
972 | else | 976 | else |
973 | icon = SmallIcon("fileimport"); | 977 | icon = SmallIcon("fileimport"); |
974 | loadTemplate->setIconSet (icon ) ; | 978 | loadTemplate->setIconSet (icon ) ; |
975 | connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) ); | 979 | connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) ); |
976 | int size = loadTemplate->sizeHint().height(); | 980 | int size = loadTemplate->sizeHint().height(); |
977 | loadTemplate->setFixedSize( size, size ); | 981 | loadTemplate->setFixedSize( size, size ); |
978 | //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame); | 982 | //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame); |
979 | // topLayout->addWidget(lab ,iii++,0); | 983 | // topLayout->addWidget(lab ,iii++,0); |
980 | lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame); | 984 | lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame); |
981 | topLayout->addWidget(lab ,iii++,0); | 985 | topLayout->addWidget(lab ,iii++,0); |
982 | topLayout->addWidget(hbo,iii++,0); | 986 | topLayout->addWidget(hbo,iii++,0); |
983 | // lab = new QLabel( i18n("Note: This does not mean, that for every alarm this file is replayed. This file here is associated with a newly created alarm."), topFrame); | 987 | // lab = new QLabel( i18n("Note: This does not mean, that for every alarm this file is replayed. This file here is associated with a newly created alarm."), topFrame); |
984 | 988 | ||
985 | // topLayout->addWidget(lab ,iii++,0); | 989 | // topLayout->addWidget(lab ,iii++,0); |
986 | // #ifndef DESKTOP_VERSION | 990 | // #ifndef DESKTOP_VERSION |
987 | // lab->setAlignment( AlignLeft|WordBreak|AlignTop); | 991 | // lab->setAlignment( AlignLeft|WordBreak|AlignTop); |
988 | // #else | 992 | // #else |
989 | // lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); | 993 | // lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); |
990 | // lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); | 994 | // lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); |
991 | // #endif | 995 | // #endif |
992 | 996 | ||
993 | 997 | ||
994 | } | 998 | } |
995 | 999 | ||
996 | void KOPrefsDialog::selectSoundFile() | 1000 | void KOPrefsDialog::selectSoundFile() |
997 | { | 1001 | { |
998 | QString fileName = mDefaultAlarmFile->text(); | 1002 | QString fileName = mDefaultAlarmFile->text(); |
999 | fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this ); | 1003 | fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this ); |
1000 | if ( fileName.length() > 0 ) | 1004 | if ( fileName.length() > 0 ) |
1001 | mDefaultAlarmFile->setText( fileName ); | 1005 | mDefaultAlarmFile->setText( fileName ); |
1002 | } | 1006 | } |
1003 | void KOPrefsDialog::setupFontsTab() | 1007 | void KOPrefsDialog::setupFontsTab() |
1004 | { | 1008 | { |
1005 | 1009 | ||
1006 | QFrame *topFrame = addPage(i18n("Fonts"),0,0); | 1010 | QFrame *topFrame = addPage(i18n("Fonts"),0,0); |
1007 | // DesktopIcon("fonts",KIcon::SizeMedium)); | 1011 | // DesktopIcon("fonts",KIcon::SizeMedium)); |
1008 | 1012 | ||
1009 | QGridLayout *topLayout = new QGridLayout(topFrame,7,3); | 1013 | QGridLayout *topLayout = new QGridLayout(topFrame,7,3); |
1010 | topLayout->setSpacing(1); | 1014 | topLayout->setSpacing(1); |
1011 | topLayout->setMargin(3); | 1015 | topLayout->setMargin(3); |
1012 | KPrefsDialogWidFont * tVFont; | 1016 | KPrefsDialogWidFont * tVFont; |
1013 | int i = 0; | 1017 | int i = 0; |
1014 | KPrefsDialogWidFont *timeLabelsFont = | 1018 | KPrefsDialogWidFont *timeLabelsFont = |
1015 | addWidFont(i18n("23"),i18n("DateNavigator:(nr)"), | 1019 | addWidFont(i18n("23"),i18n("DateNavigator:(nr)"), |
1016 | &(KOPrefs::instance()->mDateNavigatorFont),topFrame); | 1020 | &(KOPrefs::instance()->mDateNavigatorFont),topFrame); |
1017 | topLayout->addWidget(timeLabelsFont->label(),i,0); | 1021 | topLayout->addWidget(timeLabelsFont->label(),i,0); |
1018 | topLayout->addWidget(timeLabelsFont->preview(),i,1); | 1022 | topLayout->addWidget(timeLabelsFont->preview(),i,1); |
1019 | topLayout->addWidget(timeLabelsFont->button(),i,2); | 1023 | topLayout->addWidget(timeLabelsFont->button(),i,2); |
1020 | ++i; | 1024 | ++i; |
1021 | 1025 | ||
1022 | 1026 | ||
1023 | timeLabelsFont = | 1027 | timeLabelsFont = |
1024 | addWidFont(i18n("Mon 15"),i18n("Date Labels:"), | 1028 | addWidFont(i18n("Mon 15"),i18n("Date Labels:"), |
1025 | &(KOPrefs::instance()->mTimeLabelsFont),topFrame); | 1029 | &(KOPrefs::instance()->mTimeLabelsFont),topFrame); |
1026 | topLayout->addWidget(timeLabelsFont->label(),i,0); | 1030 | topLayout->addWidget(timeLabelsFont->label(),i,0); |
1027 | topLayout->addWidget(timeLabelsFont->preview(),i,1); | 1031 | topLayout->addWidget(timeLabelsFont->preview(),i,1); |
1028 | topLayout->addWidget(timeLabelsFont->button(),i,2); | 1032 | topLayout->addWidget(timeLabelsFont->button(),i,2); |
1029 | ++i; | 1033 | ++i; |
1030 | 1034 | ||
1031 | KPrefsDialogWidFont *timeBarFont = | 1035 | KPrefsDialogWidFont *timeBarFont = |
1032 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"), | 1036 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"), |
1033 | &(KOPrefs::instance()->mTimeBarFont),topFrame); | 1037 | &(KOPrefs::instance()->mTimeBarFont),topFrame); |
1034 | topLayout->addWidget(timeBarFont->label(),i,0); | 1038 | topLayout->addWidget(timeBarFont->label(),i,0); |
1035 | topLayout->addWidget(timeBarFont->preview(),i,1); | 1039 | topLayout->addWidget(timeBarFont->preview(),i,1); |
1036 | topLayout->addWidget(timeBarFont->button(),i,2); | 1040 | topLayout->addWidget(timeBarFont->button(),i,2); |
1037 | ++i; | 1041 | ++i; |
1038 | 1042 | ||
1039 | 1043 | ||
1040 | KPrefsDialogWidFont *marcusBainsFont = | 1044 | KPrefsDialogWidFont *marcusBainsFont = |
1041 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"), | 1045 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"), |
1042 | &(KOPrefs::instance()->mMarcusBainsFont),topFrame); | 1046 | &(KOPrefs::instance()->mMarcusBainsFont),topFrame); |
1043 | topLayout->addWidget(marcusBainsFont->label(),i,0); | 1047 | topLayout->addWidget(marcusBainsFont->label(),i,0); |
1044 | topLayout->addWidget(marcusBainsFont->preview(),i,1); | 1048 | topLayout->addWidget(marcusBainsFont->preview(),i,1); |
1045 | topLayout->addWidget(marcusBainsFont->button(),i,2); | 1049 | topLayout->addWidget(marcusBainsFont->button(),i,2); |
1046 | ++i; | 1050 | ++i; |
1047 | 1051 | ||
1048 | tVFont = | 1052 | tVFont = |
1049 | addWidFont(i18n("Summary"),i18n("Event Viewer:"), | 1053 | addWidFont(i18n("Summary"),i18n("Event Viewer:"), |
1050 | &(KOPrefs::instance()->mEventViewFont),topFrame); | 1054 | &(KOPrefs::instance()->mEventViewFont),topFrame); |
1051 | topLayout->addWidget(tVFont->label(),i,0); | 1055 | topLayout->addWidget(tVFont->label(),i,0); |
1052 | topLayout->addWidget(tVFont->preview(),i,1); | 1056 | topLayout->addWidget(tVFont->preview(),i,1); |
1053 | topLayout->addWidget(tVFont->button(),i,2); | 1057 | topLayout->addWidget(tVFont->button(),i,2); |
1054 | ++i; | 1058 | ++i; |
1055 | 1059 | ||
1056 | 1060 | ||
1057 | 1061 | ||
1058 | tVFont = | 1062 | tVFont = |
1059 | addWidFont(i18n("Details"),i18n("EditorBox:"), | 1063 | addWidFont(i18n("Details"),i18n("EditorBox:"), |
1060 | &(KOPrefs::instance()->mEditBoxFont),topFrame); | 1064 | &(KOPrefs::instance()->mEditBoxFont),topFrame); |
1061 | topLayout->addWidget(tVFont->label(),i,0); | 1065 | topLayout->addWidget(tVFont->label(),i,0); |
1062 | topLayout->addWidget(tVFont->preview(),i,1); | 1066 | topLayout->addWidget(tVFont->preview(),i,1); |
1063 | topLayout->addWidget(tVFont->button(),i,2); | 1067 | topLayout->addWidget(tVFont->button(),i,2); |
1064 | ++i; | 1068 | ++i; |
1065 | 1069 | ||
1066 | 1070 | ||
1067 | 1071 | ||
1068 | topLayout->setColStretch(1,1); | 1072 | topLayout->setColStretch(1,1); |
1069 | topLayout->setRowStretch(4,1); | 1073 | topLayout->setRowStretch(4,1); |
1070 | 1074 | ||
1071 | 1075 | ||
1072 | i = 0; | 1076 | i = 0; |
1073 | topFrame = addPage(i18n("View Fonts"),0, | 1077 | topFrame = addPage(i18n("View Fonts"),0, |
1074 | DesktopIcon("fonts",KIcon::SizeMedium)); | 1078 | DesktopIcon("fonts",KIcon::SizeMedium)); |
1075 | 1079 | ||
1076 | topLayout = new QGridLayout(topFrame,7,3); | 1080 | topLayout = new QGridLayout(topFrame,7,3); |
1077 | topLayout->setSpacing(1); | 1081 | topLayout->setSpacing(1); |
1078 | topLayout->setMargin(3); | 1082 | topLayout->setMargin(3); |
1079 | 1083 | ||
1080 | tVFont = | 1084 | tVFont = |
1081 | addWidFont(i18n("Configure KO"),i18n("What's Next View:"), | 1085 | addWidFont(i18n("Configure KO"),i18n("What's Next View:"), |
1082 | &(KOPrefs::instance()->mWhatsNextFont),topFrame); | 1086 | &(KOPrefs::instance()->mWhatsNextFont),topFrame); |
1083 | topLayout->addWidget(tVFont->label(),i,0); | 1087 | topLayout->addWidget(tVFont->label(),i,0); |
1084 | topLayout->addWidget(tVFont->preview(),i,1); | 1088 | topLayout->addWidget(tVFont->preview(),i,1); |
1085 | topLayout->addWidget(tVFont->button(),i,2); | 1089 | topLayout->addWidget(tVFont->button(),i,2); |
1086 | ++i; | 1090 | ++i; |
1087 | KPrefsDialogWidFont *agendaViewFont = | 1091 | KPrefsDialogWidFont *agendaViewFont = |
1088 | addWidFont(i18n("Event text"),i18n("Agenda view:"), | 1092 | addWidFont(i18n("Event text"),i18n("Agenda view:"), |
1089 | &(KOPrefs::instance()->mAgendaViewFont),topFrame); | 1093 | &(KOPrefs::instance()->mAgendaViewFont),topFrame); |
1090 | topLayout->addWidget(agendaViewFont->label(),i,0); | 1094 | topLayout->addWidget(agendaViewFont->label(),i,0); |
1091 | topLayout->addWidget(agendaViewFont->preview(),i,1); | 1095 | topLayout->addWidget(agendaViewFont->preview(),i,1); |
1092 | topLayout->addWidget(agendaViewFont->button(),i,2); | 1096 | topLayout->addWidget(agendaViewFont->button(),i,2); |
1093 | ++i; | 1097 | ++i; |
1094 | 1098 | ||
1095 | 1099 | ||
1096 | KPrefsDialogWidFont *monthViewFont = | 1100 | KPrefsDialogWidFont *monthViewFont = |
1097 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"), | 1101 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"), |
1098 | i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame); | 1102 | i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame); |
1099 | topLayout->addWidget(monthViewFont->label(),i,0); | 1103 | topLayout->addWidget(monthViewFont->label(),i,0); |
1100 | topLayout->addWidget(monthViewFont->preview(),i,1); | 1104 | topLayout->addWidget(monthViewFont->preview(),i,1); |
1101 | topLayout->addWidget(monthViewFont->button(),i,2); | 1105 | topLayout->addWidget(monthViewFont->button(),i,2); |
1102 | ++i; | 1106 | ++i; |
1103 | 1107 | ||
1104 | 1108 | ||
1105 | KPrefsDialogWidFont *lVFont = | 1109 | KPrefsDialogWidFont *lVFont = |
1106 | addWidFont(i18n("Event"),i18n("List View:"), | 1110 | addWidFont(i18n("Event"),i18n("List View:"), |
1107 | &(KOPrefs::instance()->mListViewFont),topFrame); | 1111 | &(KOPrefs::instance()->mListViewFont),topFrame); |
1108 | topLayout->addWidget(lVFont->label(),i,0); | 1112 | topLayout->addWidget(lVFont->label(),i,0); |
1109 | topLayout->addWidget(lVFont->preview(),i,1); | 1113 | topLayout->addWidget(lVFont->preview(),i,1); |
1110 | topLayout->addWidget(lVFont->button(),i,2); | 1114 | topLayout->addWidget(lVFont->button(),i,2); |
1111 | ++i; | 1115 | ++i; |
1112 | 1116 | ||
1113 | 1117 | ||
1114 | tVFont = | 1118 | tVFont = |
1115 | addWidFont(i18n("ToDo"),i18n("ToDoView:"), | 1119 | addWidFont(i18n("ToDo"),i18n("ToDoView:"), |
1116 | &(KOPrefs::instance()->mTodoViewFont),topFrame); | 1120 | &(KOPrefs::instance()->mTodoViewFont),topFrame); |
1117 | topLayout->addWidget(tVFont->label(),i,0); | 1121 | topLayout->addWidget(tVFont->label(),i,0); |
1118 | topLayout->addWidget(tVFont->preview(),i,1); | 1122 | topLayout->addWidget(tVFont->preview(),i,1); |
1119 | topLayout->addWidget(tVFont->button(),i,2); | 1123 | topLayout->addWidget(tVFont->button(),i,2); |
1120 | ++i; | 1124 | ++i; |
1121 | 1125 | ||
1122 | 1126 | ||
1123 | tVFont = | 1127 | tVFont = |
1124 | addWidFont(i18n("Today"),i18n("JournalView:"), | 1128 | addWidFont(i18n("Today"),i18n("JournalView:"), |
1125 | &(KOPrefs::instance()->mJornalViewFont),topFrame); | 1129 | &(KOPrefs::instance()->mJornalViewFont),topFrame); |
1126 | topLayout->addWidget(tVFont->label(),i,0); | 1130 | topLayout->addWidget(tVFont->label(),i,0); |
1127 | topLayout->addWidget(tVFont->preview(),i,1); | 1131 | topLayout->addWidget(tVFont->preview(),i,1); |
1128 | topLayout->addWidget(tVFont->button(),i,2); | 1132 | topLayout->addWidget(tVFont->button(),i,2); |
1129 | ++i; | 1133 | ++i; |
1130 | 1134 | ||
1131 | 1135 | ||
1132 | 1136 | ||
1133 | 1137 | ||
1134 | topLayout->setColStretch(1,1); | 1138 | topLayout->setColStretch(1,1); |
1135 | topLayout->setRowStretch(4,1); | 1139 | topLayout->setRowStretch(4,1); |
1136 | 1140 | ||
1137 | 1141 | ||
1138 | 1142 | ||
1139 | 1143 | ||
1140 | } | 1144 | } |
1141 | 1145 | ||
1142 | void KOPrefsDialog::setupColorsTab() | 1146 | void KOPrefsDialog::setupColorsTab() |
1143 | { | 1147 | { |
1144 | QFrame *topFrame = addPage(i18n("Colors"),0,0); | 1148 | QFrame *topFrame = addPage(i18n("Colors"),0,0); |
1145 | // DesktopIcon("colorize",KIcon::SizeMedium)); | 1149 | // DesktopIcon("colorize",KIcon::SizeMedium)); |
1146 | 1150 | ||
1147 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); | 1151 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); |
1148 | // topLayout->setSpacing(mSpacingHint); | 1152 | // topLayout->setSpacing(mSpacingHint); |
1149 | // topLayout->setMargin(mMarginHint); | 1153 | // topLayout->setMargin(mMarginHint); |
1150 | 1154 | ||
1151 | topLayout->setSpacing(2); | 1155 | topLayout->setSpacing(2); |
1152 | topLayout->setMargin(3); | 1156 | topLayout->setMargin(3); |
1153 | 1157 | ||
1154 | int ii = 1; | 1158 | int ii = 1; |
1155 | QGroupBox *categoryGroup ; | 1159 | QGroupBox *categoryGroup ; |
1156 | 1160 | ||
1157 | categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"), | 1161 | categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"), |
1158 | topFrame); | 1162 | topFrame); |
1159 | topLayout->addMultiCellWidget(categoryGroup,0,0,0,1); | 1163 | topLayout->addMultiCellWidget(categoryGroup,0,0,0,1); |
1160 | 1164 | ||
1161 | mCategoryCombo = new QComboBox(categoryGroup); | 1165 | mCategoryCombo = new QComboBox(categoryGroup); |
1162 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); | 1166 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); |
1163 | connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor())); | 1167 | connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor())); |
1164 | 1168 | ||
1165 | mCategoryButton = new KColorButton(categoryGroup); | 1169 | mCategoryButton = new KColorButton(categoryGroup); |
1166 | connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor())); | 1170 | connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor())); |
1167 | updateCategoryColor(); | 1171 | updateCategoryColor(); |
1168 | 1172 | ||
1169 | 1173 | ||
1170 | // Holiday Color | 1174 | // Holiday Color |
1171 | 1175 | ||
1172 | KPrefsDialogWidColor *holidayColor = | 1176 | KPrefsDialogWidColor *holidayColor = |
1173 | addWidColor(i18n("Holiday color:"), | 1177 | addWidColor(i18n("Holiday color:"), |
1174 | &(KOPrefs::instance()->mHolidayColor),topFrame); | 1178 | &(KOPrefs::instance()->mHolidayColor),topFrame); |
1175 | topLayout->addWidget(holidayColor->label(),ii,0); | 1179 | topLayout->addWidget(holidayColor->label(),ii,0); |
1176 | topLayout->addWidget(holidayColor->button(),ii++,1); | 1180 | topLayout->addWidget(holidayColor->button(),ii++,1); |
1177 | 1181 | ||
1178 | // Highlight Color | 1182 | // Highlight Color |
1179 | KPrefsDialogWidColor *highlightColor = | 1183 | KPrefsDialogWidColor *highlightColor = |
1180 | addWidColor(i18n("Highlight color:"), | 1184 | addWidColor(i18n("Highlight color:"), |
1181 | &(KOPrefs::instance()->mHighlightColor),topFrame); | 1185 | &(KOPrefs::instance()->mHighlightColor),topFrame); |
1182 | topLayout->addWidget(highlightColor->label(),ii,0); | 1186 | topLayout->addWidget(highlightColor->label(),ii,0); |
1183 | topLayout->addWidget(highlightColor->button(),ii++,1); | 1187 | topLayout->addWidget(highlightColor->button(),ii++,1); |
1184 | 1188 | ||
1185 | // Event color | 1189 | // Event color |
1186 | KPrefsDialogWidColor *eventColor = | 1190 | KPrefsDialogWidColor *eventColor = |
1187 | addWidColor(i18n("Default event color:"), | 1191 | addWidColor(i18n("Default event color:"), |
1188 | &(KOPrefs::instance()->mEventColor),topFrame); | 1192 | &(KOPrefs::instance()->mEventColor),topFrame); |
1189 | topLayout->addWidget(eventColor->label(),ii,0); | 1193 | topLayout->addWidget(eventColor->label(),ii,0); |
1190 | topLayout->addWidget(eventColor->button(),ii++,1); | 1194 | topLayout->addWidget(eventColor->button(),ii++,1); |
1191 | eventColor = | 1195 | eventColor = |
1192 | addWidColor(i18n("Default todo done color:"), | 1196 | addWidColor(i18n("Default todo done color:"), |
1193 | &(KOPrefs::instance()->mTodoDoneColor),topFrame); | 1197 | &(KOPrefs::instance()->mTodoDoneColor),topFrame); |
1194 | topLayout->addWidget(eventColor->label(),ii,0); | 1198 | topLayout->addWidget(eventColor->label(),ii,0); |
1195 | topLayout->addWidget(eventColor->button(),ii++,1); | 1199 | topLayout->addWidget(eventColor->button(),ii++,1); |
1196 | 1200 | ||
1197 | if ( QApplication::desktop()->height() <= 240 ) { | 1201 | if ( QApplication::desktop()->height() <= 240 ) { |
1198 | topFrame = addPage(i18n("Colors") +" 2",0,0); | 1202 | topFrame = addPage(i18n("Colors") +" 2",0,0); |
1199 | // DesktopIcon("colorize",KIcon::SizeMedium)); | 1203 | // DesktopIcon("colorize",KIcon::SizeMedium)); |
1200 | 1204 | ||
1201 | topLayout = new QGridLayout(topFrame,5,2); | 1205 | topLayout = new QGridLayout(topFrame,5,2); |
1202 | // topLayout->setSpacing(mSpacingHint); | 1206 | // topLayout->setSpacing(mSpacingHint); |
1203 | // topLayout->setMargin(mMarginHint); | 1207 | // topLayout->setMargin(mMarginHint); |
1204 | 1208 | ||
1205 | topLayout->setSpacing(2); | 1209 | topLayout->setSpacing(2); |
1206 | topLayout->setMargin(3); | 1210 | topLayout->setMargin(3); |
1207 | } | 1211 | } |
1208 | 1212 | ||
1209 | 1213 | ||
1210 | // agenda view background color | 1214 | // agenda view background color |
1211 | KPrefsDialogWidColor *agendaBgColor = | 1215 | KPrefsDialogWidColor *agendaBgColor = |
1212 | addWidColor(i18n("Agenda view background color:"), | 1216 | addWidColor(i18n("Agenda view background color:"), |
1213 | &(KOPrefs::instance()->mAgendaBgColor),topFrame); | 1217 | &(KOPrefs::instance()->mAgendaBgColor),topFrame); |
1214 | topLayout->addWidget(agendaBgColor->label(),ii,0); | 1218 | topLayout->addWidget(agendaBgColor->label(),ii,0); |
1215 | topLayout->addWidget(agendaBgColor->button(),ii++,1); | 1219 | topLayout->addWidget(agendaBgColor->button(),ii++,1); |
1216 | 1220 | ||
1217 | // working hours color | 1221 | // working hours color |