author | ulf69 <ulf69> | 2004-10-28 00:21:13 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-10-28 00:21:13 (UTC) |
commit | 621a8505690485db909a573f83433873197595c0 (patch) (unidiff) | |
tree | 1a37fcbdbf439b1d0411ee4d40973fce521be6ea | |
parent | 0b7fefe9f97ced1e4b2d93d26e12385aadb7b7e9 (diff) | |
download | kdepimpi-621a8505690485db909a573f83433873197595c0.zip kdepimpi-621a8505690485db909a573f83433873197595c0.tar.gz kdepimpi-621a8505690485db909a573f83433873197595c0.tar.bz2 |
implemented "nextView" QCop message to toggle between table and detailview
-rw-r--r-- | kaddressbook/kabcore.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index d1dcb6e..638abc9 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -253,192 +253,201 @@ KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const | |||
253 | "X-Anniversary", "KADDRESSBOOK" ); | 253 | "X-Anniversary", "KADDRESSBOOK" ); |
254 | 254 | ||
255 | //US added this field to become compatible with Opie/qtopia addressbook | 255 | //US added this field to become compatible with Opie/qtopia addressbook |
256 | // values can be "female" or "male" or "". An empty field represents undefined. | 256 | // values can be "female" or "male" or "". An empty field represents undefined. |
257 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 257 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
258 | "X-Gender", "KADDRESSBOOK" ); | 258 | "X-Gender", "KADDRESSBOOK" ); |
259 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, | 259 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, |
260 | "X-Children", "KADDRESSBOOK" ); | 260 | "X-Children", "KADDRESSBOOK" ); |
261 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 261 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
262 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 262 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
263 | #endif | 263 | #endif |
264 | initGUI(); | 264 | initGUI(); |
265 | 265 | ||
266 | mIncSearchWidget->setFocus(); | 266 | mIncSearchWidget->setFocus(); |
267 | 267 | ||
268 | 268 | ||
269 | connect( mViewManager, SIGNAL( selected( const QString& ) ), | 269 | connect( mViewManager, SIGNAL( selected( const QString& ) ), |
270 | SLOT( setContactSelected( const QString& ) ) ); | 270 | SLOT( setContactSelected( const QString& ) ) ); |
271 | connect( mViewManager, SIGNAL( executed( const QString& ) ), | 271 | connect( mViewManager, SIGNAL( executed( const QString& ) ), |
272 | SLOT( executeContact( const QString& ) ) ); | 272 | SLOT( executeContact( const QString& ) ) ); |
273 | 273 | ||
274 | connect( mViewManager, SIGNAL( deleteRequest( ) ), | 274 | connect( mViewManager, SIGNAL( deleteRequest( ) ), |
275 | SLOT( deleteContacts( ) ) ); | 275 | SLOT( deleteContacts( ) ) ); |
276 | connect( mViewManager, SIGNAL( modified() ), | 276 | connect( mViewManager, SIGNAL( modified() ), |
277 | SLOT( setModified() ) ); | 277 | SLOT( setModified() ) ); |
278 | 278 | ||
279 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); | 279 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); |
280 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); | 280 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); |
281 | 281 | ||
282 | connect( mXXPortManager, SIGNAL( modified() ), | 282 | connect( mXXPortManager, SIGNAL( modified() ), |
283 | SLOT( setModified() ) ); | 283 | SLOT( setModified() ) ); |
284 | 284 | ||
285 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), | 285 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), |
286 | SLOT( incrementalSearch( const QString& ) ) ); | 286 | SLOT( incrementalSearch( const QString& ) ) ); |
287 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), | 287 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), |
288 | mJumpButtonBar, SLOT( recreateButtons() ) ); | 288 | mJumpButtonBar, SLOT( recreateButtons() ) ); |
289 | 289 | ||
290 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), | 290 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), |
291 | SLOT( sendMail( const QString& ) ) ); | 291 | SLOT( sendMail( const QString& ) ) ); |
292 | 292 | ||
293 | 293 | ||
294 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); | 294 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); |
295 | connect( ExternalAppHandler::instance(), SIGNAL (requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&)),this, SLOT(requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&))); | 295 | connect( ExternalAppHandler::instance(), SIGNAL (requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&)),this, SLOT(requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&))); |
296 | connect( ExternalAppHandler::instance(), SIGNAL (requestForBirthdayList(const QString&, const QString&)),this, SLOT(requestForBirthdayList(const QString&, const QString&))); | 296 | connect( ExternalAppHandler::instance(), SIGNAL (requestForBirthdayList(const QString&, const QString&)),this, SLOT(requestForBirthdayList(const QString&, const QString&))); |
297 | connect( ExternalAppHandler::instance(), SIGNAL (nextView()),this, SLOT(setDetailsToggle())); | 297 | connect( ExternalAppHandler::instance(), SIGNAL (nextView()),this, SLOT(setDetailsToggle())); |
298 | 298 | ||
299 | 299 | ||
300 | #ifndef KAB_EMBEDDED | 300 | #ifndef KAB_EMBEDDED |
301 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), | 301 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), |
302 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); | 302 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); |
303 | 303 | ||
304 | connect( mDetails, SIGNAL( browse( const QString& ) ), | 304 | connect( mDetails, SIGNAL( browse( const QString& ) ), |
305 | SLOT( browse( const QString& ) ) ); | 305 | SLOT( browse( const QString& ) ) ); |
306 | 306 | ||
307 | 307 | ||
308 | mAddressBookService = new KAddressBookService( this ); | 308 | mAddressBookService = new KAddressBookService( this ); |
309 | 309 | ||
310 | #endif //KAB_EMBEDDED | 310 | #endif //KAB_EMBEDDED |
311 | 311 | ||
312 | mMessageTimer = new QTimer( this ); | 312 | mMessageTimer = new QTimer( this ); |
313 | connect( mMessageTimer, SIGNAL( timeout() ), this, SLOT( setCaptionBack() ) ); | 313 | connect( mMessageTimer, SIGNAL( timeout() ), this, SLOT( setCaptionBack() ) ); |
314 | mEditorDialog = 0; | 314 | mEditorDialog = 0; |
315 | createAddresseeEditorDialog( this ); | 315 | createAddresseeEditorDialog( this ); |
316 | setModified( false ); | 316 | setModified( false ); |
317 | mBRdisabled = false; | 317 | mBRdisabled = false; |
318 | #ifndef DESKTOP_VERSION | 318 | #ifndef DESKTOP_VERSION |
319 | infrared = 0; | 319 | infrared = 0; |
320 | #endif | 320 | #endif |
321 | //toggleBeamReceive( ); | 321 | //toggleBeamReceive( ); |
322 | } | 322 | } |
323 | 323 | ||
324 | KABCore::~KABCore() | 324 | KABCore::~KABCore() |
325 | { | 325 | { |
326 | // save(); | 326 | // save(); |
327 | //saveSettings(); | 327 | //saveSettings(); |
328 | //KABPrefs::instance()->writeConfig(); | 328 | //KABPrefs::instance()->writeConfig(); |
329 | delete AddresseeConfig::instance(); | 329 | delete AddresseeConfig::instance(); |
330 | mAddressBook = 0; | 330 | mAddressBook = 0; |
331 | KABC::StdAddressBook::close(); | 331 | KABC::StdAddressBook::close(); |
332 | 332 | ||
333 | delete syncManager; | 333 | delete syncManager; |
334 | #ifndef DESKTOP_VERSION | 334 | #ifndef DESKTOP_VERSION |
335 | if ( infrared ) | 335 | if ( infrared ) |
336 | delete infrared; | 336 | delete infrared; |
337 | #endif | 337 | #endif |
338 | } | 338 | } |
339 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) | 339 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) |
340 | { | 340 | { |
341 | qDebug("KA: QCOP message received: %s ", cmsg.data() ); | 341 | qDebug("KA: QCOP message received: %s ", cmsg.data() ); |
342 | if ( cmsg == "setDocument(QString)" ) { | 342 | if ( cmsg == "setDocument(QString)" ) { |
343 | QDataStream stream( data, IO_ReadOnly ); | 343 | QDataStream stream( data, IO_ReadOnly ); |
344 | QString fileName; | 344 | QString fileName; |
345 | stream >> fileName; | 345 | stream >> fileName; |
346 | recieve( fileName ); | 346 | recieve( fileName ); |
347 | return; | 347 | return; |
348 | } | 348 | } |
349 | else if ( cmsg == "nextView()" ) | ||
350 | { | ||
351 | //toggle between details/ no details | ||
352 | bool b = !mActionDetails->isChecked(); | ||
353 | setDetailsVisible( b ); | ||
354 | mActionDetails->setChecked( b ); | ||
355 | } | ||
356 | |||
357 | |||
349 | } | 358 | } |
350 | void KABCore::toggleBeamReceive( ) | 359 | void KABCore::toggleBeamReceive( ) |
351 | { | 360 | { |
352 | if ( mBRdisabled ) | 361 | if ( mBRdisabled ) |
353 | return; | 362 | return; |
354 | #ifndef DESKTOP_VERSION | 363 | #ifndef DESKTOP_VERSION |
355 | if ( infrared ) { | 364 | if ( infrared ) { |
356 | qDebug("AB disable BeamReceive "); | 365 | qDebug("AB disable BeamReceive "); |
357 | delete infrared; | 366 | delete infrared; |
358 | infrared = 0; | 367 | infrared = 0; |
359 | mActionBR->setChecked(false); | 368 | mActionBR->setChecked(false); |
360 | return; | 369 | return; |
361 | } | 370 | } |
362 | qDebug("AB enable BeamReceive "); | 371 | qDebug("AB enable BeamReceive "); |
363 | mActionBR->setChecked(true); | 372 | mActionBR->setChecked(true); |
364 | 373 | ||
365 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; | 374 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; |
366 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); | 375 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); |
367 | #endif | 376 | #endif |
368 | } | 377 | } |
369 | 378 | ||
370 | 379 | ||
371 | void KABCore::disableBR(bool b) | 380 | void KABCore::disableBR(bool b) |
372 | { | 381 | { |
373 | #ifndef DESKTOP_VERSION | 382 | #ifndef DESKTOP_VERSION |
374 | if ( b ) { | 383 | if ( b ) { |
375 | if ( infrared ) { | 384 | if ( infrared ) { |
376 | toggleBeamReceive( ); | 385 | toggleBeamReceive( ); |
377 | } | 386 | } |
378 | mBRdisabled = true; | 387 | mBRdisabled = true; |
379 | } else { | 388 | } else { |
380 | if ( mBRdisabled ) { | 389 | if ( mBRdisabled ) { |
381 | mBRdisabled = false; | 390 | mBRdisabled = false; |
382 | //toggleBeamReceive( ); | 391 | //toggleBeamReceive( ); |
383 | } | 392 | } |
384 | } | 393 | } |
385 | #endif | 394 | #endif |
386 | 395 | ||
387 | } | 396 | } |
388 | void KABCore::recieve( QString fn ) | 397 | void KABCore::recieve( QString fn ) |
389 | { | 398 | { |
390 | //qDebug("KABCore::recieve "); | 399 | //qDebug("KABCore::recieve "); |
391 | int count = mAddressBook->importFromFile( fn, true ); | 400 | int count = mAddressBook->importFromFile( fn, true ); |
392 | if ( count ) | 401 | if ( count ) |
393 | setModified( true ); | 402 | setModified( true ); |
394 | mViewManager->refreshView(); | 403 | mViewManager->refreshView(); |
395 | message(i18n("%1 contact(s) received!").arg( count )); | 404 | message(i18n("%1 contact(s) received!").arg( count )); |
396 | topLevelWidget()->showMaximized(); | 405 | topLevelWidget()->showMaximized(); |
397 | topLevelWidget()->raise(); | 406 | topLevelWidget()->raise(); |
398 | } | 407 | } |
399 | void KABCore::restoreSettings() | 408 | void KABCore::restoreSettings() |
400 | { | 409 | { |
401 | mMultipleViewsAtOnce = KABPrefs::instance()->mMultipleViewsAtOnce; | 410 | mMultipleViewsAtOnce = KABPrefs::instance()->mMultipleViewsAtOnce; |
402 | 411 | ||
403 | bool state; | 412 | bool state; |
404 | 413 | ||
405 | if (mMultipleViewsAtOnce) | 414 | if (mMultipleViewsAtOnce) |
406 | state = KABPrefs::instance()->mDetailsPageVisible; | 415 | state = KABPrefs::instance()->mDetailsPageVisible; |
407 | else | 416 | else |
408 | state = false; | 417 | state = false; |
409 | 418 | ||
410 | mActionDetails->setChecked( state ); | 419 | mActionDetails->setChecked( state ); |
411 | setDetailsVisible( state ); | 420 | setDetailsVisible( state ); |
412 | 421 | ||
413 | state = KABPrefs::instance()->mJumpButtonBarVisible; | 422 | state = KABPrefs::instance()->mJumpButtonBarVisible; |
414 | 423 | ||
415 | mActionJumpBar->setChecked( state ); | 424 | mActionJumpBar->setChecked( state ); |
416 | setJumpButtonBarVisible( state ); | 425 | setJumpButtonBarVisible( state ); |
417 | /*US | 426 | /*US |
418 | QValueList<int> splitterSize = KABPrefs::instance()->mDetailsSplitter; | 427 | QValueList<int> splitterSize = KABPrefs::instance()->mDetailsSplitter; |
419 | if ( splitterSize.count() == 0 ) { | 428 | if ( splitterSize.count() == 0 ) { |
420 | splitterSize.append( width() / 2 ); | 429 | splitterSize.append( width() / 2 ); |
421 | splitterSize.append( width() / 2 ); | 430 | splitterSize.append( width() / 2 ); |
422 | } | 431 | } |
423 | mMiniSplitter->setSizes( splitterSize ); | 432 | mMiniSplitter->setSizes( splitterSize ); |
424 | if ( mExtensionBarSplitter ) { | 433 | if ( mExtensionBarSplitter ) { |
425 | splitterSize = KABPrefs::instance()->mExtensionsSplitter; | 434 | splitterSize = KABPrefs::instance()->mExtensionsSplitter; |
426 | if ( splitterSize.count() == 0 ) { | 435 | if ( splitterSize.count() == 0 ) { |
427 | splitterSize.append( width() / 2 ); | 436 | splitterSize.append( width() / 2 ); |
428 | splitterSize.append( width() / 2 ); | 437 | splitterSize.append( width() / 2 ); |
429 | } | 438 | } |
430 | mExtensionBarSplitter->setSizes( splitterSize ); | 439 | mExtensionBarSplitter->setSizes( splitterSize ); |
431 | 440 | ||
432 | } | 441 | } |
433 | */ | 442 | */ |
434 | mViewManager->restoreSettings(); | 443 | mViewManager->restoreSettings(); |
435 | mIncSearchWidget->setCurrentItem( KABPrefs::instance()->mCurrentIncSearchField ); | 444 | mIncSearchWidget->setCurrentItem( KABPrefs::instance()->mCurrentIncSearchField ); |
436 | mExtensionManager->restoreSettings(); | 445 | mExtensionManager->restoreSettings(); |
437 | #ifdef DESKTOP_VERSION | 446 | #ifdef DESKTOP_VERSION |
438 | int wid = width(); | 447 | int wid = width(); |
439 | if ( wid < 10 ) | 448 | if ( wid < 10 ) |
440 | wid = 400; | 449 | wid = 400; |
441 | #else | 450 | #else |
442 | int wid = QApplication::desktop()->width(); | 451 | int wid = QApplication::desktop()->width(); |
443 | if ( wid < 640 ) | 452 | if ( wid < 640 ) |
444 | wid = QApplication::desktop()->height(); | 453 | wid = QApplication::desktop()->height(); |