summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/abconfig.cpp8
-rw-r--r--core/pim/addressbook/configdlg_base.ui8
2 files changed, 8 insertions, 8 deletions
diff --git a/core/pim/addressbook/abconfig.cpp b/core/pim/addressbook/abconfig.cpp
index 2583327..9cc2668 100644
--- a/core/pim/addressbook/abconfig.cpp
+++ b/core/pim/addressbook/abconfig.cpp
@@ -1,229 +1,229 @@
1#include "abconfig.h" 1#include "abconfig.h"
2#include "version.h" 2#include "version.h"
3 3
4#include <qpe/config.h> 4#include <qpe/config.h>
5#include <qpe/recordfields.h> 5#include <qpe/recordfields.h>
6 6
7AbConfig::AbConfig( ): 7AbConfig::AbConfig( ):
8 m_useQtMail( true ), 8 m_useQtMail( false ),
9 m_useOpieMail( false ), 9 m_useOpieMail( true ),
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
20AbConfig::~AbConfig() 20AbConfig::~AbConfig()
21{ 21{
22} 22}
23 23
24bool AbConfig::useRegExp() const 24bool AbConfig::useRegExp() const
25{ 25{
26 return m_useRegExp; 26 return m_useRegExp;
27} 27}
28bool AbConfig::useWildCards() const 28bool AbConfig::useWildCards() const
29{ 29{
30 return !m_useRegExp; 30 return !m_useRegExp;
31} 31}
32bool AbConfig::useQtMail() const 32bool AbConfig::useQtMail() const
33{ 33{
34 return m_useQtMail; 34 return m_useQtMail;
35} 35}
36bool AbConfig::useOpieMail() const 36bool AbConfig::useOpieMail() const
37{ 37{
38 return m_useOpieMail; 38 return m_useOpieMail;
39} 39}
40bool AbConfig::beCaseSensitive() const 40bool AbConfig::beCaseSensitive() const
41{ 41{
42 return m_beCaseSensitive; 42 return m_beCaseSensitive;
43} 43}
44int AbConfig::fontSize() const 44int AbConfig::fontSize() const
45{ 45{
46 return m_fontSize; 46 return m_fontSize;
47} 47}
48 48
49QValueList<int> AbConfig::orderList() const 49QValueList<int> AbConfig::orderList() const
50{ 50{
51 return m_ordered; 51 return m_ordered;
52} 52}
53 53
54QMainWindow::ToolBarDock AbConfig::getToolBarPos() const 54QMainWindow::ToolBarDock AbConfig::getToolBarPos() const
55{ 55{
56 return (QMainWindow::ToolBarDock) m_barPos; 56 return (QMainWindow::ToolBarDock) m_barPos;
57} 57}
58 58
59bool AbConfig::fixedBars() const 59bool AbConfig::fixedBars() const
60{ 60{
61 return m_fixedBars; 61 return m_fixedBars;
62} 62}
63 63
64AbConfig::LPSearchMode AbConfig::letterPickerSearch() const 64AbConfig::LPSearchMode AbConfig::letterPickerSearch() const
65{ 65{
66 return ( AbConfig::LPSearchMode ) m_lpSearchMode; 66 return ( AbConfig::LPSearchMode ) m_lpSearchMode;
67} 67}
68 68
69const QString &AbConfig::category() const 69const QString &AbConfig::category() const
70{ 70{
71 return m_category; 71 return m_category;
72} 72}
73 73
74void AbConfig::setUseRegExp( bool v ) 74void AbConfig::setUseRegExp( bool v )
75{ 75{
76 m_useRegExp = v ; 76 m_useRegExp = v ;
77 m_changed = true; 77 m_changed = true;
78} 78}
79void AbConfig::setUseWildCards( bool v ) 79void AbConfig::setUseWildCards( bool v )
80{ 80{
81 m_useRegExp = !v; 81 m_useRegExp = !v;
82 m_changed = true; 82 m_changed = true;
83} 83}
84void AbConfig::setBeCaseSensitive( bool v ) 84void AbConfig::setBeCaseSensitive( bool v )
85{ 85{
86 m_beCaseSensitive = v; 86 m_beCaseSensitive = v;
87 m_changed = true; 87 m_changed = true;
88} 88}
89void AbConfig::setUseQtMail( bool v ) 89void AbConfig::setUseQtMail( bool v )
90{ 90{
91 m_useQtMail = v; 91 m_useQtMail = v;
92 m_changed = true; 92 m_changed = true;
93} 93}
94void AbConfig::setUseOpieMail( bool v ) 94void AbConfig::setUseOpieMail( bool v )
95{ 95{
96 m_useOpieMail = v; 96 m_useOpieMail = v;
97 m_changed = true; 97 m_changed = true;
98} 98}
99void AbConfig::setFontSize( int v ) 99void AbConfig::setFontSize( int v )
100{ 100{
101 m_fontSize = v; 101 m_fontSize = v;
102 m_changed = true; 102 m_changed = true;
103} 103}
104 104
105void AbConfig::setOrderList( const QValueList<int>& list ) 105void AbConfig::setOrderList( const QValueList<int>& list )
106{ 106{
107 m_ordered = list; 107 m_ordered = list;
108 m_changed = true; 108 m_changed = true;
109} 109}
110 110
111void AbConfig::setToolBarDock( const QMainWindow::ToolBarDock v ) 111void AbConfig::setToolBarDock( const QMainWindow::ToolBarDock v )
112{ 112{
113 m_barPos = v; 113 m_barPos = v;
114 m_changed = true; 114 m_changed = true;
115} 115}
116 116
117void AbConfig::setFixedBars( const bool fixed ) 117void AbConfig::setFixedBars( const bool fixed )
118{ 118{
119 m_fixedBars = fixed; 119 m_fixedBars = fixed;
120 m_changed = true; 120 m_changed = true;
121} 121}
122 122
123void AbConfig::setLetterPickerSearch( const AbConfig::LPSearchMode mode ) 123void AbConfig::setLetterPickerSearch( const AbConfig::LPSearchMode mode )
124{ 124{
125 m_lpSearchMode = mode; 125 m_lpSearchMode = mode;
126 m_changed = true; 126 m_changed = true;
127} 127}
128 128
129void AbConfig::setCategory( const QString &cat ) 129void AbConfig::setCategory( const QString &cat )
130{ 130{
131 m_category = cat; 131 m_category = cat;
132} 132}
133 133
134void AbConfig::load() 134void AbConfig::load()
135{ 135{
136 // Read Config settings 136 // Read Config settings
137 Config cfg("AddressBook"); 137 Config cfg("AddressBook");
138 138
139 cfg.setGroup( "View" ); 139 cfg.setGroup( "View" );
140 m_category = cfg.readEntry( "Category", "All" ); 140 m_category = cfg.readEntry( "Category", "All" );
141 141
142 cfg.setGroup("Font"); 142 cfg.setGroup("Font");
143 m_fontSize = cfg.readNumEntry( "fontSize", 1 ); 143 m_fontSize = cfg.readNumEntry( "fontSize", 1 );
144 144
145 cfg.setGroup("Search"); 145 cfg.setGroup("Search");
146 m_useRegExp = cfg.readBoolEntry( "useRegExp", false ); 146 m_useRegExp = cfg.readBoolEntry( "useRegExp", false );
147 m_beCaseSensitive = cfg.readBoolEntry( "caseSensitive", false ); 147 m_beCaseSensitive = cfg.readBoolEntry( "caseSensitive", false );
148 m_lpSearchMode = cfg.readNumEntry( "lpSearchMode", FileAs ); 148 m_lpSearchMode = cfg.readNumEntry( "lpSearchMode", FileAs );
149 149
150 cfg.setGroup("Mail"); 150 cfg.setGroup("Mail");
151 m_useQtMail = cfg.readBoolEntry( "useQtMail", true ); 151 m_useQtMail = cfg.readBoolEntry( "useQtMail", false );
152 m_useOpieMail=cfg.readBoolEntry( "useOpieMail" ); 152 m_useOpieMail = cfg.readBoolEntry( "useOpieMail", true );
153 153
154 cfg.setGroup("ContactOrder"); 154 cfg.setGroup("ContactOrder");
155 int ID = 0; 155 int ID = 0;
156 int i = 0; 156 int i = 0;
157 ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 ); 157 ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 );
158 while ( ID != 0 ){ 158 while ( ID != 0 ){
159 m_ordered.append( ID ); 159 m_ordered.append( ID );
160 ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 ); 160 ID = cfg.readNumEntry( "ContactID_"+QString::number(i++), 0 );
161 } 161 }
162 162
163 // If no contact order is defined, we set the default 163 // If no contact order is defined, we set the default
164 if ( m_ordered.count() == 0 ) { 164 if ( m_ordered.count() == 0 ) {
165 m_ordered.append( Qtopia::DefaultEmail ); 165 m_ordered.append( Qtopia::DefaultEmail );
166 m_ordered.append( Qtopia::HomePhone); 166 m_ordered.append( Qtopia::HomePhone);
167 m_ordered.append( Qtopia::HomeMobile); 167 m_ordered.append( Qtopia::HomeMobile);
168 m_ordered.append( Qtopia::BusinessPhone); 168 m_ordered.append( Qtopia::BusinessPhone);
169 } 169 }
170 170
171 cfg.setGroup("ToolBar"); 171 cfg.setGroup("ToolBar");
172 m_barPos = cfg.readNumEntry( "Position", QMainWindow::Top ); 172 m_barPos = cfg.readNumEntry( "Position", QMainWindow::Top );
173 m_fixedBars= cfg.readBoolEntry( "fixedBars", true ); 173 m_fixedBars= cfg.readBoolEntry( "fixedBars", true );
174 174
175 m_changed = false; 175 m_changed = false;
176} 176}
177 177
178void AbConfig::save() 178void AbConfig::save()
179{ 179{
180 if ( m_changed ){ 180 if ( m_changed ){
181 Config cfg("AddressBook"); 181 Config cfg("AddressBook");
182 cfg.setGroup( "View" ); 182 cfg.setGroup( "View" );
183 cfg.writeEntry( "Category", m_category ); 183 cfg.writeEntry( "Category", m_category );
184 184
185 cfg.setGroup("Font"); 185 cfg.setGroup("Font");
186 cfg.writeEntry("fontSize", m_fontSize); 186 cfg.writeEntry("fontSize", m_fontSize);
187 187
188 cfg.setGroup("Search"); 188 cfg.setGroup("Search");
189 cfg.writeEntry("useRegExp", m_useRegExp); 189 cfg.writeEntry("useRegExp", m_useRegExp);
190 cfg.writeEntry("caseSensitive", m_beCaseSensitive); 190 cfg.writeEntry("caseSensitive", m_beCaseSensitive);
191 cfg.writeEntry("lpSearchMode", m_lpSearchMode ); 191 cfg.writeEntry("lpSearchMode", m_lpSearchMode );
192 192
193 cfg.setGroup("Mail"); 193 cfg.setGroup("Mail");
194 cfg.writeEntry( "useQtMail", m_useQtMail ); 194 cfg.writeEntry( "useQtMail", m_useQtMail );
195 cfg.writeEntry( "useOpieMail", m_useOpieMail); 195 cfg.writeEntry( "useOpieMail", m_useOpieMail);
196 196
197 cfg.setGroup("ContactOrder"); 197 cfg.setGroup("ContactOrder");
198 cfg.clearGroup(); 198 cfg.clearGroup();
199 for ( uint i = 0; i < m_ordered.count(); i++ ){ 199 for ( uint i = 0; i < m_ordered.count(); i++ ){
200 cfg.writeEntry( "ContactID_"+QString::number(i), m_ordered[i] ); 200 cfg.writeEntry( "ContactID_"+QString::number(i), m_ordered[i] );
201 } 201 }
202 202
203 cfg.setGroup("ToolBar"); 203 cfg.setGroup("ToolBar");
204 cfg.writeEntry( "Position", m_barPos ); 204 cfg.writeEntry( "Position", m_barPos );
205 cfg.writeEntry( "fixedBars", m_fixedBars ); 205 cfg.writeEntry( "fixedBars", m_fixedBars );
206 206
207 cfg.setGroup("Version"); 207 cfg.setGroup("Version");
208 cfg.writeEntry( "AppName", APPNAME + QString(" V" ) + MAINVERSION + QString(".") + SUBVERSION + QString(".") + PATCHVERSION); 208 cfg.writeEntry( "AppName", APPNAME + QString(" V" ) + MAINVERSION + QString(".") + SUBVERSION + QString(".") + PATCHVERSION);
209 cfg.writeEntry( "Mainversion", MAINVERSION ); 209 cfg.writeEntry( "Mainversion", MAINVERSION );
210 cfg.writeEntry( "SubVersion", SUBVERSION ); 210 cfg.writeEntry( "SubVersion", SUBVERSION );
211 cfg.writeEntry( "PatchVersion", PATCHVERSION ); 211 cfg.writeEntry( "PatchVersion", PATCHVERSION );
212 212
213 } 213 }
214 214
215} 215}
216 216
217void AbConfig::operator= ( const AbConfig& cnf ) 217void AbConfig::operator= ( const AbConfig& cnf )
218{ 218{
219 m_useQtMail = cnf.m_useQtMail; 219 m_useQtMail = cnf.m_useQtMail;
220 m_useOpieMail = cnf.m_useOpieMail; 220 m_useOpieMail = cnf.m_useOpieMail;
221 m_useRegExp = cnf.m_useRegExp; 221 m_useRegExp = cnf.m_useRegExp;
222 m_beCaseSensitive = cnf.m_beCaseSensitive; 222 m_beCaseSensitive = cnf.m_beCaseSensitive;
223 m_fontSize = cnf.m_fontSize; 223 m_fontSize = cnf.m_fontSize;
224 m_ordered = cnf.m_ordered; 224 m_ordered = cnf.m_ordered;
225 m_barPos = cnf.m_barPos; 225 m_barPos = cnf.m_barPos;
226 m_fixedBars = cnf.m_fixedBars; 226 m_fixedBars = cnf.m_fixedBars;
227 m_lpSearchMode = cnf.m_lpSearchMode; 227 m_lpSearchMode = cnf.m_lpSearchMode;
228} 228}
229 229
diff --git a/core/pim/addressbook/configdlg_base.ui b/core/pim/addressbook/configdlg_base.ui
index f892d08..3f629ed 100644
--- a/core/pim/addressbook/configdlg_base.ui
+++ b/core/pim/addressbook/configdlg_base.ui
@@ -1,679 +1,679 @@
1<!DOCTYPE UI><UI> 1<!DOCTYPE UI><UI>
2<class>ConfigDlg_Base</class> 2<class>ConfigDlg_Base</class>
3<author>Stefan Eilers</author> 3<author>Stefan Eilers</author>
4<include location="global">qwhatsthis.h</include> 4<include location="global">qwhatsthis.h</include>
5<widget> 5<widget>
6 <class>QDialog</class> 6 <class>QDialog</class>
7 <property stdset="1"> 7 <property stdset="1">
8 <name>name</name> 8 <name>name</name>
9 <cstring>Configuration</cstring> 9 <cstring>Configuration</cstring>
10 </property> 10 </property>
11 <property stdset="1"> 11 <property stdset="1">
12 <name>geometry</name> 12 <name>geometry</name>
13 <rect> 13 <rect>
14 <x>0</x> 14 <x>0</x>
15 <y>0</y> 15 <y>0</y>
16 <width>284</width> 16 <width>284</width>
17 <height>327</height> 17 <height>327</height>
18 </rect> 18 </rect>
19 </property> 19 </property>
20 <property stdset="1"> 20 <property stdset="1">
21 <name>sizePolicy</name> 21 <name>sizePolicy</name>
22 <sizepolicy> 22 <sizepolicy>
23 <hsizetype>5</hsizetype> 23 <hsizetype>5</hsizetype>
24 <vsizetype>5</vsizetype> 24 <vsizetype>5</vsizetype>
25 </sizepolicy> 25 </sizepolicy>
26 </property> 26 </property>
27 <property stdset="1"> 27 <property stdset="1">
28 <name>caption</name> 28 <name>caption</name>
29 <string>Configuration</string> 29 <string>Configuration</string>
30 </property> 30 </property>
31 <property stdset="1"> 31 <property stdset="1">
32 <name>sizeGripEnabled</name> 32 <name>sizeGripEnabled</name>
33 <bool>true</bool> 33 <bool>true</bool>
34 </property> 34 </property>
35 <property> 35 <property>
36 <name>layoutMargin</name> 36 <name>layoutMargin</name>
37 </property> 37 </property>
38 <vbox> 38 <vbox>
39 <property stdset="1"> 39 <property stdset="1">
40 <name>margin</name> 40 <name>margin</name>
41 <number>1</number> 41 <number>1</number>
42 </property> 42 </property>
43 <property stdset="1"> 43 <property stdset="1">
44 <name>spacing</name> 44 <name>spacing</name>
45 <number>6</number> 45 <number>6</number>
46 </property> 46 </property>
47 <widget> 47 <widget>
48 <class>QTabWidget</class> 48 <class>QTabWidget</class>
49 <property stdset="1"> 49 <property stdset="1">
50 <name>name</name> 50 <name>name</name>
51 <cstring>configDlg_base</cstring> 51 <cstring>configDlg_base</cstring>
52 </property> 52 </property>
53 <property stdset="1"> 53 <property stdset="1">
54 <name>sizePolicy</name> 54 <name>sizePolicy</name>
55 <sizepolicy> 55 <sizepolicy>
56 <hsizetype>7</hsizetype> 56 <hsizetype>7</hsizetype>
57 <vsizetype>7</vsizetype> 57 <vsizetype>7</vsizetype>
58 </sizepolicy> 58 </sizepolicy>
59 </property> 59 </property>
60 <property> 60 <property>
61 <name>layoutMargin</name> 61 <name>layoutMargin</name>
62 </property> 62 </property>
63 <property> 63 <property>
64 <name>layoutSpacing</name> 64 <name>layoutSpacing</name>
65 </property> 65 </property>
66 <property> 66 <property>
67 <name>whatsThis</name> 67 <name>whatsThis</name>
68 <string>Click on tab to select one</string> 68 <string>Click on tab to select one</string>
69 </property> 69 </property>
70 <widget> 70 <widget>
71 <class>QWidget</class> 71 <class>QWidget</class>
72 <property stdset="1"> 72 <property stdset="1">
73 <name>name</name> 73 <name>name</name>
74 <cstring>Widget5</cstring> 74 <cstring>Widget5</cstring>
75 </property> 75 </property>
76 <attribute> 76 <attribute>
77 <name>title</name> 77 <name>title</name>
78 <string>Misc</string> 78 <string>Misc</string>
79 </attribute> 79 </attribute>
80 <vbox> 80 <vbox>
81 <property stdset="1"> 81 <property stdset="1">
82 <name>margin</name> 82 <name>margin</name>
83 <number>2</number> 83 <number>2</number>
84 </property> 84 </property>
85 <property stdset="1"> 85 <property stdset="1">
86 <name>spacing</name> 86 <name>spacing</name>
87 <number>6</number> 87 <number>6</number>
88 </property> 88 </property>
89 <widget> 89 <widget>
90 <class>QGroupBox</class> 90 <class>QGroupBox</class>
91 <property stdset="1"> 91 <property stdset="1">
92 <name>name</name> 92 <name>name</name>
93 <cstring>GroupBox2</cstring> 93 <cstring>GroupBox2</cstring>
94 </property> 94 </property>
95 <property stdset="1"> 95 <property stdset="1">
96 <name>title</name> 96 <name>title</name>
97 <string>Search Settings</string> 97 <string>Search Settings</string>
98 </property> 98 </property>
99 <vbox> 99 <vbox>
100 <property stdset="1"> 100 <property stdset="1">
101 <name>margin</name> 101 <name>margin</name>
102 <number>11</number> 102 <number>11</number>
103 </property> 103 </property>
104 <property stdset="1"> 104 <property stdset="1">
105 <name>spacing</name> 105 <name>spacing</name>
106 <number>6</number> 106 <number>6</number>
107 </property> 107 </property>
108 <widget> 108 <widget>
109 <class>QButtonGroup</class> 109 <class>QButtonGroup</class>
110 <property stdset="1"> 110 <property stdset="1">
111 <name>name</name> 111 <name>name</name>
112 <cstring>ButtonGroup1</cstring> 112 <cstring>ButtonGroup1</cstring>
113 </property> 113 </property>
114 <property stdset="1"> 114 <property stdset="1">
115 <name>title</name> 115 <name>title</name>
116 <string>Query Style</string> 116 <string>Query Style</string>
117 </property> 117 </property>
118 <property> 118 <property>
119 <name>whatsThis</name> 119 <name>whatsThis</name>
120 <string>Settings for the search query style</string> 120 <string>Settings for the search query style</string>
121 </property> 121 </property>
122 <vbox> 122 <vbox>
123 <property stdset="1"> 123 <property stdset="1">
124 <name>margin</name> 124 <name>margin</name>
125 <number>11</number> 125 <number>11</number>
126 </property> 126 </property>
127 <property stdset="1"> 127 <property stdset="1">
128 <name>spacing</name> 128 <name>spacing</name>
129 <number>6</number> 129 <number>6</number>
130 </property> 130 </property>
131 <widget> 131 <widget>
132 <class>QRadioButton</class> 132 <class>QRadioButton</class>
133 <property stdset="1"> 133 <property stdset="1">
134 <name>name</name> 134 <name>name</name>
135 <cstring>m_useRegExp</cstring> 135 <cstring>m_useRegExp</cstring>
136 </property> 136 </property>
137 <property stdset="1"> 137 <property stdset="1">
138 <name>text</name> 138 <name>text</name>
139 <string>Use Regular Expressions</string> 139 <string>Use Regular Expressions</string>
140 </property> 140 </property>
141 <property> 141 <property>
142 <name>whatsThis</name> 142 <name>whatsThis</name>
143 <string>Search widget expects regular expressions if selected</string> 143 <string>Search widget expects regular expressions if selected</string>
144 </property> 144 </property>
145 </widget> 145 </widget>
146 <widget> 146 <widget>
147 <class>QRadioButton</class> 147 <class>QRadioButton</class>
148 <property stdset="1"> 148 <property stdset="1">
149 <name>name</name> 149 <name>name</name>
150 <cstring>m_useWildCard</cstring> 150 <cstring>m_useWildCard</cstring>
151 </property> 151 </property>
152 <property stdset="1"> 152 <property stdset="1">
153 <name>text</name> 153 <name>text</name>
154 <string>Use Wildcards (*,?)</string> 154 <string>Use Wildcards (*,?)</string>
155 </property> 155 </property>
156 <property stdset="1"> 156 <property stdset="1">
157 <name>checked</name> 157 <name>checked</name>
158 <bool>true</bool> 158 <bool>true</bool>
159 </property> 159 </property>
160 <property> 160 <property>
161 <name>whatsThis</name> 161 <name>whatsThis</name>
162 <string>Search widget just expects simple wildcards</string> 162 <string>Search widget just expects simple wildcards</string>
163 </property> 163 </property>
164 </widget> 164 </widget>
165 </vbox> 165 </vbox>
166 </widget> 166 </widget>
167 <widget> 167 <widget>
168 <class>QCheckBox</class> 168 <class>QCheckBox</class>
169 <property stdset="1"> 169 <property stdset="1">
170 <name>name</name> 170 <name>name</name>
171 <cstring>m_useCaseSensitive</cstring> 171 <cstring>m_useCaseSensitive</cstring>
172 </property> 172 </property>
173 <property stdset="1"> 173 <property stdset="1">
174 <name>text</name> 174 <name>text</name>
175 <string>Case Sensitive</string> 175 <string>Case Sensitive</string>
176 </property> 176 </property>
177 <property> 177 <property>
178 <name>whatsThis</name> 178 <name>whatsThis</name>
179 <string>If selected, search differs between upper and lower chars</string> 179 <string>If selected, search differs between upper and lower chars</string>
180 </property> 180 </property>
181 </widget> 181 </widget>
182 </vbox> 182 </vbox>
183 </widget> 183 </widget>
184 <widget> 184 <widget>
185 <class>QButtonGroup</class> 185 <class>QButtonGroup</class>
186 <property stdset="1"> 186 <property stdset="1">
187 <name>name</name> 187 <name>name</name>
188 <cstring>ButtonGroup3</cstring> 188 <cstring>ButtonGroup3</cstring>
189 </property> 189 </property>
190 <property stdset="1"> 190 <property stdset="1">
191 <name>title</name> 191 <name>title</name>
192 <string>Font</string> 192 <string>Font</string>
193 </property> 193 </property>
194 <property> 194 <property>
195 <name>whatsThis</name> 195 <name>whatsThis</name>
196 <string></string> 196 <string></string>
197 </property> 197 </property>
198 <hbox> 198 <hbox>
199 <property stdset="1"> 199 <property stdset="1">
200 <name>margin</name> 200 <name>margin</name>
201 <number>11</number> 201 <number>11</number>
202 </property> 202 </property>
203 <property stdset="1"> 203 <property stdset="1">
204 <name>spacing</name> 204 <name>spacing</name>
205 <number>6</number> 205 <number>6</number>
206 </property> 206 </property>
207 <widget> 207 <widget>
208 <class>QRadioButton</class> 208 <class>QRadioButton</class>
209 <property stdset="1"> 209 <property stdset="1">
210 <name>name</name> 210 <name>name</name>
211 <cstring>m_smallFont</cstring> 211 <cstring>m_smallFont</cstring>
212 </property> 212 </property>
213 <property stdset="1"> 213 <property stdset="1">
214 <name>text</name> 214 <name>text</name>
215 <string>Small</string> 215 <string>Small</string>
216 </property> 216 </property>
217 <property> 217 <property>
218 <name>whatsThis</name> 218 <name>whatsThis</name>
219 <string>Font size for list- and card view</string> 219 <string>Font size for list- and card view</string>
220 </property> 220 </property>
221 </widget> 221 </widget>
222 <widget> 222 <widget>
223 <class>QRadioButton</class> 223 <class>QRadioButton</class>
224 <property stdset="1"> 224 <property stdset="1">
225 <name>name</name> 225 <name>name</name>
226 <cstring>m_normalFont</cstring> 226 <cstring>m_normalFont</cstring>
227 </property> 227 </property>
228 <property stdset="1"> 228 <property stdset="1">
229 <name>text</name> 229 <name>text</name>
230 <string>Normal</string> 230 <string>Normal</string>
231 </property> 231 </property>
232 <property stdset="1"> 232 <property stdset="1">
233 <name>checked</name> 233 <name>checked</name>
234 <bool>true</bool> 234 <bool>true</bool>
235 </property> 235 </property>
236 <property> 236 <property>
237 <name>whatsThis</name> 237 <name>whatsThis</name>
238 <string>Font size for list- and card view</string> 238 <string>Font size for list- and card view</string>
239 </property> 239 </property>
240 </widget> 240 </widget>
241 <widget> 241 <widget>
242 <class>QRadioButton</class> 242 <class>QRadioButton</class>
243 <property stdset="1"> 243 <property stdset="1">
244 <name>name</name> 244 <name>name</name>
245 <cstring>m_largeFont</cstring> 245 <cstring>m_largeFont</cstring>
246 </property> 246 </property>
247 <property stdset="1"> 247 <property stdset="1">
248 <name>text</name> 248 <name>text</name>
249 <string>Large</string> 249 <string>Large</string>
250 </property> 250 </property>
251 <property> 251 <property>
252 <name>whatsThis</name> 252 <name>whatsThis</name>
253 <string>Font size for list- and card view</string> 253 <string>Font size for list- and card view</string>
254 </property> 254 </property>
255 </widget> 255 </widget>
256 </hbox> 256 </hbox>
257 </widget> 257 </widget>
258 <widget> 258 <widget>
259 <class>QButtonGroup</class> 259 <class>QButtonGroup</class>
260 <property stdset="1"> 260 <property stdset="1">
261 <name>name</name> 261 <name>name</name>
262 <cstring>ButtonGroup4</cstring> 262 <cstring>ButtonGroup4</cstring>
263 </property> 263 </property>
264 <property stdset="1"> 264 <property stdset="1">
265 <name>title</name> 265 <name>title</name>
266 <string>Tool-/Menubar</string> 266 <string>Tool-/Menubar</string>
267 </property> 267 </property>
268 <hbox> 268 <hbox>
269 <property stdset="1"> 269 <property stdset="1">
270 <name>margin</name> 270 <name>margin</name>
271 <number>11</number> 271 <number>11</number>
272 </property> 272 </property>
273 <property stdset="1"> 273 <property stdset="1">
274 <name>spacing</name> 274 <name>spacing</name>
275 <number>6</number> 275 <number>6</number>
276 </property> 276 </property>
277 <widget> 277 <widget>
278 <class>QRadioButton</class> 278 <class>QRadioButton</class>
279 <property stdset="1"> 279 <property stdset="1">
280 <name>name</name> 280 <name>name</name>
281 <cstring>m_fixedBars</cstring> 281 <cstring>m_fixedBars</cstring>
282 </property> 282 </property>
283 <property stdset="1"> 283 <property stdset="1">
284 <name>text</name> 284 <name>text</name>
285 <string>Fixed</string> 285 <string>Fixed</string>
286 </property> 286 </property>
287 <property stdset="1"> 287 <property stdset="1">
288 <name>checked</name> 288 <name>checked</name>
289 <bool>true</bool> 289 <bool>true</bool>
290 </property> 290 </property>
291 <property> 291 <property>
292 <name>toolTip</name> 292 <name>toolTip</name>
293 <string></string> 293 <string></string>
294 </property> 294 </property>
295 <property> 295 <property>
296 <name>whatsThis</name> 296 <name>whatsThis</name>
297 <string>Switch to fixed menu-/toolbars after restarting application !</string> 297 <string>Switch to fixed menu-/toolbars after restarting application !</string>
298 </property> 298 </property>
299 </widget> 299 </widget>
300 <widget> 300 <widget>
301 <class>QRadioButton</class> 301 <class>QRadioButton</class>
302 <property stdset="1"> 302 <property stdset="1">
303 <name>name</name> 303 <name>name</name>
304 <cstring>m_moveBars</cstring> 304 <cstring>m_moveBars</cstring>
305 </property> 305 </property>
306 <property stdset="1"> 306 <property stdset="1">
307 <name>text</name> 307 <name>text</name>
308 <string>Moveable</string> 308 <string>Moveable</string>
309 </property> 309 </property>
310 <property> 310 <property>
311 <name>whatsThis</name> 311 <name>whatsThis</name>
312 <string>Switch to moveable menu-/toolbars after restarting application !</string> 312 <string>Switch to moveable menu-/toolbars after restarting application !</string>
313 </property> 313 </property>
314 </widget> 314 </widget>
315 </hbox> 315 </hbox>
316 </widget> 316 </widget>
317 <spacer> 317 <spacer>
318 <property> 318 <property>
319 <name>name</name> 319 <name>name</name>
320 <cstring>Spacer3</cstring> 320 <cstring>Spacer3</cstring>
321 </property> 321 </property>
322 <property stdset="1"> 322 <property stdset="1">
323 <name>orientation</name> 323 <name>orientation</name>
324 <enum>Vertical</enum> 324 <enum>Vertical</enum>
325 </property> 325 </property>
326 <property stdset="1"> 326 <property stdset="1">
327 <name>sizeType</name> 327 <name>sizeType</name>
328 <enum>Expanding</enum> 328 <enum>Expanding</enum>
329 </property> 329 </property>
330 <property> 330 <property>
331 <name>sizeHint</name> 331 <name>sizeHint</name>
332 <size> 332 <size>
333 <width>20</width> 333 <width>20</width>
334 <height>20</height> 334 <height>20</height>
335 </size> 335 </size>
336 </property> 336 </property>
337 </spacer> 337 </spacer>
338 </vbox> 338 </vbox>
339 </widget> 339 </widget>
340 <widget> 340 <widget>
341 <class>QWidget</class> 341 <class>QWidget</class>
342 <property stdset="1"> 342 <property stdset="1">
343 <name>name</name> 343 <name>name</name>
344 <cstring>tab</cstring> 344 <cstring>tab</cstring>
345 </property> 345 </property>
346 <attribute> 346 <attribute>
347 <name>title</name> 347 <name>title</name>
348 <string>Mail</string> 348 <string>Mail</string>
349 </attribute> 349 </attribute>
350 <vbox> 350 <vbox>
351 <property stdset="1"> 351 <property stdset="1">
352 <name>margin</name> 352 <name>margin</name>
353 <number>5</number> 353 <number>5</number>
354 </property> 354 </property>
355 <property stdset="1"> 355 <property stdset="1">
356 <name>spacing</name> 356 <name>spacing</name>
357 <number>6</number> 357 <number>6</number>
358 </property> 358 </property>
359 <widget> 359 <widget>
360 <class>QButtonGroup</class> 360 <class>QButtonGroup</class>
361 <property stdset="1"> 361 <property stdset="1">
362 <name>name</name> 362 <name>name</name>
363 <cstring>ButtonGroup2</cstring> 363 <cstring>ButtonGroup2</cstring>
364 </property> 364 </property>
365 <property stdset="1"> 365 <property stdset="1">
366 <name>title</name> 366 <name>title</name>
367 <string>Mail</string> 367 <string>Mail</string>
368 </property> 368 </property>
369 <property> 369 <property>
370 <name>whatsThis</name> 370 <name>whatsThis</name>
371 <string>Fontsettings for list and card view</string> 371 <string>Fontsettings for list and card view</string>
372 </property> 372 </property>
373 <vbox> 373 <vbox>
374 <property stdset="1"> 374 <property stdset="1">
375 <name>margin</name> 375 <name>margin</name>
376 <number>11</number> 376 <number>11</number>
377 </property> 377 </property>
378 <property stdset="1"> 378 <property stdset="1">
379 <name>spacing</name> 379 <name>spacing</name>
380 <number>6</number> 380 <number>6</number>
381 </property> 381 </property>
382 <widget> 382 <widget>
383 <class>QRadioButton</class> 383 <class>QRadioButton</class>
384 <property stdset="1"> 384 <property stdset="1">
385 <name>name</name> 385 <name>name</name>
386 <cstring>m_useQtMail</cstring> 386 <cstring>m_useQtMail</cstring>
387 </property> 387 </property>
388 <property stdset="1"> 388 <property stdset="1">
389 <name>text</name> 389 <name>text</name>
390 <string>Prefer QT-Mail </string> 390 <string>Prefer QT-Mail </string>
391 </property> 391 </property>
392 <property stdset="1">
393 <name>checked</name>
394 <bool>true</bool>
395 </property>
396 <property> 392 <property>
397 <name>whatsThis</name> 393 <name>whatsThis</name>
398 <string>Use Sharp's mail application if available</string> 394 <string>Use Sharp's mail application if available</string>
399 </property> 395 </property>
400 </widget> 396 </widget>
401 <widget> 397 <widget>
402 <class>QRadioButton</class> 398 <class>QRadioButton</class>
403 <property stdset="1"> 399 <property stdset="1">
404 <name>name</name> 400 <name>name</name>
405 <cstring>m_useOpieMail</cstring> 401 <cstring>m_useOpieMail</cstring>
406 </property> 402 </property>
407 <property stdset="1"> 403 <property stdset="1">
408 <name>text</name> 404 <name>text</name>
409 <string>Prefer Opie-Mail</string> 405 <string>Prefer Opie-Mail</string>
410 </property> 406 </property>
407 <property stdset="1">
408 <name>checked</name>
409 <bool>true</bool>
410 </property>
411 <property> 411 <property>
412 <name>whatsThis</name> 412 <name>whatsThis</name>
413 <string>Use OPIE mail if installed</string> 413 <string>Use OPIE mail if installed</string>
414 </property> 414 </property>
415 </widget> 415 </widget>
416 <widget> 416 <widget>
417 <class>QLabel</class> 417 <class>QLabel</class>
418 <property stdset="1"> 418 <property stdset="1">
419 <name>name</name> 419 <name>name</name>
420 <cstring>TextLabel1</cstring> 420 <cstring>TextLabel1</cstring>
421 </property> 421 </property>
422 <property stdset="1"> 422 <property stdset="1">
423 <name>text</name> 423 <name>text</name>
424 <string>Notice: QT-Mail is just 424 <string>Notice: QT-Mail is just
425provided in the SHARP 425provided in the SHARP
426default ROM. Opie-Mail 426default ROM. Opie-Mail
427is provided free !</string> 427is provided free !</string>
428 </property> 428 </property>
429 </widget> 429 </widget>
430 </vbox> 430 </vbox>
431 </widget> 431 </widget>
432 <spacer> 432 <spacer>
433 <property> 433 <property>
434 <name>name</name> 434 <name>name</name>
435 <cstring>Spacer2</cstring> 435 <cstring>Spacer2</cstring>
436 </property> 436 </property>
437 <property stdset="1"> 437 <property stdset="1">
438 <name>orientation</name> 438 <name>orientation</name>
439 <enum>Vertical</enum> 439 <enum>Vertical</enum>
440 </property> 440 </property>
441 <property stdset="1"> 441 <property stdset="1">
442 <name>sizeType</name> 442 <name>sizeType</name>
443 <enum>Expanding</enum> 443 <enum>Expanding</enum>
444 </property> 444 </property>
445 <property> 445 <property>
446 <name>sizeHint</name> 446 <name>sizeHint</name>
447 <size> 447 <size>
448 <width>20</width> 448 <width>20</width>
449 <height>20</height> 449 <height>20</height>
450 </size> 450 </size>
451 </property> 451 </property>
452 </spacer> 452 </spacer>
453 </vbox> 453 </vbox>
454 </widget> 454 </widget>
455 <widget> 455 <widget>
456 <class>QWidget</class> 456 <class>QWidget</class>
457 <property stdset="1"> 457 <property stdset="1">
458 <name>name</name> 458 <name>name</name>
459 <cstring>tab</cstring> 459 <cstring>tab</cstring>
460 </property> 460 </property>
461 <attribute> 461 <attribute>
462 <name>title</name> 462 <name>title</name>
463 <string>Order</string> 463 <string>Order</string>
464 </attribute> 464 </attribute>
465 <vbox> 465 <vbox>
466 <property stdset="1"> 466 <property stdset="1">
467 <name>margin</name> 467 <name>margin</name>
468 <number>2</number> 468 <number>2</number>
469 </property> 469 </property>
470 <property stdset="1"> 470 <property stdset="1">
471 <name>spacing</name> 471 <name>spacing</name>
472 <number>2</number> 472 <number>2</number>
473 </property> 473 </property>
474 <widget> 474 <widget>
475 <class>QGroupBox</class> 475 <class>QGroupBox</class>
476 <property stdset="1"> 476 <property stdset="1">
477 <name>name</name> 477 <name>name</name>
478 <cstring>GroupBox9</cstring> 478 <cstring>GroupBox9</cstring>
479 </property> 479 </property>
480 <property stdset="1"> 480 <property stdset="1">
481 <name>title</name> 481 <name>title</name>
482 <string>Select Contact Order:</string> 482 <string>Select Contact Order:</string>
483 </property> 483 </property>
484 <grid> 484 <grid>
485 <property stdset="1"> 485 <property stdset="1">
486 <name>margin</name> 486 <name>margin</name>
487 <number>11</number> 487 <number>11</number>
488 </property> 488 </property>
489 <property stdset="1"> 489 <property stdset="1">
490 <name>spacing</name> 490 <name>spacing</name>
491 <number>6</number> 491 <number>6</number>
492 </property> 492 </property>
493 <widget row="0" column="2" > 493 <widget row="0" column="2" >
494 <class>QPushButton</class> 494 <class>QPushButton</class>
495 <property stdset="1"> 495 <property stdset="1">
496 <name>name</name> 496 <name>name</name>
497 <cstring>m_upButton</cstring> 497 <cstring>m_upButton</cstring>
498 </property> 498 </property>
499 <property stdset="1"> 499 <property stdset="1">
500 <name>sizePolicy</name> 500 <name>sizePolicy</name>
501 <sizepolicy> 501 <sizepolicy>
502 <hsizetype>1</hsizetype> 502 <hsizetype>1</hsizetype>
503 <vsizetype>0</vsizetype> 503 <vsizetype>0</vsizetype>
504 </sizepolicy> 504 </sizepolicy>
505 </property> 505 </property>
506 <property stdset="1"> 506 <property stdset="1">
507 <name>text</name> 507 <name>text</name>
508 <string>Up</string> 508 <string>Up</string>
509 </property> 509 </property>
510 <property stdset="1"> 510 <property stdset="1">
511 <name>autoRepeat</name> 511 <name>autoRepeat</name>
512 <bool>true</bool> 512 <bool>true</bool>
513 </property> 513 </property>
514 <property> 514 <property>
515 <name>whatsThis</name> 515 <name>whatsThis</name>
516 <string>Move selected attribute one line up</string> 516 <string>Move selected attribute one line up</string>
517 </property> 517 </property>
518 </widget> 518 </widget>
519 <widget row="1" column="2" > 519 <widget row="1" column="2" >
520 <class>QPushButton</class> 520 <class>QPushButton</class>
521 <property stdset="1"> 521 <property stdset="1">
522 <name>name</name> 522 <name>name</name>
523 <cstring>m_downButton</cstring> 523 <cstring>m_downButton</cstring>
524 </property> 524 </property>
525 <property stdset="1"> 525 <property stdset="1">
526 <name>sizePolicy</name> 526 <name>sizePolicy</name>
527 <sizepolicy> 527 <sizepolicy>
528 <hsizetype>1</hsizetype> 528 <hsizetype>1</hsizetype>
529 <vsizetype>0</vsizetype> 529 <vsizetype>0</vsizetype>
530 </sizepolicy> 530 </sizepolicy>
531 </property> 531 </property>
532 <property stdset="1"> 532 <property stdset="1">
533 <name>text</name> 533 <name>text</name>
534 <string>Down</string> 534 <string>Down</string>
535 </property> 535 </property>
536 <property stdset="1"> 536 <property stdset="1">
537 <name>autoRepeat</name> 537 <name>autoRepeat</name>
538 <bool>true</bool> 538 <bool>true</bool>
539 </property> 539 </property>
540 <property> 540 <property>
541 <name>whatsThis</name> 541 <name>whatsThis</name>
542 <string>Move selected attribute one line down</string> 542 <string>Move selected attribute one line down</string>
543 </property> 543 </property>
544 </widget> 544 </widget>
545 <widget row="4" column="0" rowspan="1" colspan="2" > 545 <widget row="4" column="0" rowspan="1" colspan="2" >
546 <class>QListBox</class> 546 <class>QListBox</class>
547 <property stdset="1"> 547 <property stdset="1">
548 <name>name</name> 548 <name>name</name>
549 <cstring>allFieldListBox</cstring> 549 <cstring>allFieldListBox</cstring>
550 </property> 550 </property>
551 <property stdset="1"> 551 <property stdset="1">
552 <name>sizePolicy</name> 552 <name>sizePolicy</name>
553 <sizepolicy> 553 <sizepolicy>
554 <hsizetype>7</hsizetype> 554 <hsizetype>7</hsizetype>
555 <vsizetype>7</vsizetype> 555 <vsizetype>7</vsizetype>
556 </sizepolicy> 556 </sizepolicy>
557 </property> 557 </property>
558 <property> 558 <property>
559 <name>whatsThis</name> 559 <name>whatsThis</name>
560 <string>List of all available attributes</string> 560 <string>List of all available attributes</string>
561 </property> 561 </property>
562 </widget> 562 </widget>
563 <widget row="3" column="0" > 563 <widget row="3" column="0" >
564 <class>QPushButton</class> 564 <class>QPushButton</class>
565 <property stdset="1"> 565 <property stdset="1">
566 <name>name</name> 566 <name>name</name>
567 <cstring>m_addButton</cstring> 567 <cstring>m_addButton</cstring>
568 </property> 568 </property>
569 <property stdset="1"> 569 <property stdset="1">
570 <name>sizePolicy</name> 570 <name>sizePolicy</name>
571 <sizepolicy> 571 <sizepolicy>
572 <hsizetype>1</hsizetype> 572 <hsizetype>1</hsizetype>
573 <vsizetype>0</vsizetype> 573 <vsizetype>0</vsizetype>
574 </sizepolicy> 574 </sizepolicy>
575 </property> 575 </property>
576 <property stdset="1"> 576 <property stdset="1">
577 <name>text</name> 577 <name>text</name>
578 <string>Add</string> 578 <string>Add</string>
579 </property> 579 </property>
580 <property> 580 <property>
581 <name>whatsThis</name> 581 <name>whatsThis</name>
582 <string>Add selected attribute from list below to the upper list</string> 582 <string>Add selected attribute from list below to the upper list</string>
583 </property> 583 </property>
584 </widget> 584 </widget>
585 <widget row="3" column="1" > 585 <widget row="3" column="1" >
586 <class>QPushButton</class> 586 <class>QPushButton</class>
587 <property stdset="1"> 587 <property stdset="1">
588 <name>name</name> 588 <name>name</name>
589 <cstring>m_removeButton</cstring> 589 <cstring>m_removeButton</cstring>
590 </property> 590 </property>
591 <property stdset="1"> 591 <property stdset="1">
592 <name>sizePolicy</name> 592 <name>sizePolicy</name>
593 <sizepolicy> 593 <sizepolicy>
594 <hsizetype>1</hsizetype> 594 <hsizetype>1</hsizetype>
595 <vsizetype>0</vsizetype> 595 <vsizetype>0</vsizetype>
596 </sizepolicy> 596 </sizepolicy>
597 </property> 597 </property>
598 <property stdset="1"> 598 <property stdset="1">
599 <name>text</name> 599 <name>text</name>
600 <string>Remove</string> 600 <string>Remove</string>
601 </property> 601 </property>
602 <property> 602 <property>
603 <name>whatsThis</name> 603 <name>whatsThis</name>
604 <string>Remove the selected attribute from the upper list</string> 604 <string>Remove the selected attribute from the upper list</string>
605 </property> 605 </property>
606 </widget> 606 </widget>
607 <spacer row="2" column="2" > 607 <spacer row="2" column="2" >
608 <property> 608 <property>
609 <name>name</name> 609 <name>name</name>
610 <cstring>Spacer23</cstring> 610 <cstring>Spacer23</cstring>
611 </property> 611 </property>
612 <property stdset="1"> 612 <property stdset="1">
613 <name>orientation</name> 613 <name>orientation</name>
614 <enum>Vertical</enum> 614 <enum>Vertical</enum>
615 </property> 615 </property>
616 <property stdset="1"> 616 <property stdset="1">
617 <name>sizeType</name> 617 <name>sizeType</name>
618 <enum>Expanding</enum> 618 <enum>Expanding</enum>
619 </property> 619 </property>
620 <property> 620 <property>
621 <name>sizeHint</name> 621 <name>sizeHint</name>
622 <size> 622 <size>
623 <width>20</width> 623 <width>20</width>
624 <height>20</height> 624 <height>20</height>
625 </size> 625 </size>
626 </property> 626 </property>
627 </spacer> 627 </spacer>
628 <spacer row="3" column="2" rowspan="2" colspan="1" > 628 <spacer row="3" column="2" rowspan="2" colspan="1" >
629 <property> 629 <property>
630 <name>name</name> 630 <name>name</name>
631 <cstring>Spacer2_2</cstring> 631 <cstring>Spacer2_2</cstring>
632 </property> 632 </property>
633 <property stdset="1"> 633 <property stdset="1">
634 <name>orientation</name> 634 <name>orientation</name>
635 <enum>Vertical</enum> 635 <enum>Vertical</enum>
636 </property> 636 </property>
637 <property stdset="1"> 637 <property stdset="1">
638 <name>sizeType</name> 638 <name>sizeType</name>
639 <enum>Expanding</enum> 639 <enum>Expanding</enum>
640 </property> 640 </property>
641 <property> 641 <property>
642 <name>sizeHint</name> 642 <name>sizeHint</name>
643 <size> 643 <size>
644 <width>20</width> 644 <width>20</width>
645 <height>20</height> 645 <height>20</height>
646 </size> 646 </size>
647 </property> 647 </property>
648 </spacer> 648 </spacer>
649 <widget row="0" column="0" rowspan="3" colspan="2" > 649 <widget row="0" column="0" rowspan="3" colspan="2" >
650 <class>QListBox</class> 650 <class>QListBox</class>
651 <property stdset="1"> 651 <property stdset="1">
652 <name>name</name> 652 <name>name</name>
653 <cstring>fieldListBox</cstring> 653 <cstring>fieldListBox</cstring>
654 </property> 654 </property>
655 <property stdset="1"> 655 <property stdset="1">
656 <name>sizePolicy</name> 656 <name>sizePolicy</name>
657 <sizepolicy> 657 <sizepolicy>
658 <hsizetype>7</hsizetype> 658 <hsizetype>7</hsizetype>
659 <vsizetype>7</vsizetype> 659 <vsizetype>7</vsizetype>
660 </sizepolicy> 660 </sizepolicy>
661 </property> 661 </property>
662 <property> 662 <property>
663 <name>whatsThis</name> 663 <name>whatsThis</name>
664 <string>Order (up -&gt; down) defines the primary contact shown in the second column of the list view</string> 664 <string>Order (up -&gt; down) defines the primary contact shown in the second column of the list view</string>
665 </property> 665 </property>
666 </widget> 666 </widget>
667 </grid> 667 </grid>
668 </widget> 668 </widget>
669 </vbox> 669 </vbox>
670 </widget> 670 </widget>
671 </widget> 671 </widget>
672 </vbox> 672 </vbox>
673</widget> 673</widget>
674<tabstops> 674<tabstops>
675 <tabstop>configDlg_base</tabstop> 675 <tabstop>configDlg_base</tabstop>
676 <tabstop>m_useQtMail</tabstop> 676 <tabstop>m_useQtMail</tabstop>
677 <tabstop>m_useOpieMail</tabstop> 677 <tabstop>m_useOpieMail</tabstop>
678</tabstops> 678</tabstops>
679</UI> 679</UI>