author | zautrix <zautrix> | 2005-06-20 06:01:55 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-20 06:01:55 (UTC) |
commit | 3876e95ff79298e9d95c506973c69790290b611e (patch) (unidiff) | |
tree | 654477f1cf73911d57fff86f0e087faf4021e113 | |
parent | 19768fad9c35bd2611512dcdb426c879ad080493 (diff) | |
download | kdepimpi-3876e95ff79298e9d95c506973c69790290b611e.zip kdepimpi-3876e95ff79298e9d95c506973c69790290b611e.tar.gz kdepimpi-3876e95ff79298e9d95c506973c69790290b611e.tar.bz2 |
fixes in contact selection
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 2 | ||||
-rw-r--r-- | kabc/addresseedialog.cpp | 18 | ||||
-rw-r--r-- | kabc/addresseedialog.h | 2 |
3 files changed, 18 insertions, 4 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 0ebd853..c4557ef 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -5,16 +5,18 @@ Info about the changes in new versions of KDE-Pim/Pi | |||
5 | 5 | ||
6 | KO/Pi: | 6 | KO/Pi: |
7 | Added info about the completion state of a todo in the ListView/Searchdialog. | 7 | Added info about the completion state of a todo in the ListView/Searchdialog. |
8 | If in TodoView is selected "do not show compledted todos" then completed todos are not shown in the ListView as well. | 8 | If in TodoView is selected "do not show compledted todos" then completed todos are not shown in the ListView as well. |
9 | Fixed some updating problems when changing the filter. | 9 | Fixed some updating problems when changing the filter. |
10 | 10 | ||
11 | KA/Pi: | 11 | KA/Pi: |
12 | In the addressee selection dialog now the formatted name is shown, if not empty. | 12 | In the addressee selection dialog now the formatted name is shown, if not empty. |
13 | Added a column "category" to the addressee selection dialog to make it possible to sort addressees after category. | ||
14 | Now in the addressee selection dialog a selected contact is remove with a single click from the selected list. | ||
13 | 15 | ||
14 | Fixed in the file selector on the Zaurus the problem that symbolic links to files/dirs were ignored. | 16 | Fixed in the file selector on the Zaurus the problem that symbolic links to files/dirs were ignored. |
15 | Fixed the sorting for size in the file selector on the Z. | 17 | Fixed the sorting for size in the file selector on the Z. |
16 | 18 | ||
17 | Changed the color selection dialog on the Zaurus to a more user friendly version. | 19 | Changed the color selection dialog on the Zaurus to a more user friendly version. |
18 | 20 | ||
19 | ********** VERSION 2.1.7 ************ | 21 | ********** VERSION 2.1.7 ************ |
20 | 22 | ||
diff --git a/kabc/addresseedialog.cpp b/kabc/addresseedialog.cpp index e89584d..3e7b72c 100644 --- a/kabc/addresseedialog.cpp +++ b/kabc/addresseedialog.cpp | |||
@@ -39,16 +39,17 @@ | |||
39 | using namespace KABC; | 39 | using namespace KABC; |
40 | 40 | ||
41 | AddresseeItem::AddresseeItem( QListView *parent, const Addressee &addressee ) : | 41 | AddresseeItem::AddresseeItem( QListView *parent, const Addressee &addressee ) : |
42 | QListViewItem( parent ), | 42 | QListViewItem( parent ), |
43 | mAddressee( addressee ) | 43 | mAddressee( addressee ) |
44 | { | 44 | { |
45 | setText( Name,addressee.realName()); | 45 | setText( Name,addressee.realName()); |
46 | setText( Email, addressee.preferredEmail() ); | 46 | setText( Email, addressee.preferredEmail() ); |
47 | setText( Category, addressee.categories().join(";") ); | ||
47 | } | 48 | } |
48 | 49 | ||
49 | QString AddresseeItem::key( int column, bool ) const | 50 | QString AddresseeItem::key( int column, bool ) const |
50 | { | 51 | { |
51 | 52 | ||
52 | if (column == Email) { | 53 | if (column == Email) { |
53 | QString value = text(Email); | 54 | QString value = text(Email); |
54 | int val = value.findRev("@"); | 55 | int val = value.findRev("@"); |
@@ -75,49 +76,59 @@ AddresseeDialog::AddresseeDialog( QWidget *parent, bool multiple ) : | |||
75 | QWidget *listWidget = new QWidget( mMiniSplitter ); | 76 | QWidget *listWidget = new QWidget( mMiniSplitter ); |
76 | 77 | ||
77 | QBoxLayout *listLayout = new QVBoxLayout (listWidget) ; | 78 | QBoxLayout *listLayout = new QVBoxLayout (listWidget) ; |
78 | //topLayout->addLayout( listLayout ); | 79 | //topLayout->addLayout( listLayout ); |
79 | 80 | ||
80 | mAddresseeList = new KListView( listWidget ); | 81 | mAddresseeList = new KListView( listWidget ); |
81 | mAddresseeList->addColumn( i18n("Name") ); | 82 | mAddresseeList->addColumn( i18n("Name") ); |
82 | mAddresseeList->addColumn( i18n("Email") ); | 83 | mAddresseeList->addColumn( i18n("Email") ); |
84 | mAddresseeList->addColumn( i18n("Category") ); | ||
83 | mAddresseeList->setAllColumnsShowFocus( true ); | 85 | mAddresseeList->setAllColumnsShowFocus( true ); |
84 | mAddresseeList->setFullWidth( true ); | 86 | mAddresseeList->setFullWidth( true ); |
85 | listLayout->addWidget( mAddresseeList ); | 87 | listLayout->addWidget( mAddresseeList ); |
86 | connect( mAddresseeList, SIGNAL( doubleClicked( QListViewItem * ) ), | 88 | connect( mAddresseeList, SIGNAL( doubleClicked( QListViewItem * ) ), |
87 | SLOT( slotOk() ) ); | 89 | SLOT( slotOk() ) ); |
88 | 90 | ||
89 | mAddresseeEdit = new QLineEdit( listWidget ); | 91 | QHBox* searchBox = new QHBox ( listWidget ); |
92 | mAddresseeEdit = new QLineEdit( searchBox ); | ||
90 | connect( mAddresseeEdit, SIGNAL( returnPressed() ), | 93 | connect( mAddresseeEdit, SIGNAL( returnPressed() ), |
91 | SLOT( loadAddressBook() ) ); | 94 | SLOT( loadAddressBook() ) ); |
92 | mAddresseeEdit->setFocus(); | 95 | mAddresseeEdit->setFocus(); |
96 | QPushButton *searchButton = new QPushButton( i18n("Search!"), searchBox ); | ||
97 | connect ( searchButton, SIGNAL( clicked() ), SLOT( loadAddressBook() ) ); | ||
93 | 98 | ||
94 | listLayout->addWidget( mAddresseeEdit ); | 99 | listLayout->addWidget( searchBox ); |
95 | 100 | ||
96 | if ( mMultiple ) { | 101 | if ( mMultiple ) { |
97 | //QBoxLayout *selectedLayout = new QVBoxLayout; | 102 | //QBoxLayout *selectedLayout = new QVBoxLayout; |
98 | //topLayout->addLayout( selectedLayout ); | 103 | //topLayout->addLayout( selectedLayout ); |
99 | //topLayout->setSpacing( spacingHint() ); | 104 | //topLayout->setSpacing( spacingHint() ); |
100 | 105 | ||
101 | QVBox *selectedGroup = new QVBox( mMiniSplitter ); | 106 | QVBox *selectedGroup = new QVBox( mMiniSplitter ); |
102 | new QLabel ( i18n("Selected:"), selectedGroup ); | 107 | new QLabel ( i18n("Selected:"), selectedGroup ); |
103 | //selectedLayout->addWidget( selectedGroup ); | 108 | //selectedLayout->addWidget( selectedGroup ); |
104 | 109 | ||
105 | mSelectedList = new KListView( selectedGroup ); | 110 | mSelectedList = new KListView( selectedGroup ); |
106 | mSelectedList->addColumn( i18n("Name") ); | 111 | mSelectedList->addColumn( i18n("Name") ); |
107 | mSelectedList->addColumn( i18n("Email") ); | 112 | mSelectedList->addColumn( i18n("Email") ); |
108 | mSelectedList->setAllColumnsShowFocus( true ); | 113 | mSelectedList->setAllColumnsShowFocus( true ); |
109 | mSelectedList->setFullWidth( true ); | 114 | mSelectedList->setFullWidth( true ); |
110 | connect( mSelectedList, SIGNAL( doubleClicked( QListViewItem * ) ), | 115 | //connect( mSelectedList, SIGNAL( doubleClicked( QListViewItem * ) ), |
116 | // SLOT( removeSelected() ) ); | ||
117 | connect( mSelectedList, SIGNAL( clicked( QListViewItem * ) ), | ||
118 | SLOT( removeSelected() ) ); | ||
119 | connect( mSelectedList, SIGNAL( returnPressed( QListViewItem *) ), | ||
111 | SLOT( removeSelected() ) ); | 120 | SLOT( removeSelected() ) ); |
112 | 121 | ||
122 | #if 0 | ||
113 | QPushButton *unselectButton = new QPushButton( i18n("Unselect"), selectedGroup ); | 123 | QPushButton *unselectButton = new QPushButton( i18n("Unselect"), selectedGroup ); |
114 | connect ( unselectButton, SIGNAL( clicked() ), SLOT( removeSelected() ) ); | 124 | connect ( unselectButton, SIGNAL( clicked() ), SLOT( removeSelected() ) ); |
115 | 125 | ||
126 | #endif | ||
116 | connect( mAddresseeList, SIGNAL( clicked( QListViewItem * ) ), | 127 | connect( mAddresseeList, SIGNAL( clicked( QListViewItem * ) ), |
117 | SLOT( addSelected( QListViewItem * ) ) ); | 128 | SLOT( addSelected( QListViewItem * ) ) ); |
118 | connect( mAddresseeList, SIGNAL( returnPressed( QListViewItem * ) ), | 129 | connect( mAddresseeList, SIGNAL( returnPressed( QListViewItem * ) ), |
119 | SLOT( selectNextItem( QListViewItem * ) ) ); | 130 | SLOT( selectNextItem( QListViewItem * ) ) ); |
120 | 131 | ||
121 | } | 132 | } |
122 | 133 | ||
123 | mAddressBook = StdAddressBook::self( true ); | 134 | mAddressBook = StdAddressBook::self( true ); |
@@ -159,16 +170,17 @@ void AddresseeDialog::loadAddressBook() | |||
159 | re.setPattern( "*"+ mAddresseeEdit->text() + "*"); | 170 | re.setPattern( "*"+ mAddresseeEdit->text() + "*"); |
160 | 171 | ||
161 | AddressBook::Iterator it; | 172 | AddressBook::Iterator it; |
162 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 173 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
163 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) | 174 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) |
164 | continue; | 175 | continue; |
165 | QString name = (*it).realName(); | 176 | QString name = (*it).realName(); |
166 | name += (*it).preferredEmail(); | 177 | name += (*it).preferredEmail(); |
178 | name += (*it).categories().join(";"); | ||
167 | #if QT_VERSION >= 0x030000 | 179 | #if QT_VERSION >= 0x030000 |
168 | if (re.search(name) != -1) | 180 | if (re.search(name) != -1) |
169 | #else | 181 | #else |
170 | if (re.match(name) != -1) | 182 | if (re.match(name) != -1) |
171 | #endif | 183 | #endif |
172 | AddresseeItem *item = new AddresseeItem( mAddresseeList, (*it) ); | 184 | AddresseeItem *item = new AddresseeItem( mAddresseeList, (*it) ); |
173 | } | 185 | } |
174 | } | 186 | } |
diff --git a/kabc/addresseedialog.h b/kabc/addresseedialog.h index 99c74bd..6fab62d 100644 --- a/kabc/addresseedialog.h +++ b/kabc/addresseedialog.h | |||
@@ -38,17 +38,17 @@ class AddresseeItem : public QListViewItem | |||
38 | { | 38 | { |
39 | public: | 39 | public: |
40 | 40 | ||
41 | /** | 41 | /** |
42 | Type of column | 42 | Type of column |
43 | @li @p Name - Name in Addressee | 43 | @li @p Name - Name in Addressee |
44 | @li @p Email - Email in Addressee | 44 | @li @p Email - Email in Addressee |
45 | */ | 45 | */ |
46 | enum columns { Name = 0, Email = 1 }; | 46 | enum columns { Name = 0, Email = 1,Category = 2 }; |
47 | 47 | ||
48 | /** | 48 | /** |
49 | Constructor. | 49 | Constructor. |
50 | 50 | ||
51 | @param parent The parent listview. | 51 | @param parent The parent listview. |
52 | @param addressee The associated addressee. | 52 | @param addressee The associated addressee. |
53 | */ | 53 | */ |
54 | AddresseeItem( QListView *parent, const Addressee &addressee ); | 54 | AddresseeItem( QListView *parent, const Addressee &addressee ); |