Diffstat (limited to 'kaddressbook/kcmconfigs/addresseewidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/kcmconfigs/addresseewidget.h | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/kaddressbook/kcmconfigs/addresseewidget.h b/kaddressbook/kcmconfigs/addresseewidget.h new file mode 100644 index 0000000..09330c8 --- a/dev/null +++ b/kaddressbook/kcmconfigs/addresseewidget.h | |||
@@ -0,0 +1,87 @@ | |||
1 | /* | ||
2 | This file is part of KAddressBook. | ||
3 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> | ||
4 | |||
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 | ||
7 | the Free Software Foundation; either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
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 | ||
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
18 | |||
19 | As a special exception, permission is given to link this program | ||
20 | with any edition of Qt, and distribute the resulting executable, | ||
21 | without including the source code for Qt in the source distribution. | ||
22 | */ | ||
23 | |||
24 | #ifndef ADDRESSEEWIDGET_H | ||
25 | #define ADDRESSEEWIDGET_H | ||
26 | |||
27 | #include <qwidget.h> | ||
28 | |||
29 | class KComboBox; | ||
30 | class KLineEdit; | ||
31 | |||
32 | class QListBox; | ||
33 | class QListBoxItem; | ||
34 | class QPushButton; | ||
35 | |||
36 | class NamePartWidget : public QWidget | ||
37 | { | ||
38 | Q_OBJECT | ||
39 | |||
40 | public: | ||
41 | NamePartWidget( const QString &title, QWidget *parent, | ||
42 | const char *name = 0 ); | ||
43 | ~NamePartWidget(); | ||
44 | |||
45 | void setNameParts( const QStringList &list ); | ||
46 | QStringList nameParts() const; | ||
47 | |||
48 | signals: | ||
49 | void modified(); | ||
50 | |||
51 | private slots: | ||
52 | void add(); | ||
53 | void remove(); | ||
54 | |||
55 | void selectionChanged( QListBoxItem* ); | ||
56 | void textChanged( const QString& ); | ||
57 | |||
58 | private: | ||
59 | KLineEdit *mEdit; | ||
60 | |||
61 | QListBox *mBox; | ||
62 | QPushButton *mAddButton; | ||
63 | QPushButton *mRemoveButton; | ||
64 | }; | ||
65 | |||
66 | class AddresseeWidget : public QWidget | ||
67 | { | ||
68 | Q_OBJECT | ||
69 | |||
70 | public: | ||
71 | AddresseeWidget( QWidget *parent, const char *name = 0 ); | ||
72 | ~AddresseeWidget(); | ||
73 | |||
74 | void restoreSettings(); | ||
75 | void saveSettings(); | ||
76 | |||
77 | signals: | ||
78 | void modified(); | ||
79 | |||
80 | private: | ||
81 | KComboBox *mFormattedNameCombo; | ||
82 | NamePartWidget *mPrefix; | ||
83 | NamePartWidget *mInclusion; | ||
84 | NamePartWidget *mSuffix; | ||
85 | }; | ||
86 | |||
87 | #endif | ||