author | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
commit | b9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (unidiff) | |
tree | 2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /kaddressbook/nameeditdialog.h | |
download | kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2 |
Initial revision
Diffstat (limited to 'kaddressbook/nameeditdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/nameeditdialog.h | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/kaddressbook/nameeditdialog.h b/kaddressbook/nameeditdialog.h new file mode 100644 index 0000000..1d756c1 --- a/dev/null +++ b/kaddressbook/nameeditdialog.h | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | This file is part of KAddressBook. | ||
3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> | ||
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 NAMEEDITDIALOG_H | ||
25 | #define NAMEEDITDIALOG_H | ||
26 | |||
27 | #include <kdialogbase.h> | ||
28 | #include <kabc/addressee.h> | ||
29 | |||
30 | #include "addresseeconfig.h" | ||
31 | |||
32 | class QCheckBox; | ||
33 | |||
34 | class KLineEdit; | ||
35 | class KComboBox; | ||
36 | |||
37 | /** | ||
38 | Editor dialog for name details, like given name, family name etc. | ||
39 | */ | ||
40 | class NameEditDialog : public KDialogBase | ||
41 | { | ||
42 | Q_OBJECT | ||
43 | |||
44 | public: | ||
45 | enum FormattedNameType | ||
46 | { | ||
47 | CustomName, // returned by @ref customFormattedName() | ||
48 | SimpleName, // form: givenName familyName | ||
49 | FullName, // form: prefix givenName additionalName familyName suffix | ||
50 | ReverseName // form: familyName, givenName | ||
51 | }; | ||
52 | |||
53 | NameEditDialog( const KABC::Addressee &addr, int type, | ||
54 | QWidget *parent, const char *name = 0 ); | ||
55 | ~NameEditDialog(); | ||
56 | |||
57 | QString familyName() const; | ||
58 | QString givenName() const; | ||
59 | QString prefix() const; | ||
60 | QString suffix() const; | ||
61 | QString additionalName() const; | ||
62 | QString customFormattedName() const; | ||
63 | int formattedNameType() const; | ||
64 | |||
65 | bool changed() const; | ||
66 | |||
67 | static QString formattedName( const KABC::Addressee &addr, int type ); | ||
68 | |||
69 | protected slots: | ||
70 | void slotHelp(); | ||
71 | |||
72 | private slots: | ||
73 | void parseBoxChanged( bool ); | ||
74 | void typeChanged( int ); | ||
75 | void updateTypeCombo(); | ||
76 | void modified(); | ||
77 | |||
78 | private: | ||
79 | KComboBox *mSuffixCombo; | ||
80 | KComboBox *mPrefixCombo; | ||
81 | KComboBox *mFormattedNameCombo; | ||
82 | KLineEdit *mFamilyNameEdit; | ||
83 | KLineEdit *mGivenNameEdit; | ||
84 | KLineEdit *mAdditionalNameEdit; | ||
85 | KLineEdit *mFormattedNameEdit; | ||
86 | QCheckBox *mParseBox; | ||
87 | bool mChanged; | ||
88 | }; | ||
89 | |||
90 | #endif | ||