-rw-r--r-- | core/pim/addressbook/abview.cpp | 7 | ||||
-rw-r--r-- | core/pim/addressbook/abview.h | 1 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 54 |
3 files changed, 36 insertions, 26 deletions
diff --git a/core/pim/addressbook/abview.cpp b/core/pim/addressbook/abview.cpp index b89b794..d3ca783 100644 --- a/core/pim/addressbook/abview.cpp +++ b/core/pim/addressbook/abview.cpp | |||
@@ -296,6 +296,13 @@ void AbView::showPersonal( bool personal ) | |||
296 | load(); | 296 | load(); |
297 | } | 297 | } |
298 | 298 | ||
299 | void AbView::setCurrentUid( int uid ){ | ||
300 | |||
301 | m_curr_Contact = uid; | ||
302 | updateView( true ); //true: Don't modificate the UID ! | ||
303 | } | ||
304 | |||
305 | |||
299 | QStringList AbView::categories() | 306 | QStringList AbView::categories() |
300 | { | 307 | { |
301 | mCat.load( categoryFileName() ); | 308 | mCat.load( categoryFileName() ); |
diff --git a/core/pim/addressbook/abview.h b/core/pim/addressbook/abview.h index 8570fe7..55c63cc 100644 --- a/core/pim/addressbook/abview.h +++ b/core/pim/addressbook/abview.h | |||
@@ -29,6 +29,7 @@ public: | |||
29 | 29 | ||
30 | void setView( Views view ); | 30 | void setView( Views view ); |
31 | void showPersonal( bool personal ); | 31 | void showPersonal( bool personal ); |
32 | void setCurrentUid( int uid ); | ||
32 | void setShowByCategory( const QString& cat ); | 33 | void setShowByCategory( const QString& cat ); |
33 | void setShowToView( Views view ); | 34 | void setShowToView( Views view ); |
34 | void setShowByLetter( char c ); | 35 | void setShowByLetter( char c ); |
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 89a3312..e053e94 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -686,36 +686,38 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | |||
686 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 686 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
687 | QString description = "mycard.vcf"; | 687 | QString description = "mycard.vcf"; |
688 | ir->send( beamFilename, description, "text/x-vCard" ); | 688 | ir->send( beamFilename, description, "text/x-vCard" ); |
689 | } else if ( msg == "showUid(int)" ) { | ||
690 | QDataStream stream(data,IO_ReadOnly); | ||
691 | int uid; | ||
692 | stream >> uid; | ||
693 | |||
694 | // Deactivate Personal View.. | ||
695 | if ( actionPersonal->isOn() ){ | ||
696 | actionPersonal->setOn( false ); | ||
697 | slotPersonalView(); | ||
689 | } | 698 | } |
690 | #if 0 | 699 | |
691 | else if (msg == "pickAddresses(QCString,QCString,QStringList,...)" ) { | 700 | // Reset category and show as card.. |
701 | m_abView -> setShowByCategory( QString::null ); | ||
702 | m_abView -> setCurrentUid( uid ); | ||
703 | slotViewSwitched ( AbView::CardView ); | ||
704 | |||
705 | } else if ( msg == "editUid(int)" ) { | ||
692 | QDataStream stream(data,IO_ReadOnly); | 706 | QDataStream stream(data,IO_ReadOnly); |
693 | QCString ch,m; | 707 | int uid; |
694 | QStringList types; | 708 | stream >> uid; |
695 | stream >> ch >> m >> types; | 709 | |
696 | AddressPicker picker(abList,this,0,TRUE); | 710 | // Deactivate Personal View.. |
697 | picker.showMaximized(); | 711 | if ( actionPersonal->isOn() ){ |
698 | picker.setChoiceNames(types); | 712 | actionPersonal->setOn( false ); |
699 | int i=0; | 713 | slotPersonalView(); |
700 | for (QStringList::ConstIterator it = types.begin(); it!=types.end(); ++it) { | ||
701 | QStringList sel; | ||
702 | stream >> sel; | ||
703 | picker.setSelection(i++,sel); | ||
704 | } | ||
705 | picker.showMaximized(); | ||
706 | picker.exec(); | ||
707 | |||
708 | // ###### note: contacts may have been added - save here! | ||
709 | |||
710 | setCentralWidget(abList); | ||
711 | QCopEnvelope e(ch,m); | ||
712 | i=0; | ||
713 | for (QStringList::ConstIterator it = types.begin(); it!=types.end(); ++it) { | ||
714 | QStringList sel = picker.selection(i++); | ||
715 | e << sel; | ||
716 | } | 714 | } |
715 | |||
716 | // Reset category and edit.. | ||
717 | m_abView -> setShowByCategory( QString::null ); | ||
718 | m_abView -> setCurrentUid( uid ); | ||
719 | slotViewEdit(); | ||
717 | } | 720 | } |
718 | #endif | ||
719 | 721 | ||
720 | } | 722 | } |
721 | 723 | ||