-rw-r--r-- | kabc/addresseedialog.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kabc/addresseedialog.h b/kabc/addresseedialog.h index 6fab62d..be7bbb4 100644 --- a/kabc/addresseedialog.h +++ b/kabc/addresseedialog.h | |||
@@ -16,47 +16,47 @@ | |||
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #ifndef KABC_ADDRESSEEDIALOG_H | 21 | #ifndef KABC_ADDRESSEEDIALOG_H |
22 | #define KABC_ADDRESSEEDIALOG_H | 22 | #define KABC_ADDRESSEEDIALOG_H |
23 | 23 | ||
24 | #include <qdict.h> | 24 | #include <q3dict.h> |
25 | 25 | ||
26 | #include <kdialogbase.h> | 26 | #include <kdialogbase.h> |
27 | #include <klineedit.h> | 27 | #include <klineedit.h> |
28 | #include <klistview.h> | 28 | #include <klistview.h> |
29 | 29 | ||
30 | #include "addressbook.h" | 30 | #include "addressbook.h" |
31 | 31 | ||
32 | namespace KABC { | 32 | namespace KABC { |
33 | 33 | ||
34 | /** | 34 | /** |
35 | @short Special ListViewItem, that is used by the AddresseeDialog. | 35 | @short Special ListViewItem, that is used by the AddresseeDialog. |
36 | */ | 36 | */ |
37 | class AddresseeItem : public QListViewItem | 37 | class AddresseeItem : public Q3ListViewItem |
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,Category = 2 }; | 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( Q3ListView *parent, const Addressee &addressee ); |
55 | 55 | ||
56 | /** | 56 | /** |
57 | Returns the addressee. | 57 | Returns the addressee. |
58 | */ | 58 | */ |
59 | Addressee addressee() const { return mAddressee; } | 59 | Addressee addressee() const { return mAddressee; } |
60 | 60 | ||
61 | /** | 61 | /** |
62 | Method used by QListView to sort the items. | 62 | Method used by QListView to sort the items. |
@@ -124,38 +124,38 @@ class AddresseeDialog : public KDialogBase | |||
124 | Open addressee select dialog and return the entries selected by the user. | 124 | Open addressee select dialog and return the entries selected by the user. |
125 | If the user doesn't select an entry or presses cancel, the returned | 125 | If the user doesn't select an entry or presses cancel, the returned |
126 | addressee list is empty. | 126 | addressee list is empty. |
127 | */ | 127 | */ |
128 | static Addressee::List getAddressees( QWidget *parent ); | 128 | static Addressee::List getAddressees( QWidget *parent ); |
129 | 129 | ||
130 | private slots: | 130 | private slots: |
131 | void selectItem( const QString & ); | 131 | void selectItem( const QString & ); |
132 | void selectNextItem( QListViewItem *item ); | 132 | void selectNextItem( Q3ListViewItem *item ); |
133 | void updateEdit( QListViewItem *item ); | 133 | void updateEdit( Q3ListViewItem *item ); |
134 | void addSelected( QListViewItem *item ); | 134 | void addSelected( Q3ListViewItem *item ); |
135 | void removeSelected(); | 135 | void removeSelected(); |
136 | void loadAddressBook(); | 136 | void loadAddressBook(); |
137 | 137 | ||
138 | protected slots: | 138 | protected slots: |
139 | void addressBookChanged(); | 139 | void addressBookChanged(); |
140 | 140 | ||
141 | private: | 141 | private: |
142 | void addCompletionItem( const QString &str, QListViewItem *item ); | 142 | void addCompletionItem( const QString &str, Q3ListViewItem *item ); |
143 | 143 | ||
144 | bool mMultiple; | 144 | bool mMultiple; |
145 | 145 | ||
146 | KListView *mAddresseeList; | 146 | KListView *mAddresseeList; |
147 | QLineEdit *mAddresseeEdit; | 147 | QLineEdit *mAddresseeEdit; |
148 | 148 | ||
149 | KListView *mSelectedList; | 149 | KListView *mSelectedList; |
150 | 150 | ||
151 | AddressBook *mAddressBook; | 151 | AddressBook *mAddressBook; |
152 | 152 | ||
153 | QDict<QListViewItem> mItemDict; | 153 | Q3Dict<Q3ListViewItem> mItemDict; |
154 | QDict<QListViewItem> mSelectedDict; | 154 | Q3Dict<Q3ListViewItem> mSelectedDict; |
155 | 155 | ||
156 | class AddresseeDialogPrivate; | 156 | class AddresseeDialogPrivate; |
157 | AddresseeDialogPrivate *d; | 157 | AddresseeDialogPrivate *d; |
158 | }; | 158 | }; |
159 | 159 | ||
160 | } | 160 | } |
161 | #endif | 161 | #endif |