-rw-r--r-- | core/pim/addressbook/abconfig.cpp | 22 | ||||
-rw-r--r-- | core/pim/addressbook/abconfig.h | 13 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 654 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.h | 52 | ||||
-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 62 | ||||
-rw-r--r-- | core/pim/addressbook/contacteditor.h | 6 |
6 files changed, 310 insertions, 499 deletions
diff --git a/core/pim/addressbook/abconfig.cpp b/core/pim/addressbook/abconfig.cpp index a3fd222..2583327 100644 --- a/core/pim/addressbook/abconfig.cpp +++ b/core/pim/addressbook/abconfig.cpp | |||
@@ -6,33 +6,33 @@ | |||
6 | 6 | ||
7 | AbConfig::AbConfig( ): | 7 | AbConfig::AbConfig( ): |
8 | m_useQtMail( true ), | 8 | m_useQtMail( true ), |
9 | m_useOpieMail( false ), | 9 | m_useOpieMail( false ), |
10 | m_useRegExp( false ), | 10 | m_useRegExp( false ), |
11 | m_beCaseSensitive( false ), | 11 | m_beCaseSensitive( false ), |
12 | m_fontSize( 1 ), | 12 | m_fontSize( 1 ), |
13 | m_barPos( QMainWindow::Top ), | 13 | m_barPos( QMainWindow::Top ), |
14 | m_fixedBars( true ), | 14 | m_fixedBars( true ), |
15 | m_lpSearchMode( LastName ), | 15 | m_lpSearchMode( LastName ), |
16 | m_changed( false ) | 16 | m_changed( false ) |
17 | { | 17 | { |
18 | } | 18 | } |
19 | 19 | ||
20 | AbConfig::~AbConfig() | 20 | AbConfig::~AbConfig() |
21 | { | 21 | { |
22 | } | 22 | } |
23 | 23 | ||
24 | bool AbConfig::useRegExp() const | 24 | bool AbConfig::useRegExp() const |
25 | { | 25 | { |
26 | return m_useRegExp; | 26 | return m_useRegExp; |
27 | } | 27 | } |
28 | bool AbConfig::useWildCards() const | 28 | bool AbConfig::useWildCards() const |
29 | { | 29 | { |
30 | return !m_useRegExp; | 30 | return !m_useRegExp; |
31 | } | 31 | } |
32 | bool AbConfig::useQtMail() const | 32 | bool AbConfig::useQtMail() const |
33 | { | 33 | { |
34 | return m_useQtMail; | 34 | return m_useQtMail; |
35 | } | 35 | } |
36 | bool AbConfig::useOpieMail() const | 36 | bool AbConfig::useOpieMail() const |
37 | { | 37 | { |
38 | return m_useOpieMail; | 38 | return m_useOpieMail; |
@@ -53,32 +53,37 @@ QValueList<int> AbConfig::orderList() const | |||
53 | 53 | ||
54 | QMainWindow::ToolBarDock AbConfig::getToolBarPos() const | 54 | QMainWindow::ToolBarDock AbConfig::getToolBarPos() const |
55 | { | 55 | { |
56 | return (QMainWindow::ToolBarDock) m_barPos; | 56 | return (QMainWindow::ToolBarDock) m_barPos; |
57 | } | 57 | } |
58 | 58 | ||
59 | bool AbConfig::fixedBars() const | 59 | bool AbConfig::fixedBars() const |
60 | { | 60 | { |
61 | return m_fixedBars; | 61 | return m_fixedBars; |
62 | } | 62 | } |
63 | 63 | ||
64 | AbConfig::LPSearchMode AbConfig::letterPickerSearch() const | 64 | AbConfig::LPSearchMode AbConfig::letterPickerSearch() const |
65 | { | 65 | { |
66 | return ( AbConfig::LPSearchMode ) m_lpSearchMode; | 66 | return ( AbConfig::LPSearchMode ) m_lpSearchMode; |
67 | } | 67 | } |
68 | 68 | ||
69 | const QString &AbConfig::category() const | ||
70 | { | ||
71 | return m_category; | ||
72 | } | ||
73 | |||
69 | void AbConfig::setUseRegExp( bool v ) | 74 | void AbConfig::setUseRegExp( bool v ) |
70 | { | 75 | { |
71 | m_useRegExp = v ; | 76 | m_useRegExp = v ; |
72 | m_changed = true; | 77 | m_changed = true; |
73 | } | 78 | } |
74 | void AbConfig::setUseWildCards( bool v ) | 79 | void AbConfig::setUseWildCards( bool v ) |
75 | { | 80 | { |
76 | m_useRegExp = !v; | 81 | m_useRegExp = !v; |
77 | m_changed = true; | 82 | m_changed = true; |
78 | } | 83 | } |
79 | void AbConfig::setBeCaseSensitive( bool v ) | 84 | void AbConfig::setBeCaseSensitive( bool v ) |
80 | { | 85 | { |
81 | m_beCaseSensitive = v; | 86 | m_beCaseSensitive = v; |
82 | m_changed = true; | 87 | m_changed = true; |
83 | } | 88 | } |
84 | void AbConfig::setUseQtMail( bool v ) | 89 | void AbConfig::setUseQtMail( bool v ) |
@@ -108,37 +113,45 @@ void AbConfig::setToolBarDock( const QMainWindow::ToolBarDock v ) | |||
108 | m_barPos = v; | 113 | m_barPos = v; |
109 | m_changed = true; | 114 | m_changed = true; |
110 | } | 115 | } |
111 | 116 | ||
112 | void AbConfig::setFixedBars( const bool fixed ) | 117 | void AbConfig::setFixedBars( const bool fixed ) |
113 | { | 118 | { |
114 | m_fixedBars = fixed; | 119 | m_fixedBars = fixed; |
115 | m_changed = true; | 120 | m_changed = true; |
116 | } | 121 | } |
117 | 122 | ||
118 | void AbConfig::setLetterPickerSearch( const AbConfig::LPSearchMode mode ) | 123 | void AbConfig::setLetterPickerSearch( const AbConfig::LPSearchMode mode ) |
119 | { | 124 | { |
120 | m_lpSearchMode = mode; | 125 | m_lpSearchMode = mode; |
121 | m_changed = true; | 126 | m_changed = true; |
122 | } | 127 | } |
123 | 128 | ||
129 | void AbConfig::setCategory( const QString &cat ) | ||
130 | { | ||
131 | m_category = cat; | ||
132 | } | ||
133 | |||
124 | void AbConfig::load() | 134 | void AbConfig::load() |
125 | { | 135 | { |
126 | // Read Config settings | 136 | // Read Config settings |
127 | Config cfg("AddressBook"); | 137 | Config cfg("AddressBook"); |
128 | 138 | ||
139 | cfg.setGroup( "View" ); | ||
140 | m_category = cfg.readEntry( "Category", "All" ); | ||
141 | |||
129 | cfg.setGroup("Font"); | 142 | cfg.setGroup("Font"); |
130 | m_fontSize = cfg.readNumEntry( "fontSize", 1 ); | 143 | m_fontSize = cfg.readNumEntry( "fontSize", 1 ); |
131 | 144 | ||
132 | cfg.setGroup("Search"); | 145 | cfg.setGroup("Search"); |
133 | m_useRegExp = cfg.readBoolEntry( "useRegExp", false ); | 146 | m_useRegExp = cfg.readBoolEntry( "useRegExp", false ); |
134 | m_beCaseSensitive = cfg.readBoolEntry( "caseSensitive", false ); | 147 | m_beCaseSensitive = cfg.readBoolEntry( "caseSensitive", false ); |
135 | m_lpSearchMode = cfg.readNumEntry( "lpSearchMode", FileAs ); | 148 | m_lpSearchMode = cfg.readNumEntry( "lpSearchMode", FileAs ); |
136 | 149 | ||
137 | cfg.setGroup("Mail"); | 150 | cfg.setGroup("Mail"); |
138 | m_useQtMail = cfg.readBoolEntry( "useQtMail", true ); | 151 | m_useQtMail = cfg.readBoolEntry( "useQtMail", true ); |
139 | m_useOpieMail=cfg.readBoolEntry( "useOpieMail" ); | 152 | m_useOpieMail=cfg.readBoolEntry( "useOpieMail" ); |
140 | 153 | ||
141 | cfg.setGroup("ContactOrder"); | 154 | cfg.setGroup("ContactOrder"); |
142 | int ID = 0; | 155 | int ID = 0; |
143 | int i = 0; | 156 | int i = 0; |
144 | ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 ); | 157 | ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 ); |
@@ -153,61 +166,64 @@ void AbConfig::load() | |||
153 | m_ordered.append( Qtopia::HomePhone); | 166 | m_ordered.append( Qtopia::HomePhone); |
154 | m_ordered.append( Qtopia::HomeMobile); | 167 | m_ordered.append( Qtopia::HomeMobile); |
155 | m_ordered.append( Qtopia::BusinessPhone); | 168 | m_ordered.append( Qtopia::BusinessPhone); |
156 | } | 169 | } |
157 | 170 | ||
158 | cfg.setGroup("ToolBar"); | 171 | cfg.setGroup("ToolBar"); |
159 | m_barPos = cfg.readNumEntry( "Position", QMainWindow::Top ); | 172 | m_barPos = cfg.readNumEntry( "Position", QMainWindow::Top ); |
160 | m_fixedBars= cfg.readBoolEntry( "fixedBars", true ); | 173 | m_fixedBars= cfg.readBoolEntry( "fixedBars", true ); |
161 | 174 | ||
162 | m_changed = false; | 175 | m_changed = false; |
163 | } | 176 | } |
164 | 177 | ||
165 | void AbConfig::save() | 178 | void AbConfig::save() |
166 | { | 179 | { |
167 | if ( m_changed ){ | 180 | if ( m_changed ){ |
168 | Config cfg("AddressBook"); | 181 | Config cfg("AddressBook"); |
182 | cfg.setGroup( "View" ); | ||
183 | cfg.writeEntry( "Category", m_category ); | ||
184 | |||
169 | cfg.setGroup("Font"); | 185 | cfg.setGroup("Font"); |
170 | cfg.writeEntry("fontSize", m_fontSize); | 186 | cfg.writeEntry("fontSize", m_fontSize); |
171 | 187 | ||
172 | cfg.setGroup("Search"); | 188 | cfg.setGroup("Search"); |
173 | cfg.writeEntry("useRegExp", m_useRegExp); | 189 | cfg.writeEntry("useRegExp", m_useRegExp); |
174 | cfg.writeEntry("caseSensitive", m_beCaseSensitive); | 190 | cfg.writeEntry("caseSensitive", m_beCaseSensitive); |
175 | cfg.writeEntry("lpSearchMode", m_lpSearchMode ); | 191 | cfg.writeEntry("lpSearchMode", m_lpSearchMode ); |
176 | 192 | ||
177 | cfg.setGroup("Mail"); | 193 | cfg.setGroup("Mail"); |
178 | cfg.writeEntry( "useQtMail", m_useQtMail ); | 194 | cfg.writeEntry( "useQtMail", m_useQtMail ); |
179 | cfg.writeEntry( "useOpieMail", m_useOpieMail); | 195 | cfg.writeEntry( "useOpieMail", m_useOpieMail); |
180 | 196 | ||
181 | cfg.setGroup("ContactOrder"); | 197 | cfg.setGroup("ContactOrder"); |
182 | cfg.clearGroup(); | 198 | cfg.clearGroup(); |
183 | for ( uint i = 0; i < m_ordered.count(); i++ ){ | 199 | for ( uint i = 0; i < m_ordered.count(); i++ ){ |
184 | cfg.writeEntry( "ContactID_"+QString::number(i), m_ordered[i] ); | 200 | cfg.writeEntry( "ContactID_"+QString::number(i), m_ordered[i] ); |
185 | } | 201 | } |
186 | 202 | ||
187 | cfg.setGroup("ToolBar"); | 203 | cfg.setGroup("ToolBar"); |
188 | cfg.writeEntry( "Position", m_barPos ); | 204 | cfg.writeEntry( "Position", m_barPos ); |
189 | cfg.writeEntry( "fixedBars", m_fixedBars ); | 205 | cfg.writeEntry( "fixedBars", m_fixedBars ); |
190 | 206 | ||
191 | cfg.setGroup("Version"); | 207 | cfg.setGroup("Version"); |
192 | cfg.writeEntry( "AppName", APPNAME + QString(" V" ) + MAINVERSION + QString(".") + SUBVERSION + QString(".") + PATCHVERSION); | 208 | cfg.writeEntry( "AppName", APPNAME + QString(" V" ) + MAINVERSION + QString(".") + SUBVERSION + QString(".") + PATCHVERSION); |
193 | cfg.writeEntry( "Mainversion", MAINVERSION ); | 209 | cfg.writeEntry( "Mainversion", MAINVERSION ); |
194 | cfg.writeEntry( "SubVersion", SUBVERSION ); | 210 | cfg.writeEntry( "SubVersion", SUBVERSION ); |
195 | cfg.writeEntry( "PatchVersion", PATCHVERSION ); | 211 | cfg.writeEntry( "PatchVersion", PATCHVERSION ); |
196 | 212 | ||
197 | } | 213 | } |
198 | 214 | ||
199 | } | 215 | } |
200 | 216 | ||
201 | void AbConfig::operator= ( const AbConfig& cnf ) | 217 | void AbConfig::operator= ( const AbConfig& cnf ) |
202 | { | 218 | { |
203 | m_useQtMail = cnf.m_useQtMail; | 219 | m_useQtMail = cnf.m_useQtMail; |
204 | m_useOpieMail = cnf.m_useOpieMail; | 220 | m_useOpieMail = cnf.m_useOpieMail; |
205 | m_useRegExp = cnf.m_useRegExp; | 221 | m_useRegExp = cnf.m_useRegExp; |
206 | m_beCaseSensitive = cnf.m_beCaseSensitive; | 222 | m_beCaseSensitive = cnf.m_beCaseSensitive; |
207 | m_fontSize = cnf.m_fontSize; | 223 | m_fontSize = cnf.m_fontSize; |
208 | m_ordered = cnf.m_ordered; | 224 | m_ordered = cnf.m_ordered; |
209 | m_barPos = cnf.m_barPos; | 225 | m_barPos = cnf.m_barPos; |
210 | m_fixedBars = cnf.m_fixedBars; | 226 | m_fixedBars = cnf.m_fixedBars; |
211 | m_lpSearchMode = cnf.m_lpSearchMode; | 227 | m_lpSearchMode = cnf.m_lpSearchMode; |
212 | } | 228 | } |
213 | 229 | ||
diff --git a/core/pim/addressbook/abconfig.h b/core/pim/addressbook/abconfig.h index c312179..68d087c 100644 --- a/core/pim/addressbook/abconfig.h +++ b/core/pim/addressbook/abconfig.h | |||
@@ -1,69 +1,72 @@ | |||
1 | #ifndef _ABCONFIG_H_ | 1 | #ifndef _ABCONFIG_H_ |
2 | #define _ABCONFIG_H_ | 2 | #define _ABCONFIG_H_ |
3 | 3 | ||
4 | #include <qstringlist.h> | 4 | #include <qstringlist.h> |
5 | #include <qmainwindow.h> | 5 | #include <qmainwindow.h> |
6 | 6 | ||
7 | class AbConfig | 7 | class AbConfig |
8 | { | 8 | { |
9 | public: | 9 | public: |
10 | enum LPSearchMode{ | 10 | enum LPSearchMode{ |
11 | LastName = 0, | 11 | LastName = 0, |
12 | FileAs, | 12 | FileAs, |
13 | LASTELEMENT | 13 | LASTELEMENT |
14 | }; | 14 | }; |
15 | 15 | ||
16 | 16 | ||
17 | 17 | ||
18 | AbConfig(); | 18 | AbConfig(); |
19 | ~AbConfig(); | 19 | ~AbConfig(); |
20 | 20 | ||
21 | // Search Settings | 21 | // Search Settings |
22 | bool useRegExp() const; | 22 | bool useRegExp() const; |
23 | bool useWildCards() const; | 23 | bool useWildCards() const; |
24 | bool beCaseSensitive() const; | 24 | bool beCaseSensitive() const; |
25 | bool useQtMail() const; | 25 | bool useQtMail() const; |
26 | bool useOpieMail() const; | 26 | bool useOpieMail() const; |
27 | int fontSize() const; | 27 | int fontSize() const; |
28 | QValueList<int> orderList() const; | 28 | QValueList<int> orderList() const; |
29 | QMainWindow::ToolBarDock getToolBarPos() const; | 29 | QMainWindow::ToolBarDock getToolBarPos() const; |
30 | bool fixedBars() const; | 30 | bool fixedBars() const; |
31 | LPSearchMode letterPickerSearch() const; | 31 | LPSearchMode letterPickerSearch() const; |
32 | 32 | const QString &category() const; | |
33 | |||
33 | void setUseRegExp( bool v ); | 34 | void setUseRegExp( bool v ); |
34 | void setUseWildCards( bool v ); | 35 | void setUseWildCards( bool v ); |
35 | void setBeCaseSensitive( bool v ); | 36 | void setBeCaseSensitive( bool v ); |
36 | void setUseQtMail( bool v ); | 37 | void setUseQtMail( bool v ); |
37 | void setUseOpieMail( bool v ); | 38 | void setUseOpieMail( bool v ); |
38 | void setFontSize( int v ); | 39 | void setFontSize( int v ); |
39 | void setOrderList( const QValueList<int>& list ); | 40 | void setOrderList( const QValueList<int>& list ); |
40 | void setToolBarDock( const QMainWindow::ToolBarDock v ); | 41 | void setToolBarDock( const QMainWindow::ToolBarDock v ); |
41 | void setFixedBars( const bool fixed ); | 42 | void setFixedBars( const bool fixed ); |
42 | void setLetterPickerSearch( const LPSearchMode mode ); | 43 | void setLetterPickerSearch( const LPSearchMode mode ); |
44 | void setCategory( const QString &cat ); | ||
43 | 45 | ||
44 | void operator= ( const AbConfig& cnf ); | 46 | void operator= ( const AbConfig& cnf ); |
45 | 47 | ||
46 | void load(); | 48 | void load(); |
47 | void save(); | 49 | void save(); |
48 | 50 | ||
49 | protected: | 51 | protected: |
50 | /* virtual void itemUp(); */ | 52 | /* virtual void itemUp(); */ |
51 | /* virtual void itemDown(); */ | 53 | /* virtual void itemDown(); */ |
52 | 54 | ||
53 | QStringList contFields; | 55 | QStringList contFields; |
54 | 56 | ||
55 | bool m_useQtMail; | 57 | bool m_useQtMail; |
56 | bool m_useOpieMail; | 58 | bool m_useOpieMail; |
57 | bool m_useRegExp; | 59 | bool m_useRegExp; |
58 | bool m_beCaseSensitive; | 60 | bool m_beCaseSensitive; |
59 | int m_fontSize; | 61 | int m_fontSize; |
60 | QValueList<int> m_ordered; | 62 | QValueList<int> m_ordered; |
61 | int m_barPos; | 63 | int m_barPos; |
62 | bool m_fixedBars; | 64 | bool m_fixedBars; |
63 | int m_lpSearchMode; | 65 | int m_lpSearchMode; |
66 | QString m_category; | ||
64 | 67 | ||
65 | bool m_changed; | 68 | bool m_changed; |
66 | }; | 69 | }; |
67 | 70 | ||
68 | 71 | ||
69 | #endif | 72 | #endif |
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 3f0ac74..a4c2c6e 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -41,259 +41,126 @@ | |||
41 | #include <qmessagebox.h> | 41 | #include <qmessagebox.h> |
42 | #include <qtoolbutton.h> | 42 | #include <qtoolbutton.h> |
43 | 43 | ||
44 | #include <stdlib.h> | 44 | #include <stdlib.h> |
45 | #include <sys/stat.h> | 45 | #include <sys/stat.h> |
46 | #include <sys/types.h> | 46 | #include <sys/types.h> |
47 | #include <fcntl.h> | 47 | #include <fcntl.h> |
48 | #include <unistd.h> | 48 | #include <unistd.h> |
49 | 49 | ||
50 | 50 | ||
51 | #include "picker.h" | 51 | #include "picker.h" |
52 | #include "configdlg.h" | 52 | #include "configdlg.h" |
53 | 53 | ||
54 | extern QString addressbookPersonalVCardName(); | 54 | extern QString addressbookPersonalVCardName(); |
55 | 55 | ||
56 | AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | 56 | AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, |
57 | WFlags f ) | 57 | WFlags /*f*/ ) |
58 | : QMainWindow( parent, name, f ), | 58 | : Opie::OPimMainWindow( "Addressbook", "Contacts", tr( "Contact" ), "AddressBook", |
59 | catMenu (0l), | 59 | parent, name, WType_TopLevel | WStyle_ContextHelp ), |
60 | abEditor(0l), | 60 | abEditor(0l), |
61 | syncing(FALSE), | 61 | syncing(false) |
62 | m_tableViewButton(0l), | ||
63 | m_cardViewButton(0l) | ||
64 | { | 62 | { |
63 | setCaption( tr( "Contacts" ) ); | ||
64 | |||
65 | isLoading = true; | 65 | isLoading = true; |
66 | 66 | ||
67 | m_config.load(); | 67 | m_config.load(); |
68 | 68 | ||
69 | setCaption( tr("Contacts") ); | 69 | // Create Views |
70 | setIcon( Resource::loadPixmap( "addressbook/AddressBook" ) ); | 70 | m_listContainer = new QWidget( this ); |
71 | 71 | QVBoxLayout *vb = new QVBoxLayout( m_listContainer ); | |
72 | // Settings for Main Menu | ||
73 | // setToolBarsMovable( false ); | ||
74 | setToolBarsMovable( !m_config.fixedBars() ); | ||
75 | setRightJustification( true ); | ||
76 | |||
77 | QToolBar *bar = new QToolBar( this ); | ||
78 | bar->setHorizontalStretchable( TRUE ); | ||
79 | |||
80 | QMenuBar *mbList = new QMenuBar( bar ); | ||
81 | mbList->setMargin( 0 ); | ||
82 | |||
83 | QPopupMenu *edit = new QPopupMenu( mbList ); | ||
84 | mbList->insertItem( tr( "Contact" ), edit ); | ||
85 | |||
86 | // Category Menu | ||
87 | catMenu = new QPopupMenu( this ); | ||
88 | catMenu->setCheckable( TRUE ); | ||
89 | connect( catMenu, SIGNAL(activated(int)), this, SLOT(slotSetCategory(int)) ); | ||
90 | mbList->insertItem( tr("View"), catMenu ); | ||
91 | |||
92 | // Create Toolbar | ||
93 | listTools = new QToolBar( this, "list operations" ); | ||
94 | listTools->setHorizontalStretchable( true ); | ||
95 | addToolBar( listTools ); | ||
96 | moveToolBar( listTools, m_config.getToolBarPos() ); | ||
97 | |||
98 | // View Icons | ||
99 | m_tableViewButton = new QAction( tr( "List" ), Resource::loadPixmap( "addressbook/listview" ), | ||
100 | QString::null, 0, this, 0 ); | ||
101 | connect( m_tableViewButton, SIGNAL( activated() ), this, SLOT( slotListView() ) ); | ||
102 | m_tableViewButton->setToggleAction( true ); | ||
103 | m_tableViewButton->addTo( listTools ); | ||
104 | m_cardViewButton = new QAction( tr( "Card" ), Resource::loadPixmap( "addressbook/cardview" ), QString::null, 0, this, 0 ); | ||
105 | connect( m_cardViewButton, SIGNAL( activated() ), this, SLOT( slotCardView() ) ); | ||
106 | m_cardViewButton->setToggleAction( true ); | ||
107 | m_cardViewButton->addTo( listTools ); | ||
108 | |||
109 | listTools->addSeparator(); | ||
110 | |||
111 | // Other Buttons | ||
112 | QAction *a = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), QString::null, | ||
113 | 0, this, 0 ); | ||
114 | actionNew = a; | ||
115 | connect( a, SIGNAL( activated() ), this, SLOT( slotListNew() ) ); | ||
116 | a->addTo( edit ); | ||
117 | a->addTo( listTools ); | ||
118 | |||
119 | a = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), QString::null, | ||
120 | 0, this, 0 ); | ||
121 | actionEdit = a; | ||
122 | connect( a, SIGNAL( activated() ), this, SLOT( slotViewEdit() ) ); | ||
123 | a->addTo( edit ); | ||
124 | a->addTo( listTools ); | ||
125 | |||
126 | a = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), QString::null, | ||
127 | 0, this, 0 ); | ||
128 | actionTrash = a; | ||
129 | connect( a, SIGNAL( activated() ), this, SLOT( slotListDelete() ) ); | ||
130 | a->addTo( edit ); | ||
131 | a->addTo( listTools ); | ||
132 | |||
133 | |||
134 | // make it possible to go directly to businesscard via qcop call | ||
135 | //#if defined(Q_WS_QWS) // Why this ? (se) | ||
136 | #if !defined(QT_NO_COP) | ||
137 | QCopChannel *addressChannel = new QCopChannel("QPE/Addressbook" , this ); | ||
138 | connect (addressChannel, SIGNAL( received(const QCString&,const QByteArray&)), | ||
139 | this, SLOT ( appMessage(const QCString&,const QByteArray&) ) ); | ||
140 | #endif | ||
141 | // #endif | ||
142 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "mag" ), | ||
143 | QString::null, 0, this, 0 ); | ||
144 | actionFind = a; | ||
145 | connect( a, SIGNAL(activated()), this, SLOT( slotFindOpen()) ); | ||
146 | a->addTo( edit ); | ||
147 | a->addTo( listTools ); | ||
148 | |||
149 | // Much better search widget, taken from QTReader.. (se) | ||
150 | searchBar = new OFloatBar( "Search", this, QMainWindow::Top, TRUE ); | ||
151 | searchBar->setHorizontalStretchable( TRUE ); | ||
152 | searchBar->hide(); | ||
153 | searchEdit = new QLineEdit( searchBar, "searchEdit" ); | ||
154 | |||
155 | // QFont f("unifont", 16 /*, QFont::Bold*/); | ||
156 | // searchEdit->setFont( f ); | ||
157 | |||
158 | searchBar->setStretchableWidget( searchEdit ); | ||
159 | connect( searchEdit, SIGNAL( returnPressed() ), | ||
160 | this, SLOT( slotFind() ) ); | ||
161 | |||
162 | a = new QAction( tr( "Start Search" ), Resource::loadPixmap( "enter" ), QString::null, 0, this, 0 ); | ||
163 | connect( a, SIGNAL( activated() ), this, SLOT( slotFind() ) ); | ||
164 | a->addTo( searchBar ); | ||
165 | |||
166 | a = new QAction( tr( "Close Find" ), Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); | ||
167 | connect( a, SIGNAL( activated() ), this, SLOT( slotFindClose() ) ); | ||
168 | a->addTo( searchBar ); | ||
169 | |||
170 | a = new QAction( tr( "Write Mail To" ), Resource::loadPixmap( "addressbook/sendmail" ), | ||
171 | QString::null, 0, this, 0 ); | ||
172 | //a->setEnabled( FALSE ); we got support for it now :) zecke | ||
173 | actionMail = a; | ||
174 | connect( a, SIGNAL( activated() ), this, SLOT( writeMail() ) ); | ||
175 | a->addTo( edit ); | ||
176 | a->addTo( listTools ); | ||
177 | |||
178 | if ( Ir::supported() ) { | ||
179 | a = new QAction( tr ("Beam Entry" ), Resource::loadPixmap( "beam" ), QString::null, | ||
180 | 0, this, 0 ); | ||
181 | actionBeam = a; | ||
182 | connect( a, SIGNAL( activated() ), this, SLOT( slotBeam() ) ); | ||
183 | a->addTo( edit ); | ||
184 | a->addTo( listTools ); | ||
185 | } | ||
186 | 72 | ||
187 | edit->insertSeparator(); | 73 | m_abView = new AbView( m_listContainer, m_config.orderList() ); |
74 | vb->addWidget( m_abView ); | ||
75 | connect( m_abView, SIGNAL(signalViewSwitched(int)), | ||
76 | this, SLOT(slotViewSwitched(int)) ); | ||
188 | 77 | ||
189 | a = new QAction( tr("Import vCard"), Resource::loadPixmap( "addressbook/fileimport"), QString::null, | 78 | QObject::connect( m_abView, SIGNAL(signalNotFound()), this, SLOT(slotNotFound()) ); |
190 | 0, this, 0); | ||
191 | actionPersonal = a; | ||
192 | connect( a, SIGNAL( activated() ), this, SLOT( importvCard() ) ); | ||
193 | a->addTo( edit ); | ||
194 | 79 | ||
195 | a = new QAction( tr("Export vCard"), Resource::loadPixmap( "addressbook/fileexport"), QString::null, | 80 | // Letter Picker |
196 | 0, this, 0); | 81 | pLabel = new LetterPicker( m_listContainer ); |
197 | actionPersonal = a; | 82 | connect(pLabel, SIGNAL(letterClicked(char)), this, SLOT(slotSetLetter(char))); |
198 | connect( a, SIGNAL( activated() ), this, SLOT( exportvCard() ) ); | 83 | connect(m_abView, SIGNAL(signalClearLetterPicker()), pLabel, SLOT(clear()) ); |
199 | a->addTo( edit ); | ||
200 | 84 | ||
201 | edit->insertSeparator(); | 85 | vb->addWidget( pLabel ); |
202 | 86 | ||
203 | a = new QAction( tr("My Personal Details"), Resource::loadPixmap( "addressbook/identity" ), | 87 | // Quick search bar |
204 | QString::null, 0, this, 0 , TRUE ); | 88 | m_searchBar = new OFloatBar( "Search", this, QMainWindow::Top, true ); |
205 | actionPersonal = a; | 89 | m_searchBar->setHorizontalStretchable( true ); |
206 | connect( a, SIGNAL( activated() ), this, SLOT( slotPersonalView() ) ); | 90 | m_searchBar->hide(); |
207 | a->addTo( edit ); | 91 | m_searchEdit = new QLineEdit( m_searchBar, "m_searchEdit" ); |
208 | 92 | ||
93 | m_searchBar->setStretchableWidget( m_searchEdit ); | ||
94 | connect( m_searchEdit, SIGNAL(returnPressed()), this, SLOT(slotFind()) ); | ||
209 | 95 | ||
210 | #ifdef __DEBUG_RELEASE | 96 | QAction *a = new QAction( tr( "Start Search" ), Resource::loadPixmap( "find" ), QString::null, 0, this, 0 ); |
211 | // Remove this function for public Release ! This is only | 97 | connect( a, SIGNAL(activated()), this, SLOT(slotFind()) ); |
212 | // for debug purposes .. | 98 | a->addTo( m_searchBar ); |
213 | a = new QAction( tr( "Save all Data"), QString::null, 0, 0 ); | ||
214 | connect( a, SIGNAL( activated() ), this , SLOT( slotSave() ) ); | ||
215 | a->addTo( edit ); | ||
216 | #endif | ||
217 | a = new QAction( tr( "Config" ), Resource::loadPixmap( "SettingsIcon" ), QString::null, | ||
218 | 0, this, 0 ); | ||
219 | connect( a, SIGNAL( activated() ), this, SLOT( slotConfig() ) ); | ||
220 | a->addTo( edit ); | ||
221 | 99 | ||
222 | // Create Views | 100 | // Insert Contact menu items |
223 | listContainer = new QWidget( this ); | 101 | QActionGroup *items = new QActionGroup( this, QString::null, false ); |
224 | QVBoxLayout *vb = new QVBoxLayout( listContainer ); | ||
225 | 102 | ||
226 | m_abView = new AbView( listContainer, m_config.orderList() ); | 103 | m_actionMail = new QAction( tr( "Write Mail To" ), Resource::loadPixmap( "addressbook/sendmail" ), |
227 | vb->addWidget( m_abView ); | 104 | QString::null, 0, items, 0 ); |
228 | // abList->setHScrollBarMode( QScrollView::AlwaysOff ); | 105 | connect( m_actionMail, SIGNAL(activated()), this, SLOT(writeMail()) ); |
229 | connect( m_abView, SIGNAL( signalViewSwitched(int) ), | ||
230 | this, SLOT( slotViewSwitched(int) ) ); | ||
231 | 106 | ||
107 | a = new QAction( tr("Import vCard"), Resource::loadPixmap( "addressbook/fileimport"), | ||
108 | QString::null, 0, items, 0 ); | ||
109 | connect( a, SIGNAL(activated()), this, SLOT(importvCard()) ); | ||
232 | 110 | ||
233 | QObject::connect( m_abView, SIGNAL(signalNotFound()), this, SLOT(slotNotFound()) ); | 111 | a = new QAction( tr("Export vCard"), Resource::loadPixmap( "addressbook/fileexport"), |
112 | QString::null, 0, items, 0 ); | ||
113 | connect( a, SIGNAL(activated()), this, SLOT(exportvCard()) ); | ||
234 | 114 | ||
235 | // m_abView->load(); // Already done by c'tor . | 115 | m_actionPersonal = new QAction( tr("My Personal Details"), Resource::loadPixmap( "addressbook/identity" ), |
116 | QString::null, 0, items, 0 , true ); | ||
117 | connect( m_actionPersonal, SIGNAL(activated()), this, SLOT(slotPersonalView()) ); | ||
236 | 118 | ||
237 | // Letter Picker | 119 | insertItemMenuItems( items ); |
238 | pLabel = new LetterPicker( listContainer ); | ||
239 | connect(pLabel, SIGNAL(letterClicked(char)), this, SLOT(slotSetLetter(char))); | ||
240 | connect(m_abView, SIGNAL( signalClearLetterPicker() ), pLabel, SLOT( clear() ) ); | ||
241 | 120 | ||
242 | vb->addWidget( pLabel ); | 121 | // Insert View menu items |
122 | items = new QActionGroup( this, QString::null, false ); | ||
123 | |||
124 | a = new QAction( tr("Show quick search bar"),QString::null, 0, items, 0, true ); | ||
125 | connect( a, SIGNAL(toggled(bool)), this, SLOT(slotShowFind(bool)) ); | ||
243 | 126 | ||
244 | // All Categories into view-menu.. | 127 | insertViewMenuItems( items ); |
245 | populateCategories(); | ||
246 | 128 | ||
247 | // Fontsize | 129 | // Fontsize |
248 | defaultFont = new QFont( m_abView->font() ); | 130 | defaultFont = new QFont( m_abView->font() ); |
249 | slotSetFont(m_config.fontSize()); | 131 | slotSetFont(m_config.fontSize()); |
250 | m_curFontSize = m_config.fontSize(); | 132 | m_curFontSize = m_config.fontSize(); |
251 | 133 | ||
252 | setCentralWidget(listContainer); | 134 | setCentralWidget(m_listContainer); |
253 | 135 | ||
254 | //odebug << "adressbook contrsuction: t=" << t.elapsed() << oendl; | 136 | //odebug << "adressbook contrsuction: t=" << t.elapsed() << oendl; |
255 | connect( qApp, SIGNAL( flush() ), this, SLOT( flush() ) ); | 137 | connect( qApp, SIGNAL(flush()), this, SLOT(flush()) ); |
256 | connect( qApp, SIGNAL( reload() ), this, SLOT( reload() ) ); | 138 | connect( qApp, SIGNAL(reload()), this, SLOT(reload()) ); |
257 | connect( qApp, SIGNAL( appMessage(const QCString&,const QByteArray&) ), | 139 | connect( qApp, SIGNAL(appMessage(const QCString&,const QByteArray&)), |
258 | this, SLOT( appMessage(const QCString&,const QByteArray&) ) ); | 140 | this, SLOT(appMessage(const QCString&,const QByteArray&)) ); |
259 | |||
260 | 141 | ||
261 | isLoading = false; | 142 | isLoading = false; |
262 | } | ||
263 | 143 | ||
264 | 144 | // Handle category selection | |
265 | void AddressbookWindow::slotConfig() | 145 | setViewCategory( m_config.category() ); |
266 | { | 146 | m_abView->setShowByCategory( m_config.category() ); |
267 | ConfigDlg* dlg = new ConfigDlg( this, "Config" ); | 147 | connect( this, SIGNAL(categorySelected(const QString&)), |
268 | dlg -> setConfig( m_config ); | 148 | this, SLOT(slotSetCategory(const QString&)) ); |
269 | if ( QPEApplication::execDialog( dlg ) ) { | ||
270 | odebug << "Config Dialog accepted!" << oendl; | ||
271 | m_config = dlg -> getConfig(); | ||
272 | if ( m_curFontSize != m_config.fontSize() ){ | ||
273 | odebug << "Font was changed!" << oendl; | ||
274 | m_curFontSize = m_config.fontSize(); | ||
275 | emit slotSetFont( m_curFontSize ); | ||
276 | } | ||
277 | m_abView -> setListOrder( m_config.orderList() ); | ||
278 | } | ||
279 | |||
280 | delete dlg; | ||
281 | } | 149 | } |
282 | 150 | ||
283 | |||
284 | void AddressbookWindow::slotSetFont( int size ) | 151 | void AddressbookWindow::slotSetFont( int size ) |
285 | { | 152 | { |
286 | odebug << "void AddressbookWindow::slotSetFont( " << size << " )" << oendl; | 153 | odebug << "void AddressbookWindow::slotSetFont( " << size << " )" << oendl; |
287 | 154 | ||
288 | if (size > 2 || size < 0) | 155 | if (size > 2 || size < 0) |
289 | size = 1; | 156 | size = 1; |
290 | 157 | ||
291 | m_config.setFontSize( size ); | 158 | m_config.setFontSize( size ); |
292 | 159 | ||
293 | QFont *currentFont; | 160 | QFont *currentFont; |
294 | 161 | ||
295 | switch (size) { | 162 | switch (size) { |
296 | case 0: | 163 | case 0: |
297 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); | 164 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); |
298 | currentFont = new QFont (m_abView->font()); | 165 | currentFont = new QFont (m_abView->font()); |
299 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX | 166 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX |
@@ -341,34 +208,34 @@ void AddressbookWindow::exportvCard() | |||
341 | delete access; | 208 | delete access; |
342 | }else | 209 | }else |
343 | QMessageBox::critical( 0, "Export VCard", | 210 | QMessageBox::critical( 0, "Export VCard", |
344 | QString( tr( "You have to select a contact !") ) ); | 211 | QString( tr( "You have to select a contact !") ) ); |
345 | 212 | ||
346 | }else | 213 | }else |
347 | QMessageBox::critical( 0, "Export VCard", | 214 | QMessageBox::critical( 0, "Export VCard", |
348 | QString( tr( "You have to set a filename !") ) ); | 215 | QString( tr( "You have to set a filename !") ) ); |
349 | } | 216 | } |
350 | 217 | ||
351 | void AddressbookWindow::setDocument( const QString &filename ) | 218 | void AddressbookWindow::setDocument( const QString &filename ) |
352 | { | 219 | { |
353 | odebug << "void AddressbookWindow::setDocument( " << filename << " )" << oendl; | 220 | odebug << "void AddressbookWindow::setDocument( " << filename << " )" << oendl; |
354 | 221 | ||
355 | // Switch to default backend. This should avoid to import into | 222 | // Switch to default backend. This should avoid to import into |
356 | // the personal database accidently. | 223 | // the personal database accidently. |
357 | if ( actionPersonal->isOn() ){ | 224 | if ( m_actionPersonal->isOn() ){ |
358 | actionPersonal->setOn( false ); | 225 | m_actionPersonal->setOn( false ); |
359 | slotPersonalView(); | 226 | slotPersonalView(); |
360 | } | 227 | } |
361 | 228 | ||
362 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ | 229 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ |
363 | 230 | ||
364 | 231 | ||
365 | 232 | ||
366 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), | 233 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), |
367 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), | 234 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), |
368 | tr( "&Yes" ), tr( "&No" ), QString::null, | 235 | tr( "&Yes" ), tr( "&No" ), QString::null, |
369 | 0, // Enter == button 0 | 236 | 0, // Enter == button 0 |
370 | 2 ) ) { // Escape == button 2 | 237 | 2 ) ) { // Escape == button 2 |
371 | case 0: | 238 | case 0: |
372 | odebug << "YES clicked" << oendl; | 239 | odebug << "YES clicked" << oendl; |
373 | break; | 240 | break; |
374 | case 1: | 241 | case 1: |
@@ -425,124 +292,204 @@ void AddressbookWindow::resizeEvent( QResizeEvent *e ) | |||
425 | { | 292 | { |
426 | QMainWindow::resizeEvent( e ); | 293 | QMainWindow::resizeEvent( e ); |
427 | 294 | ||
428 | 295 | ||
429 | } | 296 | } |
430 | 297 | ||
431 | AddressbookWindow::~AddressbookWindow() | 298 | AddressbookWindow::~AddressbookWindow() |
432 | { | 299 | { |
433 | ToolBarDock dock; | 300 | ToolBarDock dock; |
434 | int dummy; | 301 | int dummy; |
435 | bool bDummy; | 302 | bool bDummy; |
436 | getLocation ( listTools, dock, dummy, bDummy, dummy ); | 303 | getLocation ( listTools, dock, dummy, bDummy, dummy ); |
437 | m_config.setToolBarDock( dock ); | 304 | m_config.setToolBarDock( dock ); |
438 | m_config.save(); | 305 | m_config.save(); |
439 | } | 306 | } |
440 | 307 | ||
441 | void AddressbookWindow::slotUpdateToolbar() | 308 | int AddressbookWindow::create() |
309 | { | ||
310 | return 0; | ||
311 | } | ||
312 | |||
313 | bool AddressbookWindow::remove( int /*uid*/ ) | ||
314 | { | ||
315 | return false; | ||
316 | } | ||
317 | |||
318 | void AddressbookWindow::beam( int /*uid*/ ) | ||
319 | { | ||
320 | } | ||
321 | |||
322 | void AddressbookWindow::show( int /*uid*/ ) | ||
323 | { | ||
324 | } | ||
325 | |||
326 | void AddressbookWindow::edit( int /*uid*/ ) | ||
442 | { | 327 | { |
443 | Opie::OPimContact ce = m_abView->currentEntry(); | ||
444 | actionMail->setEnabled( !ce.defaultEmail().isEmpty() ); | ||
445 | } | 328 | } |
446 | 329 | ||
447 | void AddressbookWindow::slotListNew() | 330 | void AddressbookWindow::add( const Opie::OPimRecord& ) |
331 | { | ||
332 | } | ||
333 | |||
334 | void AddressbookWindow::slotItemNew() | ||
448 | { | 335 | { |
449 | Opie::OPimContact cnt; | 336 | Opie::OPimContact cnt; |
450 | if( !syncing ) { | 337 | if( !syncing ) { |
451 | editEntry( NewEntry ); | 338 | editEntry( NewEntry ); |
452 | } else { | 339 | } else { |
453 | QMessageBox::warning(this, tr("Contacts"), | 340 | QMessageBox::warning(this, tr("Contacts"), |
454 | tr("Can not edit data, currently syncing")); | 341 | tr("Can not edit data, currently syncing")); |
455 | } | 342 | } |
456 | } | 343 | } |
457 | 344 | ||
458 | // void AddressbookWindow::slotListView() | 345 | void AddressbookWindow::slotItemEdit() |
459 | // { | 346 | { |
460 | // m_abView -> init( abList->currentEntry() ); | 347 | if(!syncing) { |
461 | // // :SX mView->sync(); | 348 | if (m_actionPersonal->isOn()) { |
462 | // //:SXshowView(); | 349 | editPersonal(); |
463 | // } | 350 | } else { |
351 | editEntry( EditEntry ); | ||
352 | } | ||
353 | } else { | ||
354 | QMessageBox::warning( this, tr("Contacts"), | ||
355 | tr("Can not edit data, currently syncing") ); | ||
356 | } | ||
357 | } | ||
358 | |||
359 | void AddressbookWindow::slotItemDuplicate() | ||
360 | { | ||
361 | } | ||
464 | 362 | ||
465 | void AddressbookWindow::slotListDelete() | 363 | void AddressbookWindow::slotItemDelete() |
466 | { | 364 | { |
467 | if(!syncing) { | 365 | if(!syncing) { |
468 | Opie::OPimContact tmpEntry = m_abView ->currentEntry(); | 366 | Opie::OPimContact tmpEntry = m_abView ->currentEntry(); |
469 | 367 | ||
470 | // get a name, do the best we can... | 368 | // get a name, do the best we can... |
471 | QString strName = tmpEntry.fullName(); | 369 | QString strName = tmpEntry.fullName(); |
472 | if ( strName.isEmpty() ) { | 370 | if ( strName.isEmpty() ) { |
473 | strName = tmpEntry.company(); | 371 | strName = tmpEntry.company(); |
474 | if ( strName.isEmpty() ) | 372 | if ( strName.isEmpty() ) |
475 | strName = "No Name"; | 373 | strName = "No Name"; |
476 | } | 374 | } |
477 | 375 | ||
478 | 376 | ||
479 | if ( QPEMessageBox::confirmDelete( this, tr( "Contacts" ), | 377 | if ( QPEMessageBox::confirmDelete( this, tr( "Contacts" ), |
480 | strName ) ) { | 378 | strName ) ) { |
481 | m_abView->removeEntry( tmpEntry.uid() ); | 379 | m_abView->removeEntry( tmpEntry.uid() ); |
482 | } | 380 | } |
483 | } else { | 381 | } else { |
484 | QMessageBox::warning( this, tr("Contacts"), | 382 | QMessageBox::warning( this, tr("Contacts"), |
485 | tr("Can not edit data, currently syncing") ); | 383 | tr("Can not edit data, currently syncing") ); |
486 | } | 384 | } |
487 | } | 385 | } |
488 | 386 | ||
489 | void AddressbookWindow::slotFindOpen() | 387 | static const char * beamfile = "/tmp/obex/contact.vcf"; |
388 | |||
389 | void AddressbookWindow::slotItemBeam() | ||
490 | { | 390 | { |
491 | searchBar->show(); | 391 | QString beamFilename; |
492 | m_abView -> inSearch(); | 392 | Opie::OPimContact c; |
493 | searchEdit->setFocus(); | 393 | if ( m_actionPersonal->isOn() ) { |
394 | beamFilename = addressbookPersonalVCardName(); | ||
395 | if ( !QFile::exists( beamFilename ) ) | ||
396 | return; // can't beam a non-existent file | ||
397 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | ||
398 | beamFilename ); | ||
399 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | ||
400 | Opie::OPimContactAccess::List allList = access->allRecords(); | ||
401 | Opie::OPimContactAccess::List::Iterator it = allList.begin(); // Just take first | ||
402 | c = *it; | ||
403 | |||
404 | delete access; | ||
405 | } else { | ||
406 | unlink( beamfile ); // delete if exists | ||
407 | mkdir("/tmp/obex/", 0755); | ||
408 | c = m_abView -> currentEntry(); | ||
409 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | ||
410 | beamfile ); | ||
411 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | ||
412 | access->add( c ); | ||
413 | access->save(); | ||
414 | delete access; | ||
415 | |||
416 | beamFilename = beamfile; | ||
417 | } | ||
418 | |||
419 | odebug << "Beaming: " << beamFilename << oendl; | ||
420 | |||
421 | Ir *ir = new Ir( this ); | ||
422 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | ||
423 | QString description = c.fullName(); | ||
424 | ir->send( beamFilename, description, "text/x-vCard" ); | ||
494 | } | 425 | } |
495 | void AddressbookWindow::slotFindClose() | 426 | |
427 | void AddressbookWindow::slotItemFind() | ||
496 | { | 428 | { |
497 | searchBar->hide(); | ||
498 | m_abView -> offSearch(); | ||
499 | // m_abView->setFocus(); | ||
500 | } | 429 | } |
501 | 430 | ||
431 | void AddressbookWindow::slotConfigure() | ||
432 | { | ||
433 | ConfigDlg* dlg = new ConfigDlg( this, "Config" ); | ||
434 | dlg -> setConfig( m_config ); | ||
435 | if ( QPEApplication::execDialog( dlg ) ) { | ||
436 | odebug << "Config Dialog accepted!" << oendl; | ||
437 | m_config = dlg -> getConfig(); | ||
438 | if ( m_curFontSize != m_config.fontSize() ){ | ||
439 | odebug << "Font was changed!" << oendl; | ||
440 | m_curFontSize = m_config.fontSize(); | ||
441 | emit slotSetFont( m_curFontSize ); | ||
442 | } | ||
443 | m_abView -> setListOrder( m_config.orderList() ); | ||
444 | } | ||
445 | |||
446 | delete dlg; | ||
447 | } | ||
448 | |||
449 | void AddressbookWindow::slotShowFind( bool show ) | ||
450 | { | ||
451 | if ( show ) | ||
452 | { | ||
453 | // Display search bar | ||
454 | m_searchBar->show(); | ||
455 | m_abView -> inSearch(); | ||
456 | m_searchEdit->setFocus(); | ||
457 | } | ||
458 | else | ||
459 | { | ||
460 | // Hide search bar | ||
461 | m_searchBar->hide(); | ||
462 | m_abView -> offSearch(); | ||
463 | } | ||
464 | } | ||
502 | 465 | ||
503 | void AddressbookWindow::slotFind() | 466 | void AddressbookWindow::slotFind() |
504 | { | 467 | { |
505 | m_abView->slotDoFind( searchEdit->text(), m_config.beCaseSensitive(), m_config.useRegExp(), false); | 468 | m_abView->slotDoFind( m_searchEdit->text(), m_config.beCaseSensitive(), m_config.useRegExp(), false); |
506 | 469 | ||
507 | searchEdit->clearFocus(); | 470 | m_searchEdit->clearFocus(); |
508 | // m_abView->setFocus(); | 471 | // m_abView->setFocus(); |
509 | 472 | ||
510 | } | 473 | } |
511 | 474 | ||
512 | void AddressbookWindow::slotViewBack() | 475 | void AddressbookWindow::slotViewBack() |
513 | { | 476 | { |
514 | // :SX showList(); | 477 | // :SX showList(); |
515 | } | 478 | } |
516 | 479 | ||
517 | void AddressbookWindow::slotViewEdit() | ||
518 | { | ||
519 | if(!syncing) { | ||
520 | if (actionPersonal->isOn()) { | ||
521 | editPersonal(); | ||
522 | } else { | ||
523 | editEntry( EditEntry ); | ||
524 | } | ||
525 | } else { | ||
526 | QMessageBox::warning( this, tr("Contacts"), | ||
527 | tr("Can not edit data, currently syncing") ); | ||
528 | } | ||
529 | } | ||
530 | |||
531 | |||
532 | |||
533 | void AddressbookWindow::writeMail() | 480 | void AddressbookWindow::writeMail() |
534 | { | 481 | { |
535 | Opie::OPimContact c = m_abView -> currentEntry(); | 482 | Opie::OPimContact c = m_abView -> currentEntry(); |
536 | QString name = c.fileAs(); | 483 | QString name = c.fileAs(); |
537 | QString email = c.defaultEmail(); | 484 | QString email = c.defaultEmail(); |
538 | 485 | ||
539 | // I prefer the OPIE-Environment variable before the | 486 | // I prefer the OPIE-Environment variable before the |
540 | // QPE-one.. | 487 | // QPE-one.. |
541 | QString basepath = QString::fromLatin1( getenv("OPIEDIR") ); | 488 | QString basepath = QString::fromLatin1( getenv("OPIEDIR") ); |
542 | if ( basepath.isEmpty() ) | 489 | if ( basepath.isEmpty() ) |
543 | basepath = QString::fromLatin1( getenv("QPEDIR") ); | 490 | basepath = QString::fromLatin1( getenv("QPEDIR") ); |
544 | 491 | ||
545 | // Try to access the preferred. If not possible, try to | 492 | // Try to access the preferred. If not possible, try to |
546 | // switch to the other one.. | 493 | // switch to the other one.. |
547 | if ( m_config.useQtMail() ){ | 494 | if ( m_config.useQtMail() ){ |
548 | odebug << "Accessing: " << (basepath + "/bin/qtmail") << oendl; | 495 | odebug << "Accessing: " << (basepath + "/bin/qtmail") << oendl; |
@@ -554,72 +501,32 @@ void AddressbookWindow::writeMail() | |||
554 | } else | 501 | } else |
555 | m_config.setUseOpieMail( true ); | 502 | m_config.setUseOpieMail( true ); |
556 | } | 503 | } |
557 | if ( m_config.useOpieMail() ){ | 504 | if ( m_config.useOpieMail() ){ |
558 | odebug << "Accessing: " << (basepath + "/bin/opiemail") << oendl; | 505 | odebug << "Accessing: " << (basepath + "/bin/opiemail") << oendl; |
559 | if ( QFile::exists( basepath + "/bin/opiemail" ) ){ | 506 | if ( QFile::exists( basepath + "/bin/opiemail" ) ){ |
560 | odebug << "QCop" << oendl; | 507 | odebug << "QCop" << oendl; |
561 | QCopEnvelope e("QPE/Application/opiemail", "writeMail(QString,QString)"); | 508 | QCopEnvelope e("QPE/Application/opiemail", "writeMail(QString,QString)"); |
562 | e << name << email; | 509 | e << name << email; |
563 | return; | 510 | return; |
564 | } else | 511 | } else |
565 | m_config.setUseQtMail( true ); | 512 | m_config.setUseQtMail( true ); |
566 | } | 513 | } |
567 | 514 | ||
568 | } | 515 | } |
569 | 516 | ||
570 | static const char * beamfile = "/tmp/obex/contact.vcf"; | ||
571 | |||
572 | void AddressbookWindow::slotBeam() | ||
573 | { | ||
574 | QString beamFilename; | ||
575 | Opie::OPimContact c; | ||
576 | if ( actionPersonal->isOn() ) { | ||
577 | beamFilename = addressbookPersonalVCardName(); | ||
578 | if ( !QFile::exists( beamFilename ) ) | ||
579 | return; // can't beam a non-existent file | ||
580 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | ||
581 | beamFilename ); | ||
582 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | ||
583 | Opie::OPimContactAccess::List allList = access->allRecords(); | ||
584 | Opie::OPimContactAccess::List::Iterator it = allList.begin(); // Just take first | ||
585 | c = *it; | ||
586 | |||
587 | delete access; | ||
588 | } else { | ||
589 | unlink( beamfile ); // delete if exists | ||
590 | mkdir("/tmp/obex/", 0755); | ||
591 | c = m_abView -> currentEntry(); | ||
592 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | ||
593 | beamfile ); | ||
594 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | ||
595 | access->add( c ); | ||
596 | access->save(); | ||
597 | delete access; | ||
598 | |||
599 | beamFilename = beamfile; | ||
600 | } | ||
601 | |||
602 | odebug << "Beaming: " << beamFilename << oendl; | ||
603 | |||
604 | Ir *ir = new Ir( this ); | ||
605 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | ||
606 | QString description = c.fullName(); | ||
607 | ir->send( beamFilename, description, "text/x-vCard" ); | ||
608 | } | ||
609 | |||
610 | void AddressbookWindow::beamDone( Ir *ir ) | 517 | void AddressbookWindow::beamDone( Ir *ir ) |
611 | { | 518 | { |
612 | 519 | ||
613 | delete ir; | 520 | delete ir; |
614 | unlink( beamfile ); | 521 | unlink( beamfile ); |
615 | } | 522 | } |
616 | 523 | ||
617 | 524 | ||
618 | static void parseName( const QString& name, QString *first, QString *middle, | 525 | static void parseName( const QString& name, QString *first, QString *middle, |
619 | QString * last ) | 526 | QString * last ) |
620 | { | 527 | { |
621 | 528 | ||
622 | int comma = name.find ( "," ); | 529 | int comma = name.find ( "," ); |
623 | QString rest; | 530 | QString rest; |
624 | if ( comma > 0 ) { | 531 | if ( comma > 0 ) { |
625 | *last = name.left( comma ); | 532 | *last = name.left( comma ); |
@@ -632,418 +539,305 @@ static void parseName( const QString& name, QString *first, QString *middle, | |||
632 | *last = name.mid( space+1 ); | 539 | *last = name.mid( space+1 ); |
633 | rest = name.left( space ); | 540 | rest = name.left( space ); |
634 | } | 541 | } |
635 | int space = rest.find( ' ' ); | 542 | int space = rest.find( ' ' ); |
636 | if ( space <= 0 ) { | 543 | if ( space <= 0 ) { |
637 | *first = rest; | 544 | *first = rest; |
638 | } else { | 545 | } else { |
639 | *first = rest.left( space ); | 546 | *first = rest.left( space ); |
640 | *middle = rest.mid( space+1 ); | 547 | *middle = rest.mid( space+1 ); |
641 | } | 548 | } |
642 | 549 | ||
643 | } | 550 | } |
644 | 551 | ||
645 | 552 | ||
646 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | 553 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) |
647 | { | 554 | { |
648 | bool needShow = FALSE; | 555 | bool needShow = false; |
649 | odebug << "Receiving QCop-Call with message " << msg << oendl; | 556 | odebug << "Receiving QCop-Call with message " << msg << oendl; |
650 | 557 | ||
651 | 558 | ||
652 | if (msg == "editPersonal()") { | 559 | if (msg == "editPersonal()") { |
653 | editPersonal(); | 560 | editPersonal(); |
561 | |||
562 | // Categories might have changed, so reload | ||
563 | reloadCategories(); | ||
654 | } else if (msg == "editPersonalAndClose()") { | 564 | } else if (msg == "editPersonalAndClose()") { |
655 | editPersonal(); | 565 | editPersonal(); |
656 | close(); | 566 | close(); |
657 | } else if ( msg == "addContact(QString,QString)" ) { | 567 | } else if ( msg == "addContact(QString,QString)" ) { |
658 | QDataStream stream(data,IO_ReadOnly); | 568 | QDataStream stream(data,IO_ReadOnly); |
659 | QString name, email; | 569 | QString name, email; |
660 | stream >> name >> email; | 570 | stream >> name >> email; |
661 | 571 | ||
662 | Opie::OPimContact cnt; | 572 | Opie::OPimContact cnt; |
663 | QString fn, mn, ln; | 573 | QString fn, mn, ln; |
664 | parseName( name, &fn, &mn, &ln ); | 574 | parseName( name, &fn, &mn, &ln ); |
665 | //odebug << " " << fn << " - " << mn " - " << ln << oendl; | 575 | //odebug << " " << fn << " - " << mn " - " << ln << oendl; |
666 | cnt.setFirstName( fn ); | 576 | cnt.setFirstName( fn ); |
667 | cnt.setMiddleName( mn ); | 577 | cnt.setMiddleName( mn ); |
668 | cnt.setLastName( ln ); | 578 | cnt.setLastName( ln ); |
669 | cnt.insertEmails( email ); | 579 | cnt.insertEmails( email ); |
670 | cnt.setDefaultEmail( email ); | 580 | cnt.setDefaultEmail( email ); |
671 | cnt.setFileAs(); | 581 | cnt.setFileAs(); |
672 | 582 | ||
673 | m_abView -> addEntry( cnt ); | 583 | m_abView -> addEntry( cnt ); |
674 | 584 | ||
675 | // :SXm_abView()->init( cnt ); | 585 | // :SXm_abView()->init( cnt ); |
676 | editEntry( EditEntry ); | 586 | editEntry( EditEntry ); |
587 | |||
588 | // Categories might have changed, so reload | ||
589 | reloadCategories(); | ||
677 | } else if ( msg == "beamBusinessCard()" ) { | 590 | } else if ( msg == "beamBusinessCard()" ) { |
678 | QString beamFilename = addressbookPersonalVCardName(); | 591 | QString beamFilename = addressbookPersonalVCardName(); |
679 | if ( !QFile::exists( beamFilename ) ) | 592 | if ( !QFile::exists( beamFilename ) ) |
680 | return; // can't beam a non-existent file | 593 | return; // can't beam a non-existent file |
681 | 594 | ||
682 | Ir *ir = new Ir( this ); | 595 | Ir *ir = new Ir( this ); |
683 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | 596 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); |
684 | QString description = "mycard.vcf"; | 597 | QString description = "mycard.vcf"; |
685 | ir->send( beamFilename, description, "text/x-vCard" ); | 598 | ir->send( beamFilename, description, "text/x-vCard" ); |
686 | } else if ( msg == "show(int)" ) { | 599 | } else if ( msg == "show(int)" ) { |
687 | raise(); | 600 | raise(); |
688 | QDataStream stream(data,IO_ReadOnly); | 601 | QDataStream stream(data,IO_ReadOnly); |
689 | int uid; | 602 | int uid; |
690 | stream >> uid; | 603 | stream >> uid; |
691 | 604 | ||
692 | odebug << "Showing uid: " << uid << oendl; | 605 | odebug << "Showing uid: " << uid << oendl; |
693 | 606 | ||
694 | // Deactivate Personal View.. | 607 | // Deactivate Personal View.. |
695 | if ( actionPersonal->isOn() ){ | 608 | if ( m_actionPersonal->isOn() ){ |
696 | actionPersonal->setOn( false ); | 609 | m_actionPersonal->setOn( false ); |
697 | slotPersonalView(); | 610 | slotPersonalView(); |
698 | } | 611 | } |
699 | 612 | ||
700 | // Reset category and show as card.. | 613 | // Reset category and show as card.. |
701 | m_abView -> setShowByCategory( QString::null ); | 614 | m_abView -> setShowByCategory( QString::null ); |
702 | m_abView -> setCurrentUid( uid ); | 615 | m_abView -> setCurrentUid( uid ); |
703 | slotViewSwitched ( AbView::CardView ); | 616 | slotViewSwitched ( AbView::CardView ); |
704 | 617 | ||
705 | needShow = true; | 618 | needShow = true; |
706 | 619 | ||
707 | 620 | ||
708 | } else if ( msg == "edit(int)" ) { | 621 | } else if ( msg == "edit(int)" ) { |
709 | QDataStream stream(data,IO_ReadOnly); | 622 | QDataStream stream(data,IO_ReadOnly); |
710 | int uid; | 623 | int uid; |
711 | stream >> uid; | 624 | stream >> uid; |
712 | 625 | ||
713 | // Deactivate Personal View.. | 626 | // Deactivate Personal View.. |
714 | if ( actionPersonal->isOn() ){ | 627 | if ( m_actionPersonal->isOn() ){ |
715 | actionPersonal->setOn( false ); | 628 | m_actionPersonal->setOn( false ); |
716 | slotPersonalView(); | 629 | slotPersonalView(); |
717 | } | 630 | } |
718 | 631 | ||
719 | // Reset category and edit.. | 632 | // Reset category and edit.. |
720 | m_abView -> setShowByCategory( QString::null ); | 633 | m_abView -> setShowByCategory( QString::null ); |
721 | m_abView -> setCurrentUid( uid ); | 634 | m_abView -> setCurrentUid( uid ); |
722 | slotViewEdit(); | 635 | slotItemEdit(); |
723 | } | 636 | |
637 | // Categories might have changed, so reload | ||
638 | reloadCategories(); | ||
639 | } | ||
724 | 640 | ||
725 | if (needShow) | 641 | if (needShow) |
726 | QPEApplication::setKeepRunning(); | 642 | QPEApplication::setKeepRunning(); |
727 | |||
728 | } | 643 | } |
729 | 644 | ||
730 | void AddressbookWindow::editEntry( EntryMode entryMode ) | 645 | void AddressbookWindow::editEntry( EntryMode entryMode ) |
731 | { | 646 | { |
732 | Opie::OPimContact entry; | 647 | Opie::OPimContact entry; |
733 | if ( !abEditor ) { | 648 | if ( !abEditor ) { |
734 | abEditor = new ContactEditor( entry, this, "editor" ); | 649 | abEditor = new ContactEditor( entry, this, "editor" ); |
735 | } | 650 | } |
736 | if ( entryMode == EditEntry ) | 651 | if ( entryMode == EditEntry ) |
737 | abEditor->setEntry( m_abView -> currentEntry() ); | 652 | abEditor->setEntry( m_abView -> currentEntry() ); |
738 | else if ( entryMode == NewEntry ) | 653 | else if ( entryMode == NewEntry ) |
739 | abEditor->setEntry( entry ); | 654 | abEditor->setEntry( entry ); |
740 | // other things may change the caption. | 655 | // other things may change the caption. |
741 | abEditor->setCaption( tr("Edit Address") ); | 656 | abEditor->setCaption( tr("Edit Address") ); |
742 | 657 | ||
743 | // fix the foxus... | 658 | // fix the focus... |
744 | abEditor->setNameFocus(); | 659 | abEditor->setNameFocus(); |
745 | if ( QPEApplication::execDialog( abEditor ) ) { | 660 | if ( QPEApplication::execDialog( abEditor ) == QDialog::Accepted ) { |
746 | setFocus(); | 661 | setFocus(); |
747 | if ( entryMode == NewEntry ) { | 662 | if ( entryMode == NewEntry ) { |
748 | Opie::OPimContact insertEntry = abEditor->entry(); | 663 | Opie::OPimContact insertEntry = abEditor->entry(); |
749 | insertEntry.assignUid(); | 664 | insertEntry.assignUid(); |
750 | m_abView -> addEntry( insertEntry ); | 665 | m_abView -> addEntry( insertEntry ); |
751 | m_abView -> setCurrentUid( insertEntry.uid() ); | 666 | m_abView -> setCurrentUid( insertEntry.uid() ); |
752 | } else { | 667 | } else { |
753 | Opie::OPimContact replEntry = abEditor->entry(); | 668 | Opie::OPimContact replEntry = abEditor->entry(); |
754 | 669 | ||
755 | if ( !replEntry.isValidUid() ) | 670 | if ( !replEntry.isValidUid() ) |
756 | replEntry.assignUid(); | 671 | replEntry.assignUid(); |
757 | 672 | ||
758 | m_abView -> replaceEntry( replEntry ); | 673 | m_abView -> replaceEntry( replEntry ); |
759 | } | 674 | } |
760 | } | ||
761 | // populateCategories(); | ||
762 | 675 | ||
676 | // Categories might have changed, so reload | ||
677 | reloadCategories(); | ||
678 | } | ||
763 | } | 679 | } |
764 | 680 | ||
765 | void AddressbookWindow::editPersonal() | 681 | void AddressbookWindow::editPersonal() |
766 | { | 682 | { |
767 | Opie::OPimContact entry; | 683 | Opie::OPimContact entry; |
768 | 684 | ||
769 | // Switch to personal view if not selected | 685 | // Switch to personal view if not selected |
770 | // but take care of the menu, too | 686 | // but take care of the menu, too |
771 | if ( ! actionPersonal->isOn() ){ | 687 | if ( ! m_actionPersonal->isOn() ){ |
772 | odebug << "*** ++++" << oendl; | 688 | odebug << "*** ++++" << oendl; |
773 | actionPersonal->setOn( true ); | 689 | m_actionPersonal->setOn( true ); |
774 | slotPersonalView(); | 690 | slotPersonalView(); |
775 | } | 691 | } |
776 | 692 | ||
777 | if ( !abEditor ) { | 693 | if ( !abEditor ) { |
778 | abEditor = new ContactEditor( entry, this, "editor" ); | 694 | abEditor = new ContactEditor( entry, this, "editor" ); |
779 | } | 695 | } |
780 | 696 | ||
781 | abEditor->setCaption(tr("Edit My Personal Details")); | 697 | abEditor->setCaption(tr("Edit My Personal Details")); |
782 | abEditor->setPersonalView( true ); | 698 | abEditor->setPersonalView( true ); |
783 | editEntry( EditEntry ); | 699 | editEntry( EditEntry ); |
784 | abEditor->setPersonalView( false ); | 700 | abEditor->setPersonalView( false ); |
785 | 701 | ||
786 | } | 702 | } |
787 | 703 | ||
788 | 704 | ||
789 | void AddressbookWindow::slotPersonalView() | 705 | void AddressbookWindow::slotPersonalView() |
790 | { | 706 | { |
791 | odebug << "slotPersonalView()" << oendl; | 707 | odebug << "slotPersonalView()" << oendl; |
792 | if (!actionPersonal->isOn()) { | ||
793 | // we just turned it off | ||
794 | odebug << "slotPersonalView()-> OFF" << oendl; | ||
795 | setCaption( tr("Contacts") ); | ||
796 | actionNew->setEnabled(TRUE); | ||
797 | actionTrash->setEnabled(TRUE); | ||
798 | actionFind->setEnabled(TRUE); | ||
799 | actionMail->setEnabled(TRUE); | ||
800 | // slotUpdateToolbar(); | ||
801 | |||
802 | m_abView->showPersonal( false ); | ||
803 | 708 | ||
804 | return; | 709 | bool personal = m_actionPersonal->isOn(); |
805 | } | ||
806 | |||
807 | odebug << "slotPersonalView()-> ON" << oendl; | ||
808 | // XXX need to disable some QActions. | ||
809 | actionNew->setEnabled(FALSE); | ||
810 | actionTrash->setEnabled(FALSE); | ||
811 | actionFind->setEnabled(FALSE); | ||
812 | actionMail->setEnabled(FALSE); | ||
813 | 710 | ||
814 | setCaption( tr("Contacts - My Personal Details") ); | 711 | // Disable certain menu items when showing personal details |
712 | setItemNewEnabled( !personal ); | ||
713 | setItemDuplicateEnabled( !personal ); | ||
714 | setItemDeleteEnabled( !personal ); | ||
715 | m_actionMail->setEnabled( !personal ); | ||
815 | 716 | ||
816 | m_abView->showPersonal( true ); | 717 | // Display appropriate view |
718 | m_abView->showPersonal( personal ); | ||
817 | 719 | ||
818 | } | 720 | // Set application caption |
819 | 721 | personal ? setCaption( tr( "Contacts - My Personal Details") ) | |
820 | 722 | : setCaption( tr( "Contacts") ); | |
821 | void AddressbookWindow::listIsEmpty( bool empty ) | ||
822 | { | ||
823 | if ( !empty ) { | ||
824 | deleteButton->setEnabled( TRUE ); | ||
825 | } | ||
826 | } | 723 | } |
827 | 724 | ||
828 | void AddressbookWindow::reload() | 725 | void AddressbookWindow::reload() |
829 | { | 726 | { |
830 | syncing = FALSE; | 727 | syncing = false; |
831 | m_abView->clear(); | 728 | m_abView->clear(); |
832 | m_abView->reload(); | 729 | m_abView->reload(); |
833 | } | 730 | } |
834 | 731 | ||
835 | void AddressbookWindow::flush() | 732 | void AddressbookWindow::flush() |
836 | { | 733 | { |
837 | syncing = TRUE; | 734 | syncing = true; |
838 | m_abView->save(); | 735 | m_abView->save(); |
839 | } | 736 | } |
840 | 737 | ||
841 | 738 | ||
842 | void AddressbookWindow::closeEvent( QCloseEvent *e ) | 739 | void AddressbookWindow::closeEvent( QCloseEvent *e ) |
843 | { | 740 | { |
844 | if(active_view == AbView::CardView){ | 741 | if(active_view == AbView::CardView){ |
845 | slotViewSwitched( AbView::TableView ); | 742 | slotViewSwitched( AbView::TableView ); |
846 | e->ignore(); | 743 | e->ignore(); |
847 | return; | 744 | return; |
848 | } | 745 | } |
849 | if(syncing) { | 746 | if(syncing) { |
850 | /* shouldn't we save, I hear you say? well its already been set | 747 | /* shouldn't we save, I hear you say? well its already been set |
851 | so that an edit can not occur during a sync, and we flushed | 748 | so that an edit can not occur during a sync, and we flushed |
852 | at the start of the sync, so there is no need to save | 749 | at the start of the sync, so there is no need to save |
853 | Saving however itself would cause problems. */ | 750 | Saving however itself would cause problems. */ |
854 | e->accept(); | 751 | e->accept(); |
855 | return; | 752 | return; |
856 | } | 753 | } |
857 | //################## shouldn't always save | 754 | //################## shouldn't always save |
858 | // True, but the database handles this automatically ! (se) | 755 | // True, but the database handles this automatically ! (se) |
859 | if ( save() ) | 756 | if ( save() ) |
860 | e->accept(); | 757 | e->accept(); |
861 | else | 758 | else |
862 | e->ignore(); | 759 | e->ignore(); |
863 | } | 760 | } |
864 | 761 | ||
865 | /* | 762 | /* |
866 | Returns TRUE if it is OK to exit | 763 | Returns true if it is OK to exit |
867 | */ | 764 | */ |
868 | 765 | ||
869 | bool AddressbookWindow::save() | 766 | bool AddressbookWindow::save() |
870 | { | 767 | { |
871 | if ( !m_abView->save() ) { | 768 | if ( !m_abView->save() ) { |
872 | if ( QMessageBox::critical( 0, tr( "Out of space" ), | 769 | if ( QMessageBox::critical( 0, tr( "Out of space" ), |
873 | tr("Unable to save information.\n" | 770 | tr("Unable to save information.\n" |
874 | "Free up some space\n" | 771 | "Free up some space\n" |
875 | "and try again.\n" | 772 | "and try again.\n" |
876 | "\nQuit anyway?"), | 773 | "\nQuit anyway?"), |
877 | QMessageBox::Yes|QMessageBox::Escape, | 774 | QMessageBox::Yes|QMessageBox::Escape, |
878 | QMessageBox::No|QMessageBox::Default ) | 775 | QMessageBox::No|QMessageBox::Default ) |
879 | != QMessageBox::No ) | 776 | != QMessageBox::No ) |
880 | return TRUE; | 777 | return true; |
881 | else | 778 | else |
882 | return FALSE; | 779 | return false; |
883 | } | 780 | } |
884 | return TRUE; | 781 | return true; |
885 | } | 782 | } |
886 | 783 | ||
887 | #ifdef __DEBUG_RELEASE | 784 | #ifdef __DEBUG_RELEASE |
888 | void AddressbookWindow::slotSave() | 785 | void AddressbookWindow::slotSave() |
889 | { | 786 | { |
890 | save(); | 787 | save(); |
891 | } | 788 | } |
892 | #endif | 789 | #endif |
893 | 790 | ||
894 | 791 | ||
895 | void AddressbookWindow::slotNotFound() | 792 | void AddressbookWindow::slotNotFound() |
896 | { | 793 | { |
897 | odebug << "Got not found signal!" << oendl; | 794 | odebug << "Got not found signal!" << oendl; |
898 | QMessageBox::information( this, tr( "Not Found" ), | 795 | QMessageBox::information( this, tr( "Not Found" ), |
899 | "<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" ); | 796 | "<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" ); |
900 | 797 | ||
901 | 798 | ||
902 | } | 799 | } |
903 | void AddressbookWindow::slotWrapAround() | 800 | void AddressbookWindow::slotWrapAround() |
904 | { | 801 | { |
905 | odebug << "Got wrap signal!" << oendl; | 802 | odebug << "Got wrap signal!" << oendl; |
906 | // if ( doNotifyWrapAround ) | 803 | // if ( doNotifyWrapAround ) |
907 | // QMessageBox::information( this, tr( "End of list" ), | 804 | // QMessageBox::information( this, tr( "End of list" ), |
908 | // tr( "End of list. Wrap around now...!" ) + "\n" ); | 805 | // tr( "End of list. Wrap around now...!" ) + "\n" ); |
909 | 806 | ||
910 | } | 807 | } |
911 | 808 | ||
912 | void AddressbookWindow::slotSetCategory( int c ) | 809 | void AddressbookWindow::slotSetCategory( const QString &category ) |
913 | { | 810 | { |
914 | odebug << "void AddressbookWindow::slotSetCategory( " << c << " ) from " | 811 | odebug << "void AddressbookWindow::slotSetCategory( " << category << " )" << oendl; |
915 | << catMenu->count() << oendl; | ||
916 | |||
917 | QString cat, book; | ||
918 | AbView::Views view = AbView::TableView; | ||
919 | |||
920 | if ( c <= 0 ) | ||
921 | return; | ||
922 | |||
923 | // Switch view | ||
924 | if ( c < 3 ) | ||
925 | for ( unsigned int i = 1; i < 3; i++ ){ | ||
926 | if ( catMenu ) | ||
927 | catMenu->setItemChecked( i, c == (int)i ); | ||
928 | } | ||
929 | else | ||
930 | // Checkmark Category Menu Item Selected | ||
931 | for ( unsigned int i = 3; i < catMenu->count(); i++ ) | ||
932 | catMenu->setItemChecked( i, c == (int)i ); | ||
933 | |||
934 | // Now switch to the selected category | ||
935 | for ( unsigned int i = 1; i < catMenu->count(); i++ ) { | ||
936 | if (catMenu->isItemChecked( i )) { | ||
937 | if ( i == 1 ){ // default List view | ||
938 | book = QString::null; | ||
939 | view = AbView::TableView; | ||
940 | }else if ( i == 2 ){ | ||
941 | book = tr( "Cards" ); | ||
942 | view = AbView::CardView; | ||
943 | // }else if ( i == 3 ){ | ||
944 | // book = tr( "Personal" ); | ||
945 | // view = AbView:: PersonalView; | ||
946 | }else if ( i == 3 ){ // default All Categories | ||
947 | cat = QString::null; | ||
948 | }else if ( i == (unsigned int)catMenu->count() - 1 ){ // last menu option (seperator is counted, too) will be Unfiled | ||
949 | cat = "Unfiled"; | ||
950 | odebug << "Unfiled selected!" << oendl; | ||
951 | }else{ | ||
952 | cat = m_abView->categories()[i - 4]; | ||
953 | } | ||
954 | } | ||
955 | } | ||
956 | |||
957 | // Switch to the selected View | ||
958 | slotViewSwitched( view ); | ||
959 | 812 | ||
960 | // Tell the view about the selected category | 813 | // Tell the view about the selected category |
961 | m_abView -> setShowByCategory( cat ); | 814 | m_config.setCategory( category ); |
962 | 815 | m_abView -> setShowByCategory( category ); | |
963 | if ( book.isEmpty() ) | ||
964 | book = "List"; | ||
965 | if ( cat.isEmpty() ) | ||
966 | cat = "All"; | ||
967 | |||
968 | setCaption( tr( "Contacts" ) + " - " + book + " - " + tr( cat ) ); | ||
969 | } | 816 | } |
970 | 817 | ||
971 | void AddressbookWindow::slotViewSwitched( int view ) | 818 | void AddressbookWindow::slotViewSwitched( int view ) |
972 | { | 819 | { |
973 | odebug << "void AddressbookWindow::slotViewSwitched( " << view << " )" << oendl; | 820 | odebug << "void AddressbookWindow::slotViewSwitched( " << view << " )" << oendl; |
974 | int menu = 0; | ||
975 | |||
976 | // Switch to selected view | ||
977 | switch ( view ){ | ||
978 | case AbView::TableView: | ||
979 | menu = 1; | ||
980 | m_tableViewButton->setOn(true); | ||
981 | m_cardViewButton->setOn(false); | ||
982 | break; | ||
983 | case AbView::CardView: | ||
984 | menu = 2; | ||
985 | m_tableViewButton->setOn(false); | ||
986 | m_cardViewButton->setOn(true); | ||
987 | break; | ||
988 | } | ||
989 | for ( unsigned int i = 1; i < 3; i++ ){ | ||
990 | if ( catMenu ) | ||
991 | catMenu->setItemChecked( i, menu == (int)i ); | ||
992 | } | ||
993 | 821 | ||
994 | // Tell the view about the selected view | 822 | // Tell the view about the selected view |
995 | m_abView -> setShowToView ( (AbView::Views) view ); | 823 | m_abView -> setShowToView ( (AbView::Views) view ); |
996 | active_view = view; | 824 | active_view = view; |
997 | } | 825 | } |
998 | 826 | ||
999 | 827 | ||
1000 | void AddressbookWindow::slotListView() | 828 | void AddressbookWindow::slotListView() |
1001 | { | 829 | { |
1002 | slotViewSwitched( AbView::TableView ); | 830 | slotViewSwitched( AbView::TableView ); |
1003 | } | 831 | } |
1004 | 832 | ||
1005 | void AddressbookWindow::slotCardView() | 833 | void AddressbookWindow::slotCardView() |
1006 | { | 834 | { |
1007 | slotViewSwitched( AbView::CardView ); | 835 | slotViewSwitched( AbView::CardView ); |
1008 | } | 836 | } |
1009 | 837 | ||
1010 | void AddressbookWindow::slotSetLetter( char c ) { | 838 | void AddressbookWindow::slotSetLetter( char c ) { |
1011 | 839 | ||
1012 | m_abView->setShowByLetter( c, m_config.letterPickerSearch() ); | 840 | m_abView->setShowByLetter( c, m_config.letterPickerSearch() ); |
1013 | 841 | ||
1014 | } | 842 | } |
1015 | 843 | ||
1016 | |||
1017 | void AddressbookWindow::populateCategories() | ||
1018 | { | ||
1019 | catMenu->clear(); | ||
1020 | |||
1021 | int id, rememberId; | ||
1022 | id = 1; | ||
1023 | rememberId = 0; | ||
1024 | |||
1025 | catMenu->insertItem( Resource::loadPixmap( "addressbook/listview" ), tr( "List" ), id++ ); | ||
1026 | catMenu->insertItem( Resource::loadPixmap( "addressbook/cardview" ), tr( "Cards" ), id++ ); | ||
1027 | // catMenu->insertItem( tr( "Personal" ), id++ ); | ||
1028 | catMenu->insertSeparator(); | ||
1029 | |||
1030 | catMenu->insertItem( tr( "All" ), id++ ); | ||
1031 | QStringList categories = m_abView->categories(); | ||
1032 | categories.append( tr( "Unfiled" ) ); | ||
1033 | for ( QStringList::Iterator it = categories.begin(); | ||
1034 | it != categories.end(); ++it ) { | ||
1035 | catMenu->insertItem( *it, id ); | ||
1036 | if ( *it == m_abView -> showCategory() ) | ||
1037 | rememberId = id; | ||
1038 | ++id; | ||
1039 | } | ||
1040 | |||
1041 | |||
1042 | if ( m_abView -> showCategory().isEmpty() ) { | ||
1043 | slotSetCategory( 3 ); | ||
1044 | } | ||
1045 | else { | ||
1046 | slotSetCategory( rememberId ); | ||
1047 | } | ||
1048 | } | ||
1049 | |||
diff --git a/core/pim/addressbook/addressbook.h b/core/pim/addressbook/addressbook.h index 7cc61bf..b04e2cc 100644 --- a/core/pim/addressbook/addressbook.h +++ b/core/pim/addressbook/addressbook.h | |||
@@ -10,128 +10,128 @@ | |||
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef Addressbook_H | 20 | #ifndef Addressbook_H |
21 | #define Addressbook_H | 21 | #define Addressbook_H |
22 | 22 | ||
23 | // Remove this for OPIE releae 1.0 ! | 23 | // Remove this for OPIE releae 1.0 ! |
24 | // #define __DEBUG_RELEASE | 24 | // #define __DEBUG_RELEASE |
25 | 25 | ||
26 | #include <qmainwindow.h> | 26 | #include <opie2/opimmainwindow.h> |
27 | |||
27 | #include <qvaluelist.h> | 28 | #include <qvaluelist.h> |
28 | #include <qstringlist.h> | 29 | #include <qstringlist.h> |
29 | #include <qlineedit.h> | 30 | #include <qlineedit.h> |
30 | #include "ofloatbar.h" | 31 | #include "ofloatbar.h" |
31 | #include "abview.h" | 32 | #include "abview.h" |
32 | #include "abconfig.h" | 33 | #include "abconfig.h" |
33 | 34 | ||
34 | class ContactEditor; | 35 | class ContactEditor; |
35 | class AbLabel; | 36 | class AbLabel; |
36 | class AbTable; | 37 | class AbTable; |
37 | class QToolBar; | 38 | class QToolBar; |
38 | class QPopupMenu; | 39 | class QPopupMenu; |
39 | class QToolButton; | 40 | class QToolButton; |
40 | class QDialog; | 41 | class QDialog; |
41 | class Ir; | 42 | class Ir; |
42 | class QAction; | 43 | class QAction; |
43 | class LetterPicker; | 44 | class LetterPicker; |
45 | class Opie::OPimRecord; | ||
44 | 46 | ||
45 | class AddressbookWindow: public QMainWindow | 47 | class AddressbookWindow: public Opie::OPimMainWindow |
46 | { | 48 | { |
47 | Q_OBJECT | 49 | Q_OBJECT |
48 | public: | 50 | public: |
49 | enum EntryMode { NewEntry=0, EditEntry }; | 51 | enum EntryMode { NewEntry=0, EditEntry }; |
50 | 52 | ||
51 | static QString appName() { return QString::fromLatin1("addressbook"); } | 53 | static QString appName() { return QString::fromLatin1("addressbook"); } |
52 | AddressbookWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); | 54 | AddressbookWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); |
53 | ~AddressbookWindow(); | 55 | ~AddressbookWindow(); |
54 | 56 | ||
55 | protected: | 57 | protected: |
56 | void resizeEvent( QResizeEvent * e ); | 58 | void resizeEvent( QResizeEvent * e ); |
57 | 59 | ||
58 | void editPersonal(); | 60 | void editPersonal(); |
59 | void editEntry( EntryMode ); | 61 | void editEntry( EntryMode ); |
60 | void closeEvent( QCloseEvent *e ); | 62 | void closeEvent( QCloseEvent *e ); |
61 | bool save(); | 63 | bool save(); |
62 | 64 | ||
63 | public slots: | 65 | public slots: |
64 | void flush(); | 66 | void flush(); |
65 | void reload(); | 67 | void reload(); |
66 | void appMessage(const QCString &, const QByteArray &); | 68 | void appMessage(const QCString &, const QByteArray &); |
67 | void setDocument( const QString & ); // Called by obex receiver and internally! | 69 | void setDocument( const QString & ); // Called by obex receiver and internally! |
68 | #ifdef __DEBUG_RELEASE | 70 | #ifdef __DEBUG_RELEASE |
69 | // void slotSave(); | 71 | // void slotSave(); |
70 | #endif | 72 | #endif |
71 | 73 | ||
74 | protected slots: | ||
75 | int create(); | ||
76 | bool remove( int uid ); | ||
77 | void beam( int uid ); | ||
78 | void show( int uid ); | ||
79 | void edit( int uid ); | ||
80 | void add( const Opie::OPimRecord& ); | ||
81 | |||
72 | private slots: | 82 | private slots: |
83 | void slotItemNew(); | ||
84 | void slotItemEdit(); | ||
85 | void slotItemDuplicate(); | ||
86 | void slotItemDelete(); | ||
87 | void slotItemBeam(); | ||
88 | void slotItemFind(); | ||
89 | void slotConfigure(); | ||
90 | |||
73 | void importvCard(); | 91 | void importvCard(); |
74 | void exportvCard(); | 92 | void exportvCard(); |
75 | void slotListNew(); | ||
76 | /* void slotListView(); */ | ||
77 | void slotListDelete(); | ||
78 | void slotViewBack(); | 93 | void slotViewBack(); |
79 | void slotViewEdit(); | ||
80 | void slotPersonalView(); | 94 | void slotPersonalView(); |
81 | void listIsEmpty( bool ); | ||
82 | /* void slotSettings(); */ | ||
83 | void writeMail(); | 95 | void writeMail(); |
84 | void slotBeam(); | ||
85 | void beamDone( Ir * ); | 96 | void beamDone( Ir * ); |
86 | void slotSetCategory( int ); | 97 | void slotSetCategory( const QString &category ); |
87 | void slotSetLetter( char ); | 98 | void slotSetLetter( char ); |
88 | void slotUpdateToolbar(); | ||
89 | void slotSetFont(int); | 99 | void slotSetFont(int); |
90 | 100 | ||
91 | void slotFindOpen(); | 101 | void slotShowFind( bool show ); |
92 | void slotFindClose(); | ||
93 | void slotFind(); | 102 | void slotFind(); |
94 | void slotNotFound(); | 103 | void slotNotFound(); |
95 | void slotWrapAround(); | 104 | void slotWrapAround(); |
96 | 105 | ||
97 | void slotViewSwitched( int ); | 106 | void slotViewSwitched( int ); |
98 | void slotListView(); | 107 | void slotListView(); |
99 | void slotCardView(); | 108 | void slotCardView(); |
100 | 109 | ||
101 | void slotConfig(); | ||
102 | |||
103 | private: | 110 | private: |
104 | void populateCategories(); | ||
105 | |||
106 | QPopupMenu *catMenu; | ||
107 | QToolBar *listTools; | 111 | QToolBar *listTools; |
108 | QToolButton *deleteButton; | ||
109 | enum Panes { paneList=0, paneView, paneEdit }; | 112 | enum Panes { paneList=0, paneView, paneEdit }; |
110 | ContactEditor *abEditor; | 113 | ContactEditor *abEditor; |
111 | LetterPicker *pLabel; | 114 | LetterPicker *pLabel; |
112 | AbView* m_abView; | 115 | AbView* m_abView; |
113 | QWidget *listContainer; | 116 | QWidget *m_listContainer; |
114 | 117 | ||
115 | // Searching stuff | 118 | // Searching stuff |
116 | OFloatBar* searchBar; | 119 | OFloatBar* m_searchBar; |
117 | QLineEdit* searchEdit; | 120 | QLineEdit* m_searchEdit; |
118 | 121 | ||
119 | QAction *actionNew, *actionEdit, *actionTrash, *actionFind, *actionBeam, *actionPersonal, *actionMail; | 122 | QAction *m_actionPersonal, *m_actionMail; |
120 | 123 | ||
121 | int viewMargin; | 124 | int viewMargin; |
122 | 125 | ||
123 | bool syncing; | 126 | bool syncing; |
124 | QFont *defaultFont; | 127 | QFont *defaultFont; |
125 | int m_curFontSize; | 128 | int m_curFontSize; |
126 | 129 | ||
127 | bool isLoading; | 130 | bool isLoading; |
128 | 131 | ||
129 | AbConfig m_config; | 132 | AbConfig m_config; |
130 | 133 | ||
131 | QAction* m_tableViewButton; | ||
132 | QAction* m_cardViewButton; | ||
133 | |||
134 | int active_view; | 134 | int active_view; |
135 | }; | 135 | }; |
136 | 136 | ||
137 | #endif | 137 | #endif |
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index b078968..dec4c7c 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp | |||
@@ -18,60 +18,59 @@ | |||
18 | * is made to operate exactly in interface with the exception of name. | 18 | * is made to operate exactly in interface with the exception of name. |
19 | * | 19 | * |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include "contacteditor.h" | 22 | #include "contacteditor.h" |
23 | #include "namelineedit.h" | 23 | #include "namelineedit.h" |
24 | 24 | ||
25 | #include <opie2/odebug.h> | 25 | #include <opie2/odebug.h> |
26 | #include <opie2/opimcontact.h> | 26 | #include <opie2/opimcontact.h> |
27 | 27 | ||
28 | #include <qpe/categoryselect.h> | 28 | #include <qpe/categoryselect.h> |
29 | #include <qpe/qpeapplication.h> | 29 | #include <qpe/qpeapplication.h> |
30 | #include <qpe/qpedialog.h> | 30 | #include <qpe/qpedialog.h> |
31 | #include <qpe/resource.h> | 31 | #include <qpe/resource.h> |
32 | 32 | ||
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | #include <qtabwidget.h> | ||
35 | #include <qlayout.h> | 34 | #include <qlayout.h> |
36 | #include <qlineedit.h> | 35 | #include <qlineedit.h> |
37 | #include <qmultilineedit.h> | 36 | #include <qmultilineedit.h> |
38 | #include <qtoolbutton.h> | 37 | #include <qtoolbutton.h> |
39 | #include <qlistbox.h> | 38 | #include <qlistbox.h> |
40 | #include <qmessagebox.h> | 39 | #include <qmessagebox.h> |
41 | #include <qwhatsthis.h> | 40 | #include <qwhatsthis.h> |
42 | 41 | ||
43 | #include <assert.h> | 42 | #include <assert.h> |
44 | 43 | ||
45 | static inline bool containsAlphaNum( const QString &str ); | 44 | static inline bool containsAlphaNum( const QString &str ); |
46 | static inline bool constainsWhiteSpace( const QString &str ); | 45 | static inline bool constainsWhiteSpace( const QString &str ); |
47 | 46 | ||
48 | // helper functions, convert our comma delimited list to proper | 47 | // helper functions, convert our comma delimited list to proper |
49 | // file format... | 48 | // file format... |
50 | void parseEmailFrom( const QString &txt, QString &strDefaultEmail, | 49 | void parseEmailFrom( const QString &txt, QString &strDefaultEmail, |
51 | QString &strAll ); | 50 | QString &strAll ); |
52 | 51 | ||
53 | // helper convert from file format to comma delimited... | 52 | // helper convert from file format to comma delimited... |
54 | void parseEmailTo( const QString &strDefaultEmail, | 53 | void parseEmailTo( const QString &strDefaultEmail, |
55 | const QString &strOtherEmail, QString &strBack ); | 54 | const QString &strOtherEmail, QString &strBack ); |
56 | 55 | ||
57 | ContactEditor::ContactEditor(const Opie::OPimContact &entry, | 56 | ContactEditor::ContactEditor(const Opie::OPimContact &entry, |
58 | QWidget *parent, | 57 | QWidget *parent, |
59 | const char *name, | 58 | const char *name, |
60 | WFlags ) | 59 | WFlags ) |
61 | : QDialog( parent, name, TRUE, WStyle_ContextHelp ), | 60 | : QDialog( parent, name, true, WStyle_ContextHelp ), |
62 | defaultEmailChooserPosition( -1 ), | 61 | defaultEmailChooserPosition( -1 ), |
63 | m_personalView ( false ), | 62 | m_personalView ( false ), |
64 | cmbDefaultEmail( 0 ), | 63 | cmbDefaultEmail( 0 ), |
65 | initializing ( false ) | 64 | initializing ( false ) |
66 | { | 65 | { |
67 | 66 | ||
68 | initializing = true; | 67 | initializing = true; |
69 | 68 | ||
70 | init(); | 69 | init(); |
71 | setEntry( entry ); | 70 | setEntry( entry ); |
72 | // cmbDefaultEmail = 0; | 71 | // cmbDefaultEmail = 0; |
73 | // defaultEmailChooserPosition = -1; | 72 | // defaultEmailChooserPosition = -1; |
74 | 73 | ||
75 | initializing = false; | 74 | initializing = false; |
76 | } | 75 | } |
77 | 76 | ||
@@ -106,179 +105,178 @@ void ContactEditor::init() { | |||
106 | // use the translation map to avoid mismatches.. | 105 | // use the translation map to avoid mismatches.. |
107 | QMap<int, QString> translMap = Opie::OPimContactFields::idToTrFields(); | 106 | QMap<int, QString> translMap = Opie::OPimContactFields::idToTrFields(); |
108 | trlDynamicEntries.remove( translMap[Qtopia::Anniversary] ); | 107 | trlDynamicEntries.remove( translMap[Qtopia::Anniversary] ); |
109 | trlDynamicEntries.remove( translMap[Qtopia::Birthday] ); | 108 | trlDynamicEntries.remove( translMap[Qtopia::Birthday] ); |
110 | trlDynamicEntries.remove( translMap[Qtopia::Gender] ); | 109 | trlDynamicEntries.remove( translMap[Qtopia::Gender] ); |
111 | 110 | ||
112 | // Last Check to be sure.. | 111 | // Last Check to be sure.. |
113 | assert( slDynamicEntries.count() == trlDynamicEntries.count() ); | 112 | assert( slDynamicEntries.count() == trlDynamicEntries.count() ); |
114 | assert( slChooserNames.count() == trlChooserNames.count() ); | 113 | assert( slChooserNames.count() == trlChooserNames.count() ); |
115 | 114 | ||
116 | for (i = 0; i < slChooserNames.count(); i++) | 115 | for (i = 0; i < slChooserNames.count(); i++) |
117 | slChooserValues.append(""); | 116 | slChooserValues.append(""); |
118 | 117 | ||
119 | 118 | ||
120 | QVBoxLayout *vb = new QVBoxLayout( this ); | 119 | QVBoxLayout *vb = new QVBoxLayout( this ); |
121 | 120 | ||
122 | tabMain = new QTabWidget( this ); | 121 | tabMain = new Opie::Ui::OTabWidget( this ); |
123 | vb->addWidget( tabMain ); | 122 | vb->addWidget( tabMain ); |
124 | 123 | ||
125 | QWidget *tabViewport = new QWidget ( tabMain ); | 124 | m_generalWidget = new QWidget ( tabMain ); |
126 | 125 | ||
127 | vb = new QVBoxLayout( tabViewport ); | 126 | vb = new QVBoxLayout( m_generalWidget ); |
128 | 127 | ||
129 | svGeneral = new QScrollView( tabViewport ); | 128 | svGeneral = new QScrollView( m_generalWidget ); |
130 | vb->addWidget( svGeneral, 0, 0 ); | 129 | vb->addWidget( svGeneral, 0, 0 ); |
131 | svGeneral->setResizePolicy( QScrollView::AutoOneFit ); | 130 | svGeneral->setResizePolicy( QScrollView::AutoOneFit ); |
132 | // svGeneral->setHScrollBarMode( QScrollView::AlwaysOff ); | 131 | // svGeneral->setHScrollBarMode( QScrollView::AlwaysOff ); |
133 | // svGeneral->setVScrollBarMode( QScrollView::AlwaysOff ); | 132 | // svGeneral->setVScrollBarMode( QScrollView::AlwaysOff ); |
134 | svGeneral->setFrameStyle( QFrame::NoFrame ); | 133 | svGeneral->setFrameStyle( QFrame::NoFrame ); |
135 | 134 | ||
136 | QWidget *container = new QWidget( svGeneral->viewport() ); | 135 | QWidget *container = new QWidget( svGeneral->viewport() ); |
137 | svGeneral->addChild( container ); | 136 | svGeneral->addChild( container ); |
138 | 137 | ||
139 | QGridLayout *gl = new QGridLayout( container, 1, 1, 2, 4 ); | 138 | QGridLayout *gl = new QGridLayout( container, 10, 2, 2, 4 ); |
140 | gl->setResizeMode( QLayout::FreeResize ); | ||
141 | 139 | ||
142 | btnFullName = new QPushButton( tr( "Full Name..." ), container ); | 140 | btnFullName = new QPushButton( tr( "Full Name..." ), container ); |
143 | QWhatsThis::add( btnFullName, tr( "Press to enter last- middle and firstname" ) ); | 141 | QWhatsThis::add( btnFullName, tr( "Press to enter last- middle and firstname" ) ); |
144 | gl->addWidget( btnFullName, 0, 0 ); | 142 | gl->addWidget( btnFullName, 0, 0 ); |
145 | txtFullName = new ABOOK::NameLineEdit( container ); | 143 | txtFullName = new ABOOK::NameLineEdit( container ); |
146 | QWhatsThis::add( txtFullName, tr( "Enter fullname directly ! If you have a lastname with multiple words ( for instance \"de la Guerra\"), please write <lastname>,<firstnames> like this: \"de la Guerra, Carlos Pedro\"" ) ); | 144 | QWhatsThis::add( txtFullName, tr( "Enter fullname directly ! If you have a lastname with multiple words ( for instance \"de la Guerra\"), please write <lastname>,<firstnames> like this: \"de la Guerra, Carlos Pedro\"" ) ); |
147 | gl->addWidget( txtFullName, 0, 1 ); | 145 | gl->addWidget( txtFullName, 0, 1 ); |
148 | 146 | ||
149 | QLabel *l = new QLabel( tr( "Job Title" ), container ); | 147 | QLabel *l = new QLabel( tr( "Job Title" ), container ); |
150 | QWhatsThis::add( l, tr( "The jobtitle.." ) ); | 148 | QWhatsThis::add( l, tr( "The jobtitle.." ) ); |
151 | gl->addWidget( l, 1, 0 ); | 149 | gl->addWidget( l, 1, 0 ); |
152 | txtJobTitle = new QLineEdit( container ); | 150 | txtJobTitle = new QLineEdit( container ); |
153 | QWhatsThis::add( txtJobTitle, tr( "The jobtitle.." ) ); | 151 | QWhatsThis::add( txtJobTitle, tr( "The jobtitle.." ) ); |
154 | gl->addWidget( txtJobTitle, 1, 1 ); | 152 | gl->addWidget( txtJobTitle, 1, 1 ); |
155 | 153 | ||
156 | l = new QLabel( tr("Suffix"), container ); | 154 | l = new QLabel( tr("Suffix"), container ); |
157 | QWhatsThis::add( l, tr( "Something like \"jr.\".." ) ); | 155 | QWhatsThis::add( l, tr( "Something like \"jr.\".." ) ); |
158 | gl->addWidget( l, 2, 0 ); | 156 | gl->addWidget( l, 2, 0 ); |
159 | txtSuffix = new QLineEdit( container ); | 157 | txtSuffix = new QLineEdit( container ); |
160 | QWhatsThis::add( txtSuffix, tr( "Something like \"jr.\".." ) ); | 158 | QWhatsThis::add( txtSuffix, tr( "Something like \"jr.\".." ) ); |
161 | gl->addWidget( txtSuffix, 2, 1 ); | 159 | gl->addWidget( txtSuffix, 2, 1 ); |
162 | 160 | ||
163 | l = new QLabel( tr( "Organization" ), container ); | 161 | l = new QLabel( tr( "Organization" ), container ); |
164 | QWhatsThis::add( l, tr( "The working place of the contact" ) ); | 162 | QWhatsThis::add( l, tr( "The working place of the contact" ) ); |
165 | gl->addWidget( l, 3, 0 ); | 163 | gl->addWidget( l, 3, 0 ); |
166 | txtOrganization = new QLineEdit( container ); | 164 | txtOrganization = new QLineEdit( container ); |
167 | QWhatsThis::add( txtOrganization, tr( "The working place of the contact" ) ); | 165 | QWhatsThis::add( txtOrganization, tr( "The working place of the contact" ) ); |
168 | gl->addWidget( txtOrganization, 3, 1 ); | 166 | gl->addWidget( txtOrganization, 3, 1 ); |
169 | 167 | ||
170 | // Chooser 1 | 168 | // Chooser 1 |
171 | cmbChooserField1 = new QComboBox( FALSE, container ); | 169 | cmbChooserField1 = new QComboBox( false, container ); |
172 | QWhatsThis::add( cmbChooserField1, tr( "Press to select attribute to change" ) ); | 170 | QWhatsThis::add( cmbChooserField1, tr( "Press to select attribute to change" ) ); |
173 | cmbChooserField1->setMaximumWidth( 90 ); | 171 | cmbChooserField1->setMaximumWidth( 90 ); |
174 | gl->addWidget( cmbChooserField1, 4, 0 ); | 172 | gl->addWidget( cmbChooserField1, 4, 0 ); |
175 | // Textfield for chooser 1. | 173 | // Textfield for chooser 1. |
176 | // Now use Widgetstack to contain the textfield and the default-email combo ! | 174 | // Now use Widgetstack to contain the textfield and the default-email combo ! |
177 | m_widgetStack1 = new QWidgetStack( container ); | 175 | m_widgetStack1 = new QWidgetStack( container ); |
178 | txtChooserField1 = new QLineEdit( m_widgetStack1 ); | 176 | txtChooserField1 = new QLineEdit( m_widgetStack1 ); |
179 | m_widgetStack1 -> addWidget( txtChooserField1, TextField ); | 177 | m_widgetStack1 -> addWidget( txtChooserField1, TextField ); |
180 | gl->addWidget( m_widgetStack1, 4, 1 ); | 178 | gl->addWidget( m_widgetStack1, 4, 1 ); |
181 | m_widgetStack1 -> raiseWidget( TextField ); | 179 | m_widgetStack1 -> raiseWidget( TextField ); |
182 | 180 | ||
183 | // Chooser 2 | 181 | // Chooser 2 |
184 | cmbChooserField2 = new QComboBox( FALSE, container ); | 182 | cmbChooserField2 = new QComboBox( false, container ); |
185 | QWhatsThis::add( cmbChooserField2, tr( "Press to select attribute to change" ) ); | 183 | QWhatsThis::add( cmbChooserField2, tr( "Press to select attribute to change" ) ); |
186 | cmbChooserField2->setMaximumWidth( 90 ); | 184 | cmbChooserField2->setMaximumWidth( 90 ); |
187 | gl->addWidget( cmbChooserField2, 5, 0 ); | 185 | gl->addWidget( cmbChooserField2, 5, 0 ); |
188 | // Textfield for chooser 2 | 186 | // Textfield for chooser 2 |
189 | // Now use WidgetStack to contain the textfield and the default-email combo! | 187 | // Now use WidgetStack to contain the textfield and the default-email combo! |
190 | m_widgetStack2 = new QWidgetStack( container ); | 188 | m_widgetStack2 = new QWidgetStack( container ); |
191 | txtChooserField2 = new QLineEdit( m_widgetStack2 ); | 189 | txtChooserField2 = new QLineEdit( m_widgetStack2 ); |
192 | m_widgetStack2 -> addWidget( txtChooserField2, TextField ); | 190 | m_widgetStack2 -> addWidget( txtChooserField2, TextField ); |
193 | gl->addWidget( m_widgetStack2, 5, 1 ); | 191 | gl->addWidget( m_widgetStack2, 5, 1 ); |
194 | m_widgetStack2 -> raiseWidget( TextField ); | 192 | m_widgetStack2 -> raiseWidget( TextField ); |
195 | 193 | ||
196 | // Chooser 3 | 194 | // Chooser 3 |
197 | cmbChooserField3 = new QComboBox( FALSE, container ); | 195 | cmbChooserField3 = new QComboBox( false, container ); |
198 | QWhatsThis::add( cmbChooserField3, tr( "Press to select attribute to change" ) ); | 196 | QWhatsThis::add( cmbChooserField3, tr( "Press to select attribute to change" ) ); |
199 | cmbChooserField3->setMaximumWidth( 90 ); | 197 | cmbChooserField3->setMaximumWidth( 90 ); |
200 | gl->addWidget( cmbChooserField3, 6, 0 ); | 198 | gl->addWidget( cmbChooserField3, 6, 0 ); |
201 | // Textfield for chooser 2 | 199 | // Textfield for chooser 2 |
202 | // Now use WidgetStack to contain the textfield and the default-email combo! | 200 | // Now use WidgetStack to contain the textfield and the default-email combo! |
203 | m_widgetStack3 = new QWidgetStack( container ); | 201 | m_widgetStack3 = new QWidgetStack( container ); |
204 | txtChooserField3 = new QLineEdit( m_widgetStack3 ); | 202 | txtChooserField3 = new QLineEdit( m_widgetStack3 ); |
205 | m_widgetStack3 -> addWidget( txtChooserField3, TextField ); | 203 | m_widgetStack3 -> addWidget( txtChooserField3, TextField ); |
206 | gl->addWidget( m_widgetStack3, 6, 1 ); | 204 | gl->addWidget( m_widgetStack3, 6, 1 ); |
207 | m_widgetStack3 -> raiseWidget( TextField ); | 205 | m_widgetStack3 -> raiseWidget( TextField ); |
208 | 206 | ||
209 | l = new QLabel( tr( "File As" ), container ); | 207 | l = new QLabel( tr( "File As" ), container ); |
210 | QWhatsThis::add( l, tr( "Press to select how to store the name (and howto show it in the listview)" ) ); | 208 | QWhatsThis::add( l, tr( "Press to select how to store the name (and howto show it in the listview)" ) ); |
211 | gl->addWidget( l, 7, 0 ); | 209 | gl->addWidget( l, 7, 0 ); |
212 | cmbFileAs = new QComboBox( TRUE, container ); | 210 | cmbFileAs = new QComboBox( true, container ); |
213 | gl->addWidget( cmbFileAs, 7, 1 ); | 211 | gl->addWidget( cmbFileAs, 7, 1 ); |
214 | 212 | ||
215 | labCat = new QLabel( tr( "Category" ), container ); | 213 | labCat = new QLabel( tr( "Category" ), container ); |
216 | gl->addWidget( labCat, 8, 0 ); | 214 | gl->addWidget( labCat, 8, 0 ); |
217 | cmbCat = new CategorySelect( container ); | 215 | cmbCat = new CategorySelect( container ); |
218 | gl->addWidget( cmbCat, 8, 1 ); | 216 | gl->addWidget( cmbCat, 8, 1 ); |
219 | labCat->show(); | 217 | labCat->show(); |
220 | cmbCat->show(); | 218 | cmbCat->show(); |
221 | 219 | ||
222 | btnNote = new QPushButton( tr( "Notes..." ), container ); | 220 | btnNote = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Notes..." ), container ); |
223 | gl->addWidget( btnNote, 9, 1 ); | 221 | gl->addWidget( btnNote, 9, 1 ); |
224 | 222 | ||
225 | tabMain->insertTab( tabViewport, tr( "General" ) ); | 223 | tabMain->addTab( m_generalWidget, "addressbook/AddressBookSmall", tr( "General" ) ); |
226 | 224 | ||
227 | tabViewport = new QWidget ( tabMain ); | 225 | QWidget *tabViewport = new QWidget ( tabMain ); |
228 | 226 | ||
229 | vb = new QVBoxLayout( tabViewport ); | 227 | vb = new QVBoxLayout( tabViewport ); |
230 | 228 | ||
231 | svAddress = new QScrollView( tabViewport ); | 229 | svAddress = new QScrollView( tabViewport ); |
232 | vb->addWidget( svAddress, 0, 0 ); | 230 | vb->addWidget( svAddress, 0, 0 ); |
233 | svAddress->setResizePolicy( QScrollView::AutoOneFit ); | 231 | svAddress->setResizePolicy( QScrollView::AutoOneFit ); |
234 | svAddress->setFrameStyle( QFrame::NoFrame ); | 232 | svAddress->setFrameStyle( QFrame::NoFrame ); |
235 | 233 | ||
236 | container = new QWidget( svAddress->viewport() ); | 234 | container = new QWidget( svAddress->viewport() ); |
237 | svAddress->addChild( container ); | 235 | svAddress->addChild( container ); |
238 | 236 | ||
239 | gl = new QGridLayout( container, 8, 3, 2, 4 ); // row 7 QSpacerItem | 237 | gl = new QGridLayout( container, 8, 3, 2, 4 ); // row 7 QSpacerItem |
240 | 238 | ||
241 | cmbAddress = new QComboBox( FALSE, container ); | 239 | cmbAddress = new QComboBox( false, container ); |
242 | cmbAddress->insertItem( tr( "Business" ) ); | 240 | cmbAddress->insertItem( tr( "Business" ) ); |
243 | cmbAddress->insertItem( tr( "Home" ) ); | 241 | cmbAddress->insertItem( tr( "Home" ) ); |
244 | gl->addMultiCellWidget( cmbAddress, 0, 0, 0, 1 ); | 242 | gl->addMultiCellWidget( cmbAddress, 0, 0, 0, 1 ); |
245 | 243 | ||
246 | l = new QLabel( tr( "Address" ), container ); | 244 | l = new QLabel( tr( "Address" ), container ); |
247 | gl->addWidget( l, 1, 0 ); | 245 | gl->addWidget( l, 1, 0 ); |
248 | txtAddress = new QLineEdit( container ); | 246 | txtAddress = new QLineEdit( container ); |
249 | gl->addMultiCellWidget( txtAddress, 1, 1, 1, 2 ); | 247 | gl->addMultiCellWidget( txtAddress, 1, 1, 1, 2 ); |
250 | 248 | ||
251 | l = new QLabel( tr( "City" ), container ); | 249 | l = new QLabel( tr( "City" ), container ); |
252 | gl->addWidget( l, 2, 0 ); | 250 | gl->addWidget( l, 2, 0 ); |
253 | txtCity = new QLineEdit( container ); | 251 | txtCity = new QLineEdit( container ); |
254 | gl->addMultiCellWidget( txtCity, 2, 2, 1, 2 ); | 252 | gl->addMultiCellWidget( txtCity, 2, 2, 1, 2 ); |
255 | 253 | ||
256 | l = new QLabel( tr( "State" ), container ); | 254 | l = new QLabel( tr( "State" ), container ); |
257 | gl->addWidget( l, 3, 0 ); | 255 | gl->addWidget( l, 3, 0 ); |
258 | txtState = new QLineEdit( container ); | 256 | txtState = new QLineEdit( container ); |
259 | gl->addMultiCellWidget( txtState, 3, 3, 1, 2 ); | 257 | gl->addMultiCellWidget( txtState, 3, 3, 1, 2 ); |
260 | 258 | ||
261 | l = new QLabel( tr( "Zip Code" ), container ); | 259 | l = new QLabel( tr( "Zip Code" ), container ); |
262 | gl->addWidget( l, 4, 0 ); | 260 | gl->addWidget( l, 4, 0 ); |
263 | txtZip = new QLineEdit( container ); | 261 | txtZip = new QLineEdit( container ); |
264 | gl->addMultiCellWidget( txtZip, 4, 4, 1, 2 ); | 262 | gl->addMultiCellWidget( txtZip, 4, 4, 1, 2 ); |
265 | 263 | ||
266 | l = new QLabel( tr( "Country" ), container ); | 264 | l = new QLabel( tr( "Country" ), container ); |
267 | gl->addWidget( l, 5, 0 ); | 265 | gl->addWidget( l, 5, 0 ); |
268 | cmbCountry = new QComboBox( TRUE, container ); | 266 | cmbCountry = new QComboBox( true, container ); |
269 | cmbCountry->insertItem( "" ); | 267 | cmbCountry->insertItem( "" ); |
270 | cmbCountry->insertItem( tr ( "United States" ) ); | 268 | cmbCountry->insertItem( tr ( "United States" ) ); |
271 | cmbCountry->insertItem( tr ( "United Kingdom" ) ); | 269 | cmbCountry->insertItem( tr ( "United Kingdom" ) ); |
272 | cmbCountry->insertItem( tr ( "Afghanistan" ) ); | 270 | cmbCountry->insertItem( tr ( "Afghanistan" ) ); |
273 | cmbCountry->insertItem( tr ( "Albania" ) ); | 271 | cmbCountry->insertItem( tr ( "Albania" ) ); |
274 | cmbCountry->insertItem( tr ( "Algeria" ) ); | 272 | cmbCountry->insertItem( tr ( "Algeria" ) ); |
275 | cmbCountry->insertItem( tr ( "American Samoa" ) ); | 273 | cmbCountry->insertItem( tr ( "American Samoa" ) ); |
276 | cmbCountry->insertItem( tr ( "Andorra" ) ); | 274 | cmbCountry->insertItem( tr ( "Andorra" ) ); |
277 | cmbCountry->insertItem( tr ( "Angola" ) ); | 275 | cmbCountry->insertItem( tr ( "Angola" ) ); |
278 | cmbCountry->insertItem( tr ( "Anguilla" ) ); | 276 | cmbCountry->insertItem( tr ( "Anguilla" ) ); |
279 | cmbCountry->insertItem( tr ( "Antarctica" ) ); | 277 | cmbCountry->insertItem( tr ( "Antarctica" ) ); |
280 | cmbCountry->insertItem( tr ( "Argentina" ) ); | 278 | cmbCountry->insertItem( tr ( "Argentina" ) ); |
281 | cmbCountry->insertItem( tr ( "Armenia" ) ); | 279 | cmbCountry->insertItem( tr ( "Armenia" ) ); |
282 | cmbCountry->insertItem( tr ( "Aruba" ) ); | 280 | cmbCountry->insertItem( tr ( "Aruba" ) ); |
283 | cmbCountry->insertItem( tr ( "Australia" ) ); | 281 | cmbCountry->insertItem( tr ( "Australia" ) ); |
284 | cmbCountry->insertItem( tr ( "Austria" ) ); | 282 | cmbCountry->insertItem( tr ( "Austria" ) ); |
@@ -472,98 +470,98 @@ void ContactEditor::init() { | |||
472 | cmbCountry->insertItem( tr ( "Venezuela" ) ); | 470 | cmbCountry->insertItem( tr ( "Venezuela" ) ); |
473 | cmbCountry->insertItem( tr ( "Vietnam" ) ); | 471 | cmbCountry->insertItem( tr ( "Vietnam" ) ); |
474 | cmbCountry->insertItem( tr ( "Virgin Islands" ) ); | 472 | cmbCountry->insertItem( tr ( "Virgin Islands" ) ); |
475 | cmbCountry->insertItem( tr ( "Western Sahara" ) ); | 473 | cmbCountry->insertItem( tr ( "Western Sahara" ) ); |
476 | cmbCountry->insertItem( tr ( "Yemen" ) ); | 474 | cmbCountry->insertItem( tr ( "Yemen" ) ); |
477 | cmbCountry->insertItem( tr ( "Yugoslavia" ) ); | 475 | cmbCountry->insertItem( tr ( "Yugoslavia" ) ); |
478 | cmbCountry->insertItem( tr ( "Zambia" ) ); | 476 | cmbCountry->insertItem( tr ( "Zambia" ) ); |
479 | cmbCountry->insertItem( tr ( "Zimbabwe" ) ); | 477 | cmbCountry->insertItem( tr ( "Zimbabwe" ) ); |
480 | if (cmbCountry->listBox()!=0) | 478 | if (cmbCountry->listBox()!=0) |
481 | cmbCountry->listBox()->sort(); | 479 | cmbCountry->listBox()->sort(); |
482 | 480 | ||
483 | cmbCountry->setMaximumWidth( 135 ); | 481 | cmbCountry->setMaximumWidth( 135 ); |
484 | 482 | ||
485 | gl->addMultiCellWidget( cmbCountry, 5, 5, 1, 2 ); | 483 | gl->addMultiCellWidget( cmbCountry, 5, 5, 1, 2 ); |
486 | 484 | ||
487 | // Chooser 4 | 485 | // Chooser 4 |
488 | cmbChooserField4 = new QComboBox( FALSE, container ); | 486 | cmbChooserField4 = new QComboBox( false, container ); |
489 | cmbChooserField4->setMaximumWidth( 90 ); | 487 | cmbChooserField4->setMaximumWidth( 90 ); |
490 | gl->addWidget( cmbChooserField4, 6, 0 ); | 488 | gl->addWidget( cmbChooserField4, 6, 0 ); |
491 | // Textfield for chooser 2 | 489 | // Textfield for chooser 2 |
492 | // Now use WidgetStack to contain the textfield and the default-email combo! | 490 | // Now use WidgetStack to contain the textfield and the default-email combo! |
493 | m_widgetStack4 = new QWidgetStack( container ); | 491 | m_widgetStack4 = new QWidgetStack( container ); |
494 | txtChooserField4 = new QLineEdit( m_widgetStack4 ); | 492 | txtChooserField4 = new QLineEdit( m_widgetStack4 ); |
495 | m_widgetStack4 -> addWidget( txtChooserField4, TextField ); | 493 | m_widgetStack4 -> addWidget( txtChooserField4, TextField ); |
496 | gl->addMultiCellWidget( m_widgetStack4, 6, 6, 1, 2 ); | 494 | gl->addMultiCellWidget( m_widgetStack4, 6, 6, 1, 2 ); |
497 | m_widgetStack4 -> raiseWidget( TextField ); | 495 | m_widgetStack4 -> raiseWidget( TextField ); |
498 | 496 | ||
499 | QSpacerItem *space = new QSpacerItem(1,1, | 497 | QSpacerItem *space = new QSpacerItem(1,1, |
500 | QSizePolicy::Maximum, | 498 | QSizePolicy::Maximum, |
501 | QSizePolicy::MinimumExpanding ); | 499 | QSizePolicy::MinimumExpanding ); |
502 | gl->addItem( space, 7, 0 ); | 500 | gl->addItem( space, 7, 0 ); |
503 | 501 | ||
504 | tabMain->insertTab( tabViewport, tr( "Address" ) ); | 502 | tabMain->addTab( tabViewport, "home", tr( "Address" ) ); |
505 | 503 | ||
506 | tabViewport = new QWidget ( tabMain ); | 504 | tabViewport = new QWidget ( tabMain ); |
507 | 505 | ||
508 | vb = new QVBoxLayout( tabViewport ); | 506 | vb = new QVBoxLayout( tabViewport ); |
509 | 507 | ||
510 | svDetails = new QScrollView( tabViewport ); | 508 | svDetails = new QScrollView( tabViewport ); |
511 | vb->addWidget( svDetails, 0, 0 ); | 509 | vb->addWidget( svDetails, 0, 0 ); |
512 | svDetails->setResizePolicy( QScrollView::AutoOneFit ); | 510 | svDetails->setResizePolicy( QScrollView::AutoOneFit ); |
513 | svDetails->setFrameStyle( QFrame::NoFrame ); | 511 | svDetails->setFrameStyle( QFrame::NoFrame ); |
514 | 512 | ||
515 | container = new QWidget( svDetails->viewport() ); | 513 | container = new QWidget( svDetails->viewport() ); |
516 | svDetails->addChild( container ); | 514 | svDetails->addChild( container ); |
517 | 515 | ||
518 | gl = new QGridLayout( container, 1, 2, 2, 4 ); | 516 | gl = new QGridLayout( container, 1, 2, 2, 4 ); |
519 | 517 | ||
520 | int counter = 0; | 518 | int counter = 0; |
521 | 519 | ||
522 | // Birthday | 520 | // Birthday |
523 | QHBox* hBox = new QHBox( container ); | 521 | QHBox* hBox = new QHBox( container ); |
524 | l = new QLabel( tr("Birthday"), container ); | 522 | l = new QLabel( tr("Birthday"), container ); |
525 | gl->addWidget( l, counter, 0 ); | 523 | gl->addWidget( l, counter, 0 ); |
526 | 524 | ||
527 | QPopupMenu* m1 = new QPopupMenu( container ); | 525 | QPopupMenu* m1 = new QPopupMenu( container ); |
528 | birthdayPicker = new DateBookMonth( m1, 0, TRUE ); | 526 | birthdayPicker = new DateBookMonth( m1, 0, true ); |
529 | m1->insertItem( birthdayPicker ); | 527 | m1->insertItem( birthdayPicker ); |
530 | 528 | ||
531 | birthdayButton= new QToolButton( hBox, "buttonStart" ); | 529 | birthdayButton= new QToolButton( hBox, "buttonStart" ); |
532 | birthdayButton->setPopup( m1 ); | 530 | birthdayButton->setPopup( m1 ); |
533 | birthdayButton->setPopupDelay(0); | 531 | birthdayButton->setPopupDelay(0); |
534 | 532 | ||
535 | QPushButton* deleteButton = new QPushButton( QIconSet( Resource::loadPixmap( "trash" ) ), | 533 | QPushButton* deleteButton = new QPushButton( QIconSet( Resource::loadPixmap( "trash" ) ), |
536 | tr( "Delete" ), | 534 | tr( "Delete" ), |
537 | hBox, 0 ); | 535 | hBox, 0 ); |
538 | 536 | ||
539 | gl->addWidget( hBox, counter , 1 ); | 537 | gl->addWidget( hBox, counter , 1 ); |
540 | 538 | ||
541 | connect( birthdayPicker, SIGNAL( dateClicked(int,int,int) ), | 539 | connect( birthdayPicker, SIGNAL( dateClicked(int,int,int) ), |
542 | this, SLOT( slotBirthdayDateChanged(int,int,int) ) ); | 540 | this, SLOT( slotBirthdayDateChanged(int,int,int) ) ); |
543 | connect( deleteButton, SIGNAL( clicked() ), this, SLOT( slotRemoveBirthday() ) ); | 541 | connect( deleteButton, SIGNAL( clicked() ), this, SLOT( slotRemoveBirthday() ) ); |
544 | 542 | ||
545 | ++counter; | 543 | ++counter; |
546 | 544 | ||
547 | // Anniversary | 545 | // Anniversary |
548 | hBox = new QHBox( container ); | 546 | hBox = new QHBox( container ); |
549 | l = new QLabel( tr("Anniversary"), container ); | 547 | l = new QLabel( tr("Anniversary"), container ); |
550 | gl->addWidget( l, counter, 0 ); | 548 | gl->addWidget( l, counter, 0 ); |
551 | 549 | ||
552 | m1 = new QPopupMenu( container ); | 550 | m1 = new QPopupMenu( container ); |
553 | anniversaryPicker = new DateBookMonth( m1, 0, TRUE ); | 551 | anniversaryPicker = new DateBookMonth( m1, 0, true ); |
554 | m1->insertItem( anniversaryPicker ); | 552 | m1->insertItem( anniversaryPicker ); |
555 | 553 | ||
556 | anniversaryButton= new QToolButton( hBox, "buttonStart" ); | 554 | anniversaryButton= new QToolButton( hBox, "buttonStart" ); |
557 | anniversaryButton->setPopup( m1 ); | 555 | anniversaryButton->setPopup( m1 ); |
558 | anniversaryButton->setPopupDelay(0); | 556 | anniversaryButton->setPopupDelay(0); |
559 | 557 | ||
560 | deleteButton = new QPushButton( QIconSet( Resource::loadPixmap( "trash" ) ), | 558 | deleteButton = new QPushButton( QIconSet( Resource::loadPixmap( "trash" ) ), |
561 | tr( "Delete" ), | 559 | tr( "Delete" ), |
562 | hBox, 0 ); | 560 | hBox, 0 ); |
563 | gl->addWidget( hBox, counter , 1 ); | 561 | gl->addWidget( hBox, counter , 1 ); |
564 | 562 | ||
565 | connect( anniversaryPicker, SIGNAL( dateClicked(int,int,int) ), | 563 | connect( anniversaryPicker, SIGNAL( dateClicked(int,int,int) ), |
566 | this, SLOT( slotAnniversaryDateChanged(int,int,int) ) ); | 564 | this, SLOT( slotAnniversaryDateChanged(int,int,int) ) ); |
567 | connect( deleteButton, SIGNAL( clicked() ), this, SLOT( slotRemoveAnniversary() ) ); | 565 | connect( deleteButton, SIGNAL( clicked() ), this, SLOT( slotRemoveAnniversary() ) ); |
568 | 566 | ||
569 | ++counter; | 567 | ++counter; |
@@ -586,42 +584,42 @@ void ContactEditor::init() { | |||
586 | for (i = counter; it != slDynamicEntries.end(); i++, ++it ) { | 584 | for (i = counter; it != slDynamicEntries.end(); i++, ++it ) { |
587 | 585 | ||
588 | if (((*it) == "Anniversary") || | 586 | if (((*it) == "Anniversary") || |
589 | ((*it) == "Birthday")|| ((*it) == "Gender")) continue; | 587 | ((*it) == "Birthday")|| ((*it) == "Gender")) continue; |
590 | 588 | ||
591 | l = new QLabel( mapIdToStr[mapStrToID[*it]], container ); | 589 | l = new QLabel( mapIdToStr[mapStrToID[*it]], container ); |
592 | listName.append( l ); | 590 | listName.append( l ); |
593 | gl->addWidget( l, i, 0 ); | 591 | gl->addWidget( l, i, 0 ); |
594 | QLineEdit *e = new QLineEdit( container ); | 592 | QLineEdit *e = new QLineEdit( container ); |
595 | listValue.append( e ); | 593 | listValue.append( e ); |
596 | gl->addWidget( e, i, 1); | 594 | gl->addWidget( e, i, 1); |
597 | } | 595 | } |
598 | // Fill labels with names.. | 596 | // Fill labels with names.. |
599 | //loadFields(); | 597 | //loadFields(); |
600 | 598 | ||
601 | 599 | ||
602 | tabMain->insertTab( tabViewport, tr( "Details" ) ); | 600 | tabMain->addTab( tabViewport, "UtilsIcon", tr( "Details" ) ); |
603 | 601 | ||
604 | dlgNote = new QDialog( this, "Note Dialog", TRUE ); | 602 | dlgNote = new QDialog( this, "Note Dialog", true ); |
605 | dlgNote->setCaption( tr("Enter Note") ); | 603 | dlgNote->setCaption( tr("Enter Note") ); |
606 | QVBoxLayout *vbNote = new QVBoxLayout( dlgNote ); | 604 | QVBoxLayout *vbNote = new QVBoxLayout( dlgNote ); |
607 | txtNote = new QMultiLineEdit( dlgNote ); | 605 | txtNote = new QMultiLineEdit( dlgNote ); |
608 | vbNote->addWidget( txtNote ); | 606 | vbNote->addWidget( txtNote ); |
609 | connect( btnNote, SIGNAL(clicked()), this, SLOT(slotNote()) ); | 607 | connect( btnNote, SIGNAL(clicked()), this, SLOT(slotNote()) ); |
610 | 608 | ||
611 | dlgName = new QDialog( this, "Name Dialog", TRUE ); | 609 | dlgName = new QDialog( this, "Name Dialog", true ); |
612 | dlgName->setCaption( tr("Edit Name") ); | 610 | dlgName->setCaption( tr("Edit Name") ); |
613 | gl = new QGridLayout( dlgName, 5, 2, 2, 3 ); | 611 | gl = new QGridLayout( dlgName, 5, 2, 2, 3 ); |
614 | 612 | ||
615 | l = new QLabel( tr("First Name"), dlgName ); | 613 | l = new QLabel( tr("First Name"), dlgName ); |
616 | gl->addWidget( l, 0, 0 ); | 614 | gl->addWidget( l, 0, 0 ); |
617 | txtFirstName = new ABOOK::NameLineEdit( dlgName ); | 615 | txtFirstName = new ABOOK::NameLineEdit( dlgName ); |
618 | gl->addWidget( txtFirstName, 0, 1 ); | 616 | gl->addWidget( txtFirstName, 0, 1 ); |
619 | 617 | ||
620 | l = new QLabel( tr("Middle Name"), dlgName ); | 618 | l = new QLabel( tr("Middle Name"), dlgName ); |
621 | gl->addWidget( l, 1, 0 ); | 619 | gl->addWidget( l, 1, 0 ); |
622 | txtMiddleName = new ABOOK::NameLineEdit( dlgName ); | 620 | txtMiddleName = new ABOOK::NameLineEdit( dlgName ); |
623 | gl->addWidget( txtMiddleName, 1, 1 ); | 621 | gl->addWidget( txtMiddleName, 1, 1 ); |
624 | 622 | ||
625 | l = new QLabel( tr("Last Name"), dlgName ); | 623 | l = new QLabel( tr("Last Name"), dlgName ); |
626 | gl->addWidget( l, 2, 0 ); | 624 | gl->addWidget( l, 2, 0 ); |
627 | txtLastName = new ABOOK::NameLineEdit( dlgName ); | 625 | txtLastName = new ABOOK::NameLineEdit( dlgName ); |
@@ -1080,33 +1078,33 @@ void ContactEditor::slotNote() { | |||
1080 | 1078 | ||
1081 | if ( ! QPEApplication::execDialog( dlgNote ) ) { | 1079 | if ( ! QPEApplication::execDialog( dlgNote ) ) { |
1082 | txtNote->setText( ent.notes() ); | 1080 | txtNote->setText( ent.notes() ); |
1083 | } | 1081 | } |
1084 | } | 1082 | } |
1085 | 1083 | ||
1086 | void ContactEditor::slotName() { | 1084 | void ContactEditor::slotName() { |
1087 | 1085 | ||
1088 | QString tmpName; | 1086 | QString tmpName; |
1089 | 1087 | ||
1090 | txtFirstName->setText( parseName(txtFullName->text(), NAME_F) ); | 1088 | txtFirstName->setText( parseName(txtFullName->text(), NAME_F) ); |
1091 | txtMiddleName->setText( parseName(txtFullName->text(), NAME_M) ); | 1089 | txtMiddleName->setText( parseName(txtFullName->text(), NAME_M) ); |
1092 | txtLastName->setText( parseName(txtFullName->text(), NAME_L) ); | 1090 | txtLastName->setText( parseName(txtFullName->text(), NAME_L) ); |
1093 | // txtSuffix->setText( parseName(txtFullName->text(), NAME_S) ); | 1091 | // txtSuffix->setText( parseName(txtFullName->text(), NAME_S) ); |
1094 | 1092 | ||
1095 | if ( QPEApplication::execDialog( dlgName ) ) { | 1093 | if ( QPEApplication::execDialog( dlgName ) ) { |
1096 | if ( txtLastName->text().contains( ' ', TRUE ) ) | 1094 | if ( txtLastName->text().contains( ' ', true ) ) |
1097 | tmpName = txtLastName->text() + ", " + txtFirstName->text() + " " + txtMiddleName->text(); | 1095 | tmpName = txtLastName->text() + ", " + txtFirstName->text() + " " + txtMiddleName->text(); |
1098 | else | 1096 | else |
1099 | tmpName = txtFirstName->text() + " " + txtMiddleName->text() + " " + txtLastName->text(); | 1097 | tmpName = txtFirstName->text() + " " + txtMiddleName->text() + " " + txtLastName->text(); |
1100 | 1098 | ||
1101 | txtFullName->setText( tmpName.simplifyWhiteSpace() ); | 1099 | txtFullName->setText( tmpName.simplifyWhiteSpace() ); |
1102 | slotFullNameChange( txtFullName->text() ); | 1100 | slotFullNameChange( txtFullName->text() ); |
1103 | } | 1101 | } |
1104 | 1102 | ||
1105 | } | 1103 | } |
1106 | 1104 | ||
1107 | void ContactEditor::setNameFocus() { | 1105 | void ContactEditor::setNameFocus() { |
1108 | 1106 | ||
1109 | txtFullName->setFocus(); | 1107 | txtFullName->setFocus(); |
1110 | 1108 | ||
1111 | } | 1109 | } |
1112 | 1110 | ||
@@ -1125,33 +1123,33 @@ bool ContactEditor::isEmpty() { | |||
1125 | return true; | 1123 | return true; |
1126 | 1124 | ||
1127 | } | 1125 | } |
1128 | 1126 | ||
1129 | QString ContactEditor::parseName( const QString fullName, int type ) { | 1127 | QString ContactEditor::parseName( const QString fullName, int type ) { |
1130 | 1128 | ||
1131 | QString simplifiedName( fullName.simplifyWhiteSpace() ); | 1129 | QString simplifiedName( fullName.simplifyWhiteSpace() ); |
1132 | QString strFirstName; | 1130 | QString strFirstName; |
1133 | QString strMiddleName; | 1131 | QString strMiddleName; |
1134 | QString strLastName; | 1132 | QString strLastName; |
1135 | QString strTitle; | 1133 | QString strTitle; |
1136 | int commapos; | 1134 | int commapos; |
1137 | bool haveLastName = false; | 1135 | bool haveLastName = false; |
1138 | 1136 | ||
1139 | odebug << "Fullname: " << simplifiedName << oendl; | 1137 | odebug << "Fullname: " << simplifiedName << oendl; |
1140 | 1138 | ||
1141 | commapos = simplifiedName.find( ',', 0, TRUE); | 1139 | commapos = simplifiedName.find( ',', 0, true); |
1142 | if ( commapos >= 0 ) { | 1140 | if ( commapos >= 0 ) { |
1143 | odebug << " Commapos: " << commapos << oendl; | 1141 | odebug << " Commapos: " << commapos << oendl; |
1144 | 1142 | ||
1145 | // A comma (",") separates the lastname from one or | 1143 | // A comma (",") separates the lastname from one or |
1146 | // many first names. Thus, remove the lastname from the | 1144 | // many first names. Thus, remove the lastname from the |
1147 | // String and parse the firstnames. | 1145 | // String and parse the firstnames. |
1148 | 1146 | ||
1149 | strLastName = simplifiedName.left( commapos ); | 1147 | strLastName = simplifiedName.left( commapos ); |
1150 | simplifiedName= simplifiedName.mid( commapos + 1 ); | 1148 | simplifiedName= simplifiedName.mid( commapos + 1 ); |
1151 | haveLastName = true; | 1149 | haveLastName = true; |
1152 | odebug << "Fullname without ',': " << simplifiedName << oendl; | 1150 | odebug << "Fullname without ',': " << simplifiedName << oendl; |
1153 | 1151 | ||
1154 | // If we have any lastname, we should now split all first names. | 1152 | // If we have any lastname, we should now split all first names. |
1155 | // The first one will be the used as first, the rest as "middle names" | 1153 | // The first one will be the used as first, the rest as "middle names" |
1156 | 1154 | ||
1157 | QStringList allFirstNames = QStringList::split(" ", simplifiedName); | 1155 | QStringList allFirstNames = QStringList::split(" ", simplifiedName); |
@@ -1249,54 +1247,54 @@ void ContactEditor::cleanupFields() { | |||
1249 | txtCity->setText(""); | 1247 | txtCity->setText(""); |
1250 | txtState->setText(""); | 1248 | txtState->setText(""); |
1251 | txtZip->setText(""); | 1249 | txtZip->setText(""); |
1252 | QLineEdit *txtTmp = cmbCountry->lineEdit(); | 1250 | QLineEdit *txtTmp = cmbCountry->lineEdit(); |
1253 | txtTmp->setText(""); | 1251 | txtTmp->setText(""); |
1254 | txtTmp = cmbFileAs->lineEdit(); | 1252 | txtTmp = cmbFileAs->lineEdit(); |
1255 | txtTmp->setText(""); | 1253 | txtTmp->setText(""); |
1256 | 1254 | ||
1257 | } | 1255 | } |
1258 | 1256 | ||
1259 | void ContactEditor::setEntry( const Opie::OPimContact &entry ) { | 1257 | void ContactEditor::setEntry( const Opie::OPimContact &entry ) { |
1260 | 1258 | ||
1261 | initializing = true; | 1259 | initializing = true; |
1262 | 1260 | ||
1263 | // Cleanup and activate the general Page .. | 1261 | // Cleanup and activate the general Page .. |
1264 | cleanupFields(); | 1262 | cleanupFields(); |
1265 | tabMain->setCurrentPage( 0 ); | 1263 | tabMain->setCurrentTab( m_generalWidget ); |
1266 | 1264 | ||
1267 | ent = entry; | 1265 | ent = entry; |
1268 | 1266 | ||
1269 | emails = QStringList(ent.emailList()); | 1267 | emails = QStringList(ent.emailList()); |
1270 | defaultEmail = ent.defaultEmail(); | 1268 | defaultEmail = ent.defaultEmail(); |
1271 | if (defaultEmail.isEmpty()) defaultEmail = emails[0]; | 1269 | if (defaultEmail.isEmpty()) defaultEmail = emails[0]; |
1272 | odebug << "default email=" << defaultEmail << oendl; | 1270 | odebug << "default email=" << defaultEmail << oendl; |
1273 | 1271 | ||
1274 | txtFirstName->setText( ent.firstName() ); | 1272 | txtFirstName->setText( ent.firstName() ); |
1275 | txtMiddleName->setText( ent.middleName() ); | 1273 | txtMiddleName->setText( ent.middleName() ); |
1276 | txtLastName->setText( ent.lastName() ); | 1274 | txtLastName->setText( ent.lastName() ); |
1277 | txtSuffix->setText( ent.suffix() ); | 1275 | txtSuffix->setText( ent.suffix() ); |
1278 | 1276 | ||
1279 | // QString *tmpString = new QString; | 1277 | // QString *tmpString = new QString; |
1280 | // *tmpString = ent.firstName() + " " + ent.middleName() + | 1278 | // *tmpString = ent.firstName() + " " + ent.middleName() + |
1281 | // + " " + ent.lastName() + " " + ent.suffix(); | 1279 | // + " " + ent.lastName() + " " + ent.suffix(); |
1282 | //txtFullName->setText( tmpString->simplifyWhiteSpace() ); | 1280 | //txtFullName->setText( tmpString->simplifyWhiteSpace() ); |
1283 | 1281 | ||
1284 | if ( !ent.isEmpty() ){ | 1282 | if ( !ent.isEmpty() ){ |
1285 | // Lastnames with multiple words need to be protected by a comma ! | 1283 | // Lastnames with multiple words need to be protected by a comma ! |
1286 | if ( ent.lastName().contains( ' ', TRUE ) ) | 1284 | if ( ent.lastName().contains( ' ', true ) ) |
1287 | txtFullName->setText( ent.lastName() + ", " + ent.firstName() + " " + ent.middleName() ); | 1285 | txtFullName->setText( ent.lastName() + ", " + ent.firstName() + " " + ent.middleName() ); |
1288 | else | 1286 | else |
1289 | txtFullName->setText( ent.firstName() + " " + ent.middleName() + " " + ent.lastName() ); | 1287 | txtFullName->setText( ent.firstName() + " " + ent.middleName() + " " + ent.lastName() ); |
1290 | } | 1288 | } |
1291 | 1289 | ||
1292 | cmbFileAs->setEditText( ent.fileAs() ); | 1290 | cmbFileAs->setEditText( ent.fileAs() ); |
1293 | 1291 | ||
1294 | //if (hasTitle) | 1292 | //if (hasTitle) |
1295 | txtJobTitle->setText( ent.jobTitle() ); | 1293 | txtJobTitle->setText( ent.jobTitle() ); |
1296 | 1294 | ||
1297 | //if (hasCompany) | 1295 | //if (hasCompany) |
1298 | txtOrganization->setText( ent.company() ); | 1296 | txtOrganization->setText( ent.company() ); |
1299 | 1297 | ||
1300 | //if (hasNotes) | 1298 | //if (hasNotes) |
1301 | txtNote->setText( ent.notes() ); | 1299 | txtNote->setText( ent.notes() ); |
1302 | 1300 | ||
@@ -1674,44 +1672,44 @@ void parseEmailTo( const QString &strDefaultEmail, | |||
1674 | strTmp = strOtherEmail.right( strOtherEmail.length() - start ).stripWhiteSpace(); | 1672 | strTmp = strOtherEmail.right( strOtherEmail.length() - start ).stripWhiteSpace(); |
1675 | if ( foundDefault || strTmp != strDefaultEmail ) { | 1673 | if ( foundDefault || strTmp != strDefaultEmail ) { |
1676 | strBack.append( ", " ); | 1674 | strBack.append( ", " ); |
1677 | strBack.append( strTmp ); | 1675 | strBack.append( strTmp ); |
1678 | } else | 1676 | } else |
1679 | foundDefault = true; | 1677 | foundDefault = true; |
1680 | } | 1678 | } |
1681 | } | 1679 | } |
1682 | 1680 | ||
1683 | 1681 | ||
1684 | static inline bool containsAlphaNum( const QString &str ) | 1682 | static inline bool containsAlphaNum( const QString &str ) |
1685 | { | 1683 | { |
1686 | int i, | 1684 | int i, |
1687 | count = str.length(); | 1685 | count = str.length(); |
1688 | for ( i = 0; i < count; i++ ) | 1686 | for ( i = 0; i < count; i++ ) |
1689 | if ( !str[i].isSpace() ) | 1687 | if ( !str[i].isSpace() ) |
1690 | return TRUE; | 1688 | return true; |
1691 | return FALSE; | 1689 | return false; |
1692 | } | 1690 | } |
1693 | 1691 | ||
1694 | static inline bool constainsWhiteSpace( const QString &str ) | 1692 | static inline bool constainsWhiteSpace( const QString &str ) |
1695 | { | 1693 | { |
1696 | int i, | 1694 | int i, |
1697 | count = str.length(); | 1695 | count = str.length(); |
1698 | for (i = 0; i < count; i++ ) | 1696 | for (i = 0; i < count; i++ ) |
1699 | if ( str[i].isSpace() ) | 1697 | if ( str[i].isSpace() ) |
1700 | return TRUE; | 1698 | return true; |
1701 | return FALSE; | 1699 | return false; |
1702 | } | 1700 | } |
1703 | 1701 | ||
1704 | void ContactEditor::setPersonalView( bool personal ) | 1702 | void ContactEditor::setPersonalView( bool personal ) |
1705 | { | 1703 | { |
1706 | m_personalView = personal; | 1704 | m_personalView = personal; |
1707 | 1705 | ||
1708 | // Currently disbled due to the fact that | 1706 | // Currently disbled due to the fact that |
1709 | // show will not work... | 1707 | // show will not work... |
1710 | return; | 1708 | return; |
1711 | 1709 | ||
1712 | if ( personal ){ | 1710 | if ( personal ){ |
1713 | cmbCat->hide(); | 1711 | cmbCat->hide(); |
1714 | labCat->hide(); | 1712 | labCat->hide(); |
1715 | 1713 | ||
1716 | } else{ | 1714 | } else{ |
1717 | cmbCat->show(); | 1715 | cmbCat->show(); |
diff --git a/core/pim/addressbook/contacteditor.h b/core/pim/addressbook/contacteditor.h index 1b86e6f..f3cbbd4 100644 --- a/core/pim/addressbook/contacteditor.h +++ b/core/pim/addressbook/contacteditor.h | |||
@@ -10,54 +10,53 @@ | |||
10 | * | 10 | * |
11 | * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | * | 13 | * |
14 | * | 14 | * |
15 | * This is a rewrite of the abeditor.h file, modified to provide a more | 15 | * This is a rewrite of the abeditor.h file, modified to provide a more |
16 | * intuitive interface to TrollTech's original Address Book editor. This | 16 | * intuitive interface to TrollTech's original Address Book editor. This |
17 | * is made to operate exactly in interface with the exception of name. | 17 | * is made to operate exactly in interface with the exception of name. |
18 | * | 18 | * |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #ifndef CONTACTEDITOR_H | 21 | #ifndef CONTACTEDITOR_H |
22 | #define CONTACTEDITOR_H | 22 | #define CONTACTEDITOR_H |
23 | 23 | ||
24 | #include <opie2/opimcontact.h> | 24 | #include <opie2/opimcontact.h> |
25 | #include <opie2/opimcontactfields.h> | 25 | #include <opie2/opimcontactfields.h> |
26 | #include <opie2/otabwidget.h> | ||
26 | 27 | ||
27 | #include <qpe/datebookmonth.h> | 28 | #include <qpe/datebookmonth.h> |
28 | 29 | ||
29 | #include <qdialog.h> | 30 | #include <qdialog.h> |
30 | #include <qlist.h> | 31 | #include <qlist.h> |
31 | #include <qmap.h> | 32 | #include <qmap.h> |
32 | #include <qstringlist.h> | 33 | #include <qstringlist.h> |
33 | #include <qwidgetstack.h> | 34 | #include <qwidgetstack.h> |
34 | 35 | ||
35 | const int NAME_LF = 0; | 36 | const int NAME_LF = 0; |
36 | const int NAME_LFM = 1; | 37 | const int NAME_LFM = 1; |
37 | const int NAME_FL = 2; | 38 | const int NAME_FL = 2; |
38 | const int NAME_FML = 3; | 39 | const int NAME_FML = 3; |
39 | 40 | ||
40 | const int NAME_F = 4; | 41 | const int NAME_F = 4; |
41 | const int NAME_M = 5; | 42 | const int NAME_M = 5; |
42 | const int NAME_L = 6; | 43 | const int NAME_L = 6; |
43 | const int NAME_S = 7; | 44 | const int NAME_S = 7; |
44 | 45 | ||
45 | |||
46 | class QScrollView; | 46 | class QScrollView; |
47 | class QTabWidget; | ||
48 | class QMultiLineEdit; | 47 | class QMultiLineEdit; |
49 | class QLineEdit; | 48 | class QLineEdit; |
50 | class QComboBox; | 49 | class QComboBox; |
51 | class QPushButton; | 50 | class QPushButton; |
52 | class CategorySelect; | 51 | class CategorySelect; |
53 | class QLabel; | 52 | class QLabel; |
54 | 53 | ||
55 | class ContactEditor : public QDialog { | 54 | class ContactEditor : public QDialog { |
56 | Q_OBJECT | 55 | Q_OBJECT |
57 | 56 | ||
58 | public: | 57 | public: |
59 | ContactEditor(const Opie::OPimContact &entry, | 58 | ContactEditor(const Opie::OPimContact &entry, |
60 | QWidget *parent = 0, | 59 | QWidget *parent = 0, |
61 | const char *name = 0, | 60 | const char *name = 0, |
62 | WFlags fl = 0 ); | 61 | WFlags fl = 0 ); |
63 | ~ContactEditor(); | 62 | ~ContactEditor(); |
@@ -131,33 +130,34 @@ class ContactEditor : public QDialog { | |||
131 | QStringList slHomeAddress; | 130 | QStringList slHomeAddress; |
132 | QStringList slBusinessAddress; | 131 | QStringList slBusinessAddress; |
133 | QStringList slChooserNames; | 132 | QStringList slChooserNames; |
134 | QStringList slChooserValues; | 133 | QStringList slChooserValues; |
135 | QStringList emails; | 134 | QStringList emails; |
136 | QString defaultEmail; | 135 | QString defaultEmail; |
137 | 136 | ||
138 | QMultiLineEdit *txtNote; | 137 | QMultiLineEdit *txtNote; |
139 | QLabel *lblNote; | 138 | QLabel *lblNote; |
140 | 139 | ||
141 | //QLineEdit *txtTitle; | 140 | //QLineEdit *txtTitle; |
142 | QLineEdit *txtFirstName; | 141 | QLineEdit *txtFirstName; |
143 | QLineEdit *txtMiddleName; | 142 | QLineEdit *txtMiddleName; |
144 | QLineEdit *txtLastName; | 143 | QLineEdit *txtLastName; |
145 | QLineEdit *txtSuffix; | 144 | QLineEdit *txtSuffix; |
146 | 145 | ||
147 | QTabWidget *tabMain; | 146 | Opie::Ui::OTabWidget *tabMain; |
147 | QWidget *m_generalWidget; | ||
148 | QScrollView *svGeneral; | 148 | QScrollView *svGeneral; |
149 | QPushButton *btnFullName; | 149 | QPushButton *btnFullName; |
150 | QPushButton *btnNote; | 150 | QPushButton *btnNote; |
151 | QLineEdit *txtFullName; | 151 | QLineEdit *txtFullName; |
152 | QLineEdit *txtJobTitle; | 152 | QLineEdit *txtJobTitle; |
153 | QLineEdit *txtOrganization; | 153 | QLineEdit *txtOrganization; |
154 | QLineEdit *txtChooserField1; | 154 | QLineEdit *txtChooserField1; |
155 | QLineEdit *txtChooserField2; | 155 | QLineEdit *txtChooserField2; |
156 | QLineEdit *txtChooserField3; | 156 | QLineEdit *txtChooserField3; |
157 | QLineEdit *txtChooserField4; | 157 | QLineEdit *txtChooserField4; |
158 | QWidgetStack* m_widgetStack1; | 158 | QWidgetStack* m_widgetStack1; |
159 | QWidgetStack* m_widgetStack2; | 159 | QWidgetStack* m_widgetStack2; |
160 | QWidgetStack* m_widgetStack3; | 160 | QWidgetStack* m_widgetStack3; |
161 | QWidgetStack* m_widgetStack4; | 161 | QWidgetStack* m_widgetStack4; |
162 | QComboBox *cmbChooserField1; | 162 | QComboBox *cmbChooserField1; |
163 | QComboBox *cmbChooserField2; | 163 | QComboBox *cmbChooserField2; |