-rw-r--r-- | core/pim/addressbook/ablabel.cpp | 14 | ||||
-rw-r--r-- | core/pim/addressbook/abtable.cpp | 46 | ||||
-rw-r--r-- | core/pim/addressbook/abview.cpp | 52 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 58 | ||||
-rw-r--r-- | core/pim/addressbook/configdlg.cpp | 10 | ||||
-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 58 | ||||
-rw-r--r-- | core/pim/addressbook/picker.cpp | 2 |
7 files changed, 120 insertions, 120 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp index b81a3b9..6b8e4dd 100644 --- a/core/pim/addressbook/ablabel.cpp +++ b/core/pim/addressbook/ablabel.cpp | |||
@@ -82,57 +82,57 @@ bool AbLabel::selectContact( int UID ) | |||
82 | 82 | ||
83 | 83 | ||
84 | 84 | ||
85 | void AbLabel::sync() | 85 | void AbLabel::sync() |
86 | { | 86 | { |
87 | QString text = (*m_itCurContact).toRichText(); | 87 | QString text = (*m_itCurContact).toRichText(); |
88 | setText( text ); | 88 | setText( text ); |
89 | } | 89 | } |
90 | 90 | ||
91 | void AbLabel::keyPressEvent( QKeyEvent *e ) | 91 | void AbLabel::keyPressEvent( QKeyEvent *e ) |
92 | { | 92 | { |
93 | 93 | ||
94 | // Commonly handled keys | 94 | // Commonly handled keys |
95 | if ( !m_empty ){ | 95 | if ( !m_empty ){ |
96 | switch( e->key() ) { | 96 | switch( e->key() ) { |
97 | case Qt::Key_Left: | 97 | case Qt::Key_Left: |
98 | owarn << "Left.." << oendl; | 98 | odebug << "Left.." << oendl; |
99 | case Qt::Key_Right: | 99 | case Qt::Key_Right: |
100 | owarn << "Right.." << oendl; | 100 | odebug << "Right.." << oendl; |
101 | case Qt::Key_F33: | 101 | case Qt::Key_F33: |
102 | owarn << "OK.." << oendl; | 102 | odebug << "OK.." << oendl; |
103 | emit signalOkPressed(); | 103 | emit signalOkPressed(); |
104 | break; | 104 | break; |
105 | case Qt::Key_Up: | 105 | case Qt::Key_Up: |
106 | owarn << "Up.." << oendl; | 106 | odebug << "Up.." << oendl; |
107 | if ( ( visibleHeight() < contentsHeight() ) && | 107 | if ( ( visibleHeight() < contentsHeight() ) && |
108 | ( verticalScrollBar()->value() > verticalScrollBar()->minValue() ) ) | 108 | ( verticalScrollBar()->value() > verticalScrollBar()->minValue() ) ) |
109 | scrollBy( 0, -(visibleHeight()-20) ); | 109 | scrollBy( 0, -(visibleHeight()-20) ); |
110 | else { | 110 | else { |
111 | --m_itCurContact; | 111 | --m_itCurContact; |
112 | if ( *m_itCurContact != Opie::OPimContact() ) | 112 | if ( *m_itCurContact != Opie::OPimContact() ) |
113 | sync(); | 113 | sync(); |
114 | else | 114 | else |
115 | m_itCurContact = m_viewList.end(); | 115 | m_itCurContact = m_viewList.end(); |
116 | } | 116 | } |
117 | 117 | ||
118 | break; | 118 | break; |
119 | case Qt::Key_Down: | 119 | case Qt::Key_Down: |
120 | owarn << "Down.." << oendl; | 120 | odebug << "Down.." << oendl; |
121 | // owarn << "Visible: " << visibleHeight() << ", content: " << contentHeight() << oendl; | 121 | // odebug << "Visible: " << visibleHeight() << ", content: " << contentHeight() << oendl; |
122 | // owarn << "Value: " << verticalScrollBar()->value() | 122 | // odebug << "Value: " << verticalScrollBar()->value() |
123 | // << ", barMaxValue: " << verticalScrollBar()->maxValue() << oendl; | 123 | // << ", barMaxValue: " << verticalScrollBar()->maxValue() << oendl; |
124 | if ( ( visibleHeight() < contentsHeight() ) && | 124 | if ( ( visibleHeight() < contentsHeight() ) && |
125 | ( verticalScrollBar()->value() < verticalScrollBar()->maxValue() ) ) | 125 | ( verticalScrollBar()->value() < verticalScrollBar()->maxValue() ) ) |
126 | scrollBy( 0, visibleHeight()-20 ); | 126 | scrollBy( 0, visibleHeight()-20 ); |
127 | else { | 127 | else { |
128 | ++m_itCurContact; | 128 | ++m_itCurContact; |
129 | if ( *m_itCurContact != Opie::OPimContact() ) | 129 | if ( *m_itCurContact != Opie::OPimContact() ) |
130 | sync(); | 130 | sync(); |
131 | else | 131 | else |
132 | m_itCurContact = m_viewList.begin(); | 132 | m_itCurContact = m_viewList.begin(); |
133 | } | 133 | } |
134 | break; | 134 | break; |
135 | case Qt::Key_Return: // fall through | 135 | case Qt::Key_Return: // fall through |
136 | case Qt::Key_Space: // fall through | 136 | case Qt::Key_Space: // fall through |
137 | case Qt::Key_Enter: // we want to switch back | 137 | case Qt::Key_Enter: // we want to switch back |
138 | emit signalOkPressed(); | 138 | emit signalOkPressed(); |
diff --git a/core/pim/addressbook/abtable.cpp b/core/pim/addressbook/abtable.cpp index 3fb2214..30d749c 100644 --- a/core/pim/addressbook/abtable.cpp +++ b/core/pim/addressbook/abtable.cpp | |||
@@ -108,125 +108,125 @@ void AbPickItem::setContentFromEditor( QWidget *w ) | |||
108 | 108 | ||
109 | /*! | 109 | /*! |
110 | \class AbTable abtable.h | 110 | \class AbTable abtable.h |
111 | 111 | ||
112 | \brief QTable based class for showing a list of entries | 112 | \brief QTable based class for showing a list of entries |
113 | */ | 113 | */ |
114 | 114 | ||
115 | AbTable::AbTable( const QValueList<int> order, QWidget *parent, const char *name ) | 115 | AbTable::AbTable( const QValueList<int> order, QWidget *parent, const char *name ) |
116 | : QTable( parent, name ), | 116 | : QTable( parent, name ), |
117 | lastSortCol( -1 ), | 117 | lastSortCol( -1 ), |
118 | asc( TRUE ), | 118 | asc( TRUE ), |
119 | intFields( order ), | 119 | intFields( order ), |
120 | enablePainting( true ), | 120 | enablePainting( true ), |
121 | columnVisible( true ), | 121 | columnVisible( true ), |
122 | countNested( 0 ) | 122 | countNested( 0 ) |
123 | { | 123 | { |
124 | //owarn << "C'tor start" << oendl; | 124 | //odebug << "C'tor start" << oendl; |
125 | setSelectionMode( NoSelection ); | 125 | setSelectionMode( NoSelection ); |
126 | init(); | 126 | init(); |
127 | setSorting( TRUE ); | 127 | setSorting( TRUE ); |
128 | connect( this, SIGNAL(clicked(int,int,int,const QPoint&)), | 128 | connect( this, SIGNAL(clicked(int,int,int,const QPoint&)), |
129 | this, SLOT(itemClicked(int,int)) ); | 129 | this, SLOT(itemClicked(int,int)) ); |
130 | 130 | ||
131 | // contactList.clear(); | 131 | // contactList.clear(); |
132 | //owarn << "C'tor end" << oendl; | 132 | //odebug << "C'tor end" << oendl; |
133 | } | 133 | } |
134 | 134 | ||
135 | AbTable::~AbTable() | 135 | AbTable::~AbTable() |
136 | { | 136 | { |
137 | } | 137 | } |
138 | 138 | ||
139 | void AbTable::init() | 139 | void AbTable::init() |
140 | { | 140 | { |
141 | // :SX showChar = '\0'; | 141 | // :SX showChar = '\0'; |
142 | setNumRows( 0 ); | 142 | setNumRows( 0 ); |
143 | setNumCols( 2 ); | 143 | setNumCols( 2 ); |
144 | 144 | ||
145 | horizontalHeader()->setLabel( 0, tr( "Full Name" )); | 145 | horizontalHeader()->setLabel( 0, tr( "Full Name" )); |
146 | horizontalHeader()->setLabel( 1, tr( "Contact" )); | 146 | horizontalHeader()->setLabel( 1, tr( "Contact" )); |
147 | setLeftMargin( 0 ); | 147 | setLeftMargin( 0 ); |
148 | verticalHeader()->hide(); | 148 | verticalHeader()->hide(); |
149 | columnVisible = true; | 149 | columnVisible = true; |
150 | } | 150 | } |
151 | 151 | ||
152 | void AbTable::setContacts( const Opie::OPimContactAccess::List& viewList ) | 152 | void AbTable::setContacts( const Opie::OPimContactAccess::List& viewList ) |
153 | { | 153 | { |
154 | owarn << "AbTable::setContacts()" << oendl; | 154 | odebug << "AbTable::setContacts()" << oendl; |
155 | 155 | ||
156 | clear(); | 156 | clear(); |
157 | m_viewList = viewList; | 157 | m_viewList = viewList; |
158 | 158 | ||
159 | setSorting( false ); | 159 | setSorting( false ); |
160 | setPaintingEnabled( FALSE ); | 160 | setPaintingEnabled( FALSE ); |
161 | 161 | ||
162 | Opie::OPimContactAccess::List::Iterator it; | 162 | Opie::OPimContactAccess::List::Iterator it; |
163 | setNumRows( m_viewList.count() ); | 163 | setNumRows( m_viewList.count() ); |
164 | //int row = 0; | 164 | //int row = 0; |
165 | // for ( it = m_viewList.begin(); it != m_viewList.end(); ++it ) | 165 | // for ( it = m_viewList.begin(); it != m_viewList.end(); ++it ) |
166 | // insertIntoTable( *it, row++ ); | 166 | // insertIntoTable( *it, row++ ); |
167 | 167 | ||
168 | // setSorting( true ); | 168 | // setSorting( true ); |
169 | 169 | ||
170 | // resort(); | 170 | // resort(); |
171 | 171 | ||
172 | updateVisible(); | 172 | updateVisible(); |
173 | 173 | ||
174 | setPaintingEnabled( TRUE ); | 174 | setPaintingEnabled( TRUE ); |
175 | 175 | ||
176 | } | 176 | } |
177 | 177 | ||
178 | void AbTable::setOrderedList( const QValueList<int> ordered ) | 178 | void AbTable::setOrderedList( const QValueList<int> ordered ) |
179 | { | 179 | { |
180 | intFields = ordered; | 180 | intFields = ordered; |
181 | } | 181 | } |
182 | 182 | ||
183 | 183 | ||
184 | bool AbTable::selectContact( int UID ) | 184 | bool AbTable::selectContact( int UID ) |
185 | { | 185 | { |
186 | owarn << "AbTable::selectContact( " << UID << " )" << oendl; | 186 | odebug << "AbTable::selectContact( " << UID << " )" << oendl; |
187 | int rows = numRows(); | 187 | int rows = numRows(); |
188 | Opie::OPimContact* foundContact = 0l; | 188 | Opie::OPimContact* foundContact = 0l; |
189 | bool found = false; | 189 | bool found = false; |
190 | 190 | ||
191 | setPaintingEnabled( FALSE ); | 191 | setPaintingEnabled( FALSE ); |
192 | owarn << "Search start" << oendl; | 192 | odebug << "Search start" << oendl; |
193 | for ( int r = 0; r < rows; ++r ) { | 193 | for ( int r = 0; r < rows; ++r ) { |
194 | if ( m_viewList.uidAt( r ) == UID ){ | 194 | if ( m_viewList.uidAt( r ) == UID ){ |
195 | ensureCellVisible( r, 0 ); | 195 | ensureCellVisible( r, 0 ); |
196 | setCurrentCell( r, 0 ); | 196 | setCurrentCell( r, 0 ); |
197 | found = true; | 197 | found = true; |
198 | break; | 198 | break; |
199 | } | 199 | } |
200 | } | 200 | } |
201 | owarn << "Search end" << oendl; | 201 | odebug << "Search end" << oendl; |
202 | 202 | ||
203 | if ( !found ){ | 203 | if ( !found ){ |
204 | ensureCellVisible( 0,0 ); | 204 | ensureCellVisible( 0,0 ); |
205 | setCurrentCell( 0, 0 ); | 205 | setCurrentCell( 0, 0 ); |
206 | } | 206 | } |
207 | 207 | ||
208 | setPaintingEnabled( TRUE ); | 208 | setPaintingEnabled( TRUE ); |
209 | 209 | ||
210 | return true; | 210 | return true; |
211 | } | 211 | } |
212 | 212 | ||
213 | #if 0 | 213 | #if 0 |
214 | void AbTable::insertIntoTable( const Opie::OPimContact& cnt, int row ) | 214 | void AbTable::insertIntoTable( const Opie::OPimContact& cnt, int row ) |
215 | { | 215 | { |
216 | owarn << "void AbTable::insertIntoTable( const Opie::OPimContact& cnt, " | 216 | odebug << "void AbTable::insertIntoTable( const Opie::OPimContact& cnt, " |
217 | << row << " )" << oendl; | 217 | << row << " )" << oendl; |
218 | QString strName; | 218 | QString strName; |
219 | ContactItem contactItem; | 219 | ContactItem contactItem; |
220 | 220 | ||
221 | strName = findContactName( cnt ); | 221 | strName = findContactName( cnt ); |
222 | contactItem = findContactContact( cnt, row ); | 222 | contactItem = findContactContact( cnt, row ); |
223 | 223 | ||
224 | AbTableItem *ati; | 224 | AbTableItem *ati; |
225 | ati = new AbTableItem( this, QTableItem::Never, strName, contactItem.value ); | 225 | ati = new AbTableItem( this, QTableItem::Never, strName, contactItem.value ); |
226 | contactList.insert( ati, cnt ); | 226 | contactList.insert( ati, cnt ); |
227 | setItem( row, 0, ati ); | 227 | setItem( row, 0, ati ); |
228 | ati = new AbTableItem( this, QTableItem::Never, contactItem.value, strName); | 228 | ati = new AbTableItem( this, QTableItem::Never, contactItem.value, strName); |
229 | if ( !contactItem.icon.isNull() ) | 229 | if ( !contactItem.icon.isNull() ) |
230 | ati->setPixmap( contactItem.icon ); | 230 | ati->setPixmap( contactItem.icon ); |
231 | setItem( row, 1, ati ); | 231 | setItem( row, 1, ati ); |
232 | 232 | ||
@@ -270,33 +270,33 @@ void AbTable::resort() | |||
270 | setPaintingEnabled( TRUE ); | 270 | setPaintingEnabled( TRUE ); |
271 | #endif | 271 | #endif |
272 | } | 272 | } |
273 | 273 | ||
274 | Opie::OPimContact AbTable::currentEntry() | 274 | Opie::OPimContact AbTable::currentEntry() |
275 | { | 275 | { |
276 | return m_viewList[currentRow()]; | 276 | return m_viewList[currentRow()]; |
277 | } | 277 | } |
278 | 278 | ||
279 | int AbTable::currentEntry_UID() | 279 | int AbTable::currentEntry_UID() |
280 | { | 280 | { |
281 | return ( currentEntry().uid() ); | 281 | return ( currentEntry().uid() ); |
282 | } | 282 | } |
283 | 283 | ||
284 | void AbTable::clear() | 284 | void AbTable::clear() |
285 | { | 285 | { |
286 | owarn << "void AbTable::clear()" << oendl; | 286 | odebug << "void AbTable::clear()" << oendl; |
287 | // contactList.clear(); | 287 | // contactList.clear(); |
288 | 288 | ||
289 | setPaintingEnabled( FALSE ); | 289 | setPaintingEnabled( FALSE ); |
290 | for ( int r = 0; r < numRows(); ++r ) { | 290 | for ( int r = 0; r < numRows(); ++r ) { |
291 | for ( int c = 0; c < numCols(); ++c ) { | 291 | for ( int c = 0; c < numCols(); ++c ) { |
292 | if ( cellWidget( r, c ) ) | 292 | if ( cellWidget( r, c ) ) |
293 | clearCellWidget( r, c ); | 293 | clearCellWidget( r, c ); |
294 | clearCell( r, c ); | 294 | clearCell( r, c ); |
295 | } | 295 | } |
296 | } | 296 | } |
297 | setNumRows( 0 ); | 297 | setNumRows( 0 ); |
298 | setPaintingEnabled( TRUE ); | 298 | setPaintingEnabled( TRUE ); |
299 | } | 299 | } |
300 | 300 | ||
301 | // Refresh updates column 2 if the contactsettings changed | 301 | // Refresh updates column 2 if the contactsettings changed |
302 | void AbTable::refresh() | 302 | void AbTable::refresh() |
@@ -321,56 +321,56 @@ void AbTable::refresh() | |||
321 | setPixmap( QPixmap() ); | 321 | setPixmap( QPixmap() ); |
322 | } | 322 | } |
323 | } | 323 | } |
324 | resort(); | 324 | resort(); |
325 | setPaintingEnabled( TRUE ); | 325 | setPaintingEnabled( TRUE ); |
326 | 326 | ||
327 | #endif | 327 | #endif |
328 | } | 328 | } |
329 | 329 | ||
330 | void AbTable::keyPressEvent( QKeyEvent *e ) | 330 | void AbTable::keyPressEvent( QKeyEvent *e ) |
331 | { | 331 | { |
332 | char key = toupper( e->ascii() ); | 332 | char key = toupper( e->ascii() ); |
333 | 333 | ||
334 | if ( key >= 'A' && key <= 'Z' ) | 334 | if ( key >= 'A' && key <= 'Z' ) |
335 | moveTo( key ); | 335 | moveTo( key ); |
336 | 336 | ||
337 | // owarn << "Received key .." << oendl; | 337 | // odebug << "Received key .." << oendl; |
338 | switch( e->key() ) { | 338 | switch( e->key() ) { |
339 | case Qt::Key_Space: | 339 | case Qt::Key_Space: |
340 | case Qt::Key_Return: | 340 | case Qt::Key_Return: |
341 | case Qt::Key_Enter: | 341 | case Qt::Key_Enter: |
342 | emit signalSwitch(); | 342 | emit signalSwitch(); |
343 | break; | 343 | break; |
344 | // case Qt::Key_Up: | 344 | // case Qt::Key_Up: |
345 | // owarn << "a" << oendl; | 345 | // odebug << "a" << oendl; |
346 | // emit signalKeyUp(); | 346 | // emit signalKeyUp(); |
347 | // break; | 347 | // break; |
348 | // case Qt::Key_Down: | 348 | // case Qt::Key_Down: |
349 | // owarn << "b" << oendl; | 349 | // odebug << "b" << oendl; |
350 | // emit signalKeyDown(); | 350 | // emit signalKeyDown(); |
351 | // break; | 351 | // break; |
352 | default: | 352 | default: |
353 | QTable::keyPressEvent( e ); | 353 | QTable::keyPressEvent( e ); |
354 | } | 354 | } |
355 | 355 | ||
356 | } | 356 | } |
357 | 357 | ||
358 | void AbTable::moveTo( char c ) | 358 | void AbTable::moveTo( char c ) |
359 | { | 359 | { |
360 | owarn << "void AbTable::moveTo( char c ) NOT IMPLEMENTED !!" << oendl; | 360 | odebug << "void AbTable::moveTo( char c ) NOT IMPLEMENTED !!" << oendl; |
361 | 361 | ||
362 | #if 0 | 362 | #if 0 |
363 | int rows = numRows(); | 363 | int rows = numRows(); |
364 | QString value; | 364 | QString value; |
365 | AbTableItem *abi; | 365 | AbTableItem *abi; |
366 | int r; | 366 | int r; |
367 | if ( asc ) { | 367 | if ( asc ) { |
368 | r = 0; | 368 | r = 0; |
369 | while ( r < rows-1) { | 369 | while ( r < rows-1) { |
370 | abi = static_cast<AbTableItem*>( item(r, 0) ); | 370 | abi = static_cast<AbTableItem*>( item(r, 0) ); |
371 | QChar first = abi->key()[0]; | 371 | QChar first = abi->key()[0]; |
372 | //### is there a bug in QChar to char comparison??? | 372 | //### is there a bug in QChar to char comparison??? |
373 | if ( first.row() || first.cell() >= c ) | 373 | if ( first.row() || first.cell() >= c ) |
374 | break; | 374 | break; |
375 | r++; | 375 | r++; |
376 | } | 376 | } |
@@ -410,33 +410,33 @@ QString AbTable::findContactName( const Opie::OPimContact &entry ) | |||
410 | 410 | ||
411 | 411 | ||
412 | void AbTable::resizeRows() { | 412 | void AbTable::resizeRows() { |
413 | /* | 413 | /* |
414 | if (numRows()) { | 414 | if (numRows()) { |
415 | for (int i = 0; i < numRows(); i++) { | 415 | for (int i = 0; i < numRows(); i++) { |
416 | setRowHeight( i, size ); | 416 | setRowHeight( i, size ); |
417 | } | 417 | } |
418 | } | 418 | } |
419 | updateVisible(); | 419 | updateVisible(); |
420 | */ | 420 | */ |
421 | } | 421 | } |
422 | 422 | ||
423 | 423 | ||
424 | void AbTable::realignTable() | 424 | void AbTable::realignTable() |
425 | { | 425 | { |
426 | //owarn << "void AbTable::realignTable()" << oendl; | 426 | //odebug << "void AbTable::realignTable()" << oendl; |
427 | 427 | ||
428 | setPaintingEnabled( FALSE ); | 428 | setPaintingEnabled( FALSE ); |
429 | 429 | ||
430 | resizeRows(); | 430 | resizeRows(); |
431 | fitColumns(); | 431 | fitColumns(); |
432 | 432 | ||
433 | setPaintingEnabled( TRUE ); | 433 | setPaintingEnabled( TRUE ); |
434 | 434 | ||
435 | } | 435 | } |
436 | 436 | ||
437 | 437 | ||
438 | 438 | ||
439 | 439 | ||
440 | #if QT_VERSION <= 230 | 440 | #if QT_VERSION <= 230 |
441 | #ifndef SINGLE_APP | 441 | #ifndef SINGLE_APP |
442 | void QTable::paintEmptyArea( QPainter *p, int cx, int cy, int cw, int ch ) | 442 | void QTable::paintEmptyArea( QPainter *p, int cx, int cy, int cw, int ch ) |
@@ -460,85 +460,85 @@ void QTable::paintEmptyArea( QPainter *p, int cx, int cy, int cw, int ch ) | |||
460 | // } | 460 | // } |
461 | 461 | ||
462 | // int AbTable::rowPos( int row ) const | 462 | // int AbTable::rowPos( int row ) const |
463 | // { | 463 | // { |
464 | // return 18*row; | 464 | // return 18*row; |
465 | // } | 465 | // } |
466 | 466 | ||
467 | // int AbTable::rowAt( int pos ) const | 467 | // int AbTable::rowAt( int pos ) const |
468 | // { | 468 | // { |
469 | // return QMIN( pos/18, numRows()-1 ); | 469 | // return QMIN( pos/18, numRows()-1 ); |
470 | // } | 470 | // } |
471 | 471 | ||
472 | 472 | ||
473 | 473 | ||
474 | void AbTable::fitColumns() | 474 | void AbTable::fitColumns() |
475 | { | 475 | { |
476 | owarn << "void AbTable::fitColumns()" << oendl; | 476 | odebug << "void AbTable::fitColumns()" << oendl; |
477 | int contentsWidth = visibleWidth() / 2; | 477 | int contentsWidth = visibleWidth() / 2; |
478 | // Fix to better value | 478 | // Fix to better value |
479 | // contentsWidth = 130; | 479 | // contentsWidth = 130; |
480 | 480 | ||
481 | setPaintingEnabled( FALSE ); | 481 | setPaintingEnabled( FALSE ); |
482 | 482 | ||
483 | if ( columnVisible == false ){ | 483 | if ( columnVisible == false ){ |
484 | showColumn(0); | 484 | showColumn(0); |
485 | columnVisible = true; | 485 | columnVisible = true; |
486 | } | 486 | } |
487 | 487 | ||
488 | //owarn << "Width: " << contentsWidth << oendl; | 488 | //odebug << "Width: " << contentsWidth << oendl; |
489 | 489 | ||
490 | setColumnWidth( 0, contentsWidth ); | 490 | setColumnWidth( 0, contentsWidth ); |
491 | adjustColumn(1); | 491 | adjustColumn(1); |
492 | if ( columnWidth(1) < contentsWidth ) | 492 | if ( columnWidth(1) < contentsWidth ) |
493 | setColumnWidth( 1, contentsWidth ); | 493 | setColumnWidth( 1, contentsWidth ); |
494 | 494 | ||
495 | setPaintingEnabled( TRUE ); | 495 | setPaintingEnabled( TRUE ); |
496 | } | 496 | } |
497 | 497 | ||
498 | void AbTable::show() | 498 | void AbTable::show() |
499 | { | 499 | { |
500 | //owarn << "void AbTable::show()" << oendl; | 500 | //odebug << "void AbTable::show()" << oendl; |
501 | realignTable(); | 501 | realignTable(); |
502 | QTable::show(); | 502 | QTable::show(); |
503 | } | 503 | } |
504 | 504 | ||
505 | #if 0 | 505 | #if 0 |
506 | void AbTable::setChoiceNames( const QStringList& list) | 506 | void AbTable::setChoiceNames( const QStringList& list) |
507 | { | 507 | { |
508 | choicenames = list; | 508 | choicenames = list; |
509 | if ( choicenames.isEmpty() ) { | 509 | if ( choicenames.isEmpty() ) { |
510 | // hide pick column | 510 | // hide pick column |
511 | setNumCols( 2 ); | 511 | setNumCols( 2 ); |
512 | } else { | 512 | } else { |
513 | // show pick column | 513 | // show pick column |
514 | setNumCols( 3 ); | 514 | setNumCols( 3 ); |
515 | setColumnWidth( 2, fontMetrics().width(tr( "Pick" ))+8 ); | 515 | setColumnWidth( 2, fontMetrics().width(tr( "Pick" ))+8 ); |
516 | horizontalHeader()->setLabel( 2, tr( "Pick" )); | 516 | horizontalHeader()->setLabel( 2, tr( "Pick" )); |
517 | } | 517 | } |
518 | fitColumns(); | 518 | fitColumns(); |
519 | } | 519 | } |
520 | #endif | 520 | #endif |
521 | 521 | ||
522 | void AbTable::itemClicked(int,int col) | 522 | void AbTable::itemClicked(int,int col) |
523 | { | 523 | { |
524 | //owarn << "AbTable::itemClicked(int, col: " << col << ")" << oendl; | 524 | //odebug << "AbTable::itemClicked(int, col: " << col << ")" << oendl; |
525 | if ( col == 2 ) { | 525 | if ( col == 2 ) { |
526 | return; | 526 | return; |
527 | } else { | 527 | } else { |
528 | //owarn << "Emitting signalSwitch()" << oendl; | 528 | //odebug << "Emitting signalSwitch()" << oendl; |
529 | emit signalSwitch(); | 529 | emit signalSwitch(); |
530 | } | 530 | } |
531 | } | 531 | } |
532 | 532 | ||
533 | #if 0 | 533 | #if 0 |
534 | QStringList AbTable::choiceNames() const | 534 | QStringList AbTable::choiceNames() const |
535 | { | 535 | { |
536 | return choicenames; | 536 | return choicenames; |
537 | } | 537 | } |
538 | 538 | ||
539 | #endif | 539 | #endif |
540 | void AbTable::setChoiceSelection( const QValueList<int>& list ) | 540 | void AbTable::setChoiceSelection( const QValueList<int>& list ) |
541 | { | 541 | { |
542 | intFields = list; | 542 | intFields = list; |
543 | } | 543 | } |
544 | 544 | ||
@@ -549,33 +549,33 @@ QStringList AbTable::choiceSelection(int /*index*/) const | |||
549 | 549 | ||
550 | QString selname = choicenames.at(index); | 550 | QString selname = choicenames.at(index); |
551 | for (each row) { | 551 | for (each row) { |
552 | Opie::OPimContact *c = contactForRow(row); | 552 | Opie::OPimContact *c = contactForRow(row); |
553 | if ( text(row,2) == selname ) { | 553 | if ( text(row,2) == selname ) { |
554 | r.append(c->email); | 554 | r.append(c->email); |
555 | } | 555 | } |
556 | } | 556 | } |
557 | 557 | ||
558 | */ | 558 | */ |
559 | return r; | 559 | return r; |
560 | } | 560 | } |
561 | 561 | ||
562 | 562 | ||
563 | void AbTable::updateVisible() | 563 | void AbTable::updateVisible() |
564 | { | 564 | { |
565 | //owarn << "void AbTable::updateVisible()" << oendl; | 565 | //odebug << "void AbTable::updateVisible()" << oendl; |
566 | 566 | ||
567 | int visible, | 567 | int visible, |
568 | totalRows, | 568 | totalRows, |
569 | row, | 569 | row, |
570 | selectedRow = 0; | 570 | selectedRow = 0; |
571 | 571 | ||
572 | visible = 0; | 572 | visible = 0; |
573 | 573 | ||
574 | setPaintingEnabled( FALSE ); | 574 | setPaintingEnabled( FALSE ); |
575 | 575 | ||
576 | realignTable(); | 576 | realignTable(); |
577 | 577 | ||
578 | totalRows = numRows(); | 578 | totalRows = numRows(); |
579 | for ( row = 0; row < totalRows; row++ ) { | 579 | for ( row = 0; row < totalRows; row++ ) { |
580 | if ( rowHeight(row) == 0 ) { | 580 | if ( rowHeight(row) == 0 ) { |
581 | showRow( row ); | 581 | showRow( row ); |
@@ -585,66 +585,66 @@ void AbTable::updateVisible() | |||
585 | } | 585 | } |
586 | visible++; | 586 | visible++; |
587 | } | 587 | } |
588 | 588 | ||
589 | if ( selectedRow ) | 589 | if ( selectedRow ) |
590 | setCurrentCell( selectedRow, 0 ); | 590 | setCurrentCell( selectedRow, 0 ); |
591 | 591 | ||
592 | if ( !visible ) | 592 | if ( !visible ) |
593 | setCurrentCell( -1, 0 ); | 593 | setCurrentCell( -1, 0 ); |
594 | 594 | ||
595 | setPaintingEnabled( TRUE ); | 595 | setPaintingEnabled( TRUE ); |
596 | } | 596 | } |
597 | 597 | ||
598 | 598 | ||
599 | void AbTable::setPaintingEnabled( bool e ) | 599 | void AbTable::setPaintingEnabled( bool e ) |
600 | { | 600 | { |
601 | //owarn << "IN void AbTable::setPaintingEnabled( " << e << " )->Nested: " | 601 | //odebug << "IN void AbTable::setPaintingEnabled( " << e << " )->Nested: " |
602 | // << countNested << oendl; | 602 | // << countNested << oendl; |
603 | 603 | ||
604 | if ( e ) { | 604 | if ( e ) { |
605 | if ( countNested > 0 ) | 605 | if ( countNested > 0 ) |
606 | --countNested; | 606 | --countNested; |
607 | if ( ! countNested ){ | 607 | if ( ! countNested ){ |
608 | setUpdatesEnabled( true ); | 608 | setUpdatesEnabled( true ); |
609 | enablePainting = true; | 609 | enablePainting = true; |
610 | rowHeightChanged( 0 ); | 610 | rowHeightChanged( 0 ); |
611 | viewport()->update(); | 611 | viewport()->update(); |
612 | } | 612 | } |
613 | } else { | 613 | } else { |
614 | ++countNested; | 614 | ++countNested; |
615 | enablePainting = false; | 615 | enablePainting = false; |
616 | setUpdatesEnabled( false ); | 616 | setUpdatesEnabled( false ); |
617 | } | 617 | } |
618 | //owarn << "OUT void AbTable::setPaintingEnabled( " << e << " )->Nested: " | 618 | //odebug << "OUT void AbTable::setPaintingEnabled( " << e << " )->Nested: " |
619 | // << countNested << oendl; | 619 | // << countNested << oendl; |
620 | } | 620 | } |
621 | 621 | ||
622 | void AbTable::viewportPaintEvent( QPaintEvent* e ) { | 622 | void AbTable::viewportPaintEvent( QPaintEvent* e ) { |
623 | //owarn << "void AbTable::viewportPaintEvent( QPaintEvent* e ) -> " | 623 | //odebug << "void AbTable::viewportPaintEvent( QPaintEvent* e ) -> " |
624 | // << enablePainting << oendl; | 624 | // << enablePainting << oendl; |
625 | if ( enablePainting ) | 625 | if ( enablePainting ) |
626 | QTable::viewportPaintEvent( e ); | 626 | QTable::viewportPaintEvent( e ); |
627 | } | 627 | } |
628 | 628 | ||
629 | void AbTable::paintCell(QPainter* p, int row, int col, const QRect& cr, bool ) { | 629 | void AbTable::paintCell(QPainter* p, int row, int col, const QRect& cr, bool ) { |
630 | const QColorGroup &cg = colorGroup(); | 630 | const QColorGroup &cg = colorGroup(); |
631 | 631 | ||
632 | p->save(); | 632 | p->save(); |
633 | 633 | ||
634 | //owarn << "Paint row: " << row << oendl; | 634 | //odebug << "Paint row: " << row << oendl; |
635 | 635 | ||
636 | Opie::OPimContact act_contact = m_viewList[row]; | 636 | Opie::OPimContact act_contact = m_viewList[row]; |
637 | 637 | ||
638 | // Paint alternating background bars | 638 | // Paint alternating background bars |
639 | if ( (row % 2 ) == 0 ) { | 639 | if ( (row % 2 ) == 0 ) { |
640 | p->fillRect( 0, 0, cr.width(), cr.height(), cg.brush( QColorGroup::Base ) ); | 640 | p->fillRect( 0, 0, cr.width(), cr.height(), cg.brush( QColorGroup::Base ) ); |
641 | p->setPen( QPen( cg.text() ) ); | 641 | p->setPen( QPen( cg.text() ) ); |
642 | } | 642 | } |
643 | else { | 643 | else { |
644 | p->fillRect( 0, 0, cr.width(), cr.height(), cg.brush( QColorGroup::Background ) ); | 644 | p->fillRect( 0, 0, cr.width(), cr.height(), cg.brush( QColorGroup::Background ) ); |
645 | p->setPen( QPen( cg.buttonText() ) ); | 645 | p->setPen( QPen( cg.buttonText() ) ); |
646 | } | 646 | } |
647 | 647 | ||
648 | QFont f = p->font(); | 648 | QFont f = p->font(); |
649 | QFontMetrics fm(f); | 649 | QFontMetrics fm(f); |
650 | 650 | ||
diff --git a/core/pim/addressbook/abview.cpp b/core/pim/addressbook/abview.cpp index 7a5b6d4..7abb45c 100644 --- a/core/pim/addressbook/abview.cpp +++ b/core/pim/addressbook/abview.cpp | |||
@@ -39,33 +39,33 @@ QString addressbookPersonalVCardName() | |||
39 | 39 | ||
40 | AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ): | 40 | AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ): |
41 | QWidget(parent), | 41 | QWidget(parent), |
42 | mCat(0), | 42 | mCat(0), |
43 | m_inSearch( false ), | 43 | m_inSearch( false ), |
44 | m_inPersonal( false ), | 44 | m_inPersonal( false ), |
45 | m_curr_category( -1 ), | 45 | m_curr_category( -1 ), |
46 | m_curr_View( TableView ), | 46 | m_curr_View( TableView ), |
47 | m_prev_View( TableView ), | 47 | m_prev_View( TableView ), |
48 | m_curr_Contact ( 0 ), | 48 | m_curr_Contact ( 0 ), |
49 | m_contactdb ( 0l ), | 49 | m_contactdb ( 0l ), |
50 | m_storedDB ( 0l ), | 50 | m_storedDB ( 0l ), |
51 | m_viewStack( 0l ), | 51 | m_viewStack( 0l ), |
52 | m_abTable( 0l ), | 52 | m_abTable( 0l ), |
53 | m_orderedFields( ordered ) | 53 | m_orderedFields( ordered ) |
54 | { | 54 | { |
55 | owarn << "AbView::c'tor" << oendl; | 55 | odebug << "AbView::c'tor" << oendl; |
56 | // Load default database and handle syncing myself.. ! | 56 | // Load default database and handle syncing myself.. ! |
57 | m_contactdb = new Opie::OPimContactAccess ( "addressbook", 0l, 0l, false ); | 57 | m_contactdb = new Opie::OPimContactAccess ( "addressbook", 0l, 0l, false ); |
58 | m_contactdb -> setReadAhead( 16 ); // Use ReadAhead-Cache if available | 58 | m_contactdb -> setReadAhead( 16 ); // Use ReadAhead-Cache if available |
59 | mCat.load( categoryFileName() ); | 59 | mCat.load( categoryFileName() ); |
60 | 60 | ||
61 | // Create Layout and put WidgetStack into it. | 61 | // Create Layout and put WidgetStack into it. |
62 | QVBoxLayout *vb = new QVBoxLayout( this ); | 62 | QVBoxLayout *vb = new QVBoxLayout( this ); |
63 | m_viewStack = new QWidgetStack( this ); | 63 | m_viewStack = new QWidgetStack( this ); |
64 | vb->addWidget( m_viewStack ); | 64 | vb->addWidget( m_viewStack ); |
65 | 65 | ||
66 | // Creat TableView | 66 | // Creat TableView |
67 | QVBox* tableBox = new QVBox( m_viewStack ); | 67 | QVBox* tableBox = new QVBox( m_viewStack ); |
68 | m_abTable = new AbTable( m_orderedFields, tableBox, "table" ); | 68 | m_abTable = new AbTable( m_orderedFields, tableBox, "table" ); |
69 | m_abTable->setCurrentCell( 0, 0 ); | 69 | m_abTable->setCurrentCell( 0, 0 ); |
70 | m_abTable->setFocus(); | 70 | m_abTable->setFocus(); |
71 | 71 | ||
@@ -87,159 +87,159 @@ AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ): | |||
87 | } | 87 | } |
88 | 88 | ||
89 | AbView::~AbView() | 89 | AbView::~AbView() |
90 | { | 90 | { |
91 | m_contactdb -> save(); | 91 | m_contactdb -> save(); |
92 | delete m_contactdb; | 92 | delete m_contactdb; |
93 | 93 | ||
94 | if ( m_storedDB ){ | 94 | if ( m_storedDB ){ |
95 | m_storedDB -> save(); | 95 | m_storedDB -> save(); |
96 | delete m_storedDB; | 96 | delete m_storedDB; |
97 | } | 97 | } |
98 | } | 98 | } |
99 | 99 | ||
100 | 100 | ||
101 | void AbView::setView( Views view ) | 101 | void AbView::setView( Views view ) |
102 | { | 102 | { |
103 | owarn << "AbView::setView( Views view )" << oendl; | 103 | odebug << "AbView::setView( Views view )" << oendl; |
104 | m_curr_View = view; | 104 | m_curr_View = view; |
105 | load(); | 105 | load(); |
106 | } | 106 | } |
107 | 107 | ||
108 | void AbView::addEntry( const Opie::OPimContact &newContact ) | 108 | void AbView::addEntry( const Opie::OPimContact &newContact ) |
109 | { | 109 | { |
110 | owarn << "AbView::AddContact" << oendl; | 110 | odebug << "AbView::AddContact" << oendl; |
111 | m_contactdb->add ( newContact ); | 111 | m_contactdb->add ( newContact ); |
112 | load(); | 112 | load(); |
113 | 113 | ||
114 | } | 114 | } |
115 | void AbView::removeEntry( const int UID ) | 115 | void AbView::removeEntry( const int UID ) |
116 | { | 116 | { |
117 | owarn << "AbView;:RemoveContact" << oendl; | 117 | odebug << "AbView;:RemoveContact" << oendl; |
118 | m_contactdb->remove( UID ); | 118 | m_contactdb->remove( UID ); |
119 | load(); | 119 | load(); |
120 | } | 120 | } |
121 | 121 | ||
122 | void AbView::replaceEntry( const Opie::OPimContact &contact ) | 122 | void AbView::replaceEntry( const Opie::OPimContact &contact ) |
123 | { | 123 | { |
124 | owarn << "AbView::ReplaceContact" << oendl; | 124 | odebug << "AbView::ReplaceContact" << oendl; |
125 | m_contactdb->replace( contact ); | 125 | m_contactdb->replace( contact ); |
126 | load(); | 126 | load(); |
127 | 127 | ||
128 | } | 128 | } |
129 | 129 | ||
130 | Opie::OPimContact AbView::currentEntry() | 130 | Opie::OPimContact AbView::currentEntry() |
131 | { | 131 | { |
132 | Opie::OPimContact currentContact; | 132 | Opie::OPimContact currentContact; |
133 | 133 | ||
134 | switch ( (int) m_curr_View ) { | 134 | switch ( (int) m_curr_View ) { |
135 | case TableView: | 135 | case TableView: |
136 | currentContact = m_abTable -> currentEntry(); | 136 | currentContact = m_abTable -> currentEntry(); |
137 | break; | 137 | break; |
138 | case CardView: | 138 | case CardView: |
139 | currentContact = m_ablabel -> currentEntry(); | 139 | currentContact = m_ablabel -> currentEntry(); |
140 | break; | 140 | break; |
141 | } | 141 | } |
142 | m_curr_Contact = currentContact.uid(); | 142 | m_curr_Contact = currentContact.uid(); |
143 | return currentContact; | 143 | return currentContact; |
144 | } | 144 | } |
145 | 145 | ||
146 | bool AbView::save() | 146 | bool AbView::save() |
147 | { | 147 | { |
148 | //owarn << "AbView::Save data" << oendl; | 148 | //odebug << "AbView::Save data" << oendl; |
149 | 149 | ||
150 | return m_contactdb->save(); | 150 | return m_contactdb->save(); |
151 | } | 151 | } |
152 | 152 | ||
153 | void AbView::load() | 153 | void AbView::load() |
154 | { | 154 | { |
155 | owarn << "AbView::Load data" << oendl; | 155 | odebug << "AbView::Load data" << oendl; |
156 | 156 | ||
157 | // Letter Search is stopped at this place | 157 | // Letter Search is stopped at this place |
158 | emit signalClearLetterPicker(); | 158 | emit signalClearLetterPicker(); |
159 | 159 | ||
160 | if ( m_inPersonal ) | 160 | if ( m_inPersonal ) |
161 | // VCard Backend does not sort.. | 161 | // VCard Backend does not sort.. |
162 | m_list = m_contactdb->allRecords(); | 162 | m_list = m_contactdb->allRecords(); |
163 | else{ | 163 | else{ |
164 | m_list = m_contactdb->sorted( true, 0, 0, 0 ); | 164 | m_list = m_contactdb->sorted( true, 0, 0, 0 ); |
165 | if ( m_curr_category != -1 ) | 165 | if ( m_curr_category != -1 ) |
166 | clearForCategory(); | 166 | clearForCategory(); |
167 | } | 167 | } |
168 | 168 | ||
169 | owarn << "Number of contacts: " << m_list.count() << oendl; | 169 | odebug << "Number of contacts: " << m_list.count() << oendl; |
170 | 170 | ||
171 | updateView( true ); | 171 | updateView( true ); |
172 | 172 | ||
173 | } | 173 | } |
174 | 174 | ||
175 | void AbView::reload() | 175 | void AbView::reload() |
176 | { | 176 | { |
177 | owarn << "AbView::::reload()" << oendl; | 177 | odebug << "AbView::::reload()" << oendl; |
178 | 178 | ||
179 | m_contactdb->reload(); | 179 | m_contactdb->reload(); |
180 | load(); | 180 | load(); |
181 | } | 181 | } |
182 | 182 | ||
183 | void AbView::clear() | 183 | void AbView::clear() |
184 | { | 184 | { |
185 | // :SX | 185 | // :SX |
186 | } | 186 | } |
187 | 187 | ||
188 | void AbView::setShowByCategory( const QString& cat ) | 188 | void AbView::setShowByCategory( const QString& cat ) |
189 | { | 189 | { |
190 | owarn << "AbView::setShowCategory( const QString& cat )" << oendl; | 190 | odebug << "AbView::setShowCategory( const QString& cat )" << oendl; |
191 | 191 | ||
192 | int intCat = 0; | 192 | int intCat = 0; |
193 | 193 | ||
194 | // All (cat == NULL) will be stored as -1 | 194 | // All (cat == NULL) will be stored as -1 |
195 | if ( cat.isNull() ) | 195 | if ( cat.isNull() ) |
196 | intCat = -1; | 196 | intCat = -1; |
197 | else | 197 | else |
198 | intCat = mCat.id("Contacts", cat ); | 198 | intCat = mCat.id("Contacts", cat ); |
199 | 199 | ||
200 | // Just do anything if we really change the category | 200 | // Just do anything if we really change the category |
201 | if ( intCat != m_curr_category ){ | 201 | if ( intCat != m_curr_category ){ |
202 | // owarn << "Categories: Selected " << cat << ".. Number: " | 202 | // odebug << "Categories: Selected " << cat << ".. Number: " |
203 | // << m_curr_category << oendl; | 203 | // << m_curr_category << oendl; |
204 | 204 | ||
205 | m_curr_category = intCat; | 205 | m_curr_category = intCat; |
206 | emit signalClearLetterPicker(); | 206 | emit signalClearLetterPicker(); |
207 | 207 | ||
208 | load(); | 208 | load(); |
209 | } | 209 | } |
210 | 210 | ||
211 | } | 211 | } |
212 | 212 | ||
213 | void AbView::setShowToView( Views view ) | 213 | void AbView::setShowToView( Views view ) |
214 | { | 214 | { |
215 | owarn << "void AbView::setShowToView( View " << view << " )" << oendl; | 215 | odebug << "void AbView::setShowToView( View " << view << " )" << oendl; |
216 | 216 | ||
217 | if ( m_curr_View != view ){ | 217 | if ( m_curr_View != view ){ |
218 | owarn << "Change the View (Category is: " << m_curr_category << ")" << oendl; | 218 | odebug << "Change the View (Category is: " << m_curr_category << ")" << oendl; |
219 | m_prev_View = m_curr_View; | 219 | m_prev_View = m_curr_View; |
220 | m_curr_View = view; | 220 | m_curr_View = view; |
221 | 221 | ||
222 | updateView(); | 222 | updateView(); |
223 | } | 223 | } |
224 | 224 | ||
225 | } | 225 | } |
226 | 226 | ||
227 | void AbView::setShowByLetter( char c, AbConfig::LPSearchMode mode ) | 227 | void AbView::setShowByLetter( char c, AbConfig::LPSearchMode mode ) |
228 | { | 228 | { |
229 | owarn << "void AbView::setShowByLetter( " << c << ", " << mode << " )" << oendl; | 229 | odebug << "void AbView::setShowByLetter( " << c << ", " << mode << " )" << oendl; |
230 | 230 | ||
231 | assert( mode < AbConfig::LASTELEMENT ); | 231 | assert( mode < AbConfig::LASTELEMENT ); |
232 | 232 | ||
233 | Opie::OPimContact query; | 233 | Opie::OPimContact query; |
234 | if ( c == 0 ){ | 234 | if ( c == 0 ){ |
235 | load(); | 235 | load(); |
236 | return; | 236 | return; |
237 | }else{ | 237 | }else{ |
238 | // If the current Backend is unable to solve the query, we will | 238 | // If the current Backend is unable to solve the query, we will |
239 | // ignore the request .. | 239 | // ignore the request .. |
240 | if ( ! m_contactdb->hasQuerySettings( Opie::OPimContactAccess::WildCards | Opie::OPimContactAccess::IgnoreCase ) ){ | 240 | if ( ! m_contactdb->hasQuerySettings( Opie::OPimContactAccess::WildCards | Opie::OPimContactAccess::IgnoreCase ) ){ |
241 | return; | 241 | return; |
242 | } | 242 | } |
243 | 243 | ||
244 | switch( mode ){ | 244 | switch( mode ){ |
245 | case AbConfig::LastName: | 245 | case AbConfig::LastName: |
@@ -266,33 +266,33 @@ void AbView::setListOrder( const QValueList<int>& ordered ) | |||
266 | m_orderedFields = ordered; | 266 | m_orderedFields = ordered; |
267 | if ( m_abTable ){ | 267 | if ( m_abTable ){ |
268 | m_abTable->setOrderedList( ordered ); | 268 | m_abTable->setOrderedList( ordered ); |
269 | m_abTable->refresh(); | 269 | m_abTable->refresh(); |
270 | } | 270 | } |
271 | updateView(); | 271 | updateView(); |
272 | } | 272 | } |
273 | 273 | ||
274 | 274 | ||
275 | QString AbView::showCategory() const | 275 | QString AbView::showCategory() const |
276 | { | 276 | { |
277 | return mCat.label( "Contacts", m_curr_category ); | 277 | return mCat.label( "Contacts", m_curr_category ); |
278 | } | 278 | } |
279 | 279 | ||
280 | void AbView::showPersonal( bool personal ) | 280 | void AbView::showPersonal( bool personal ) |
281 | { | 281 | { |
282 | owarn << "void AbView::showPersonal( " << personal << " )" << oendl; | 282 | odebug << "void AbView::showPersonal( " << personal << " )" << oendl; |
283 | 283 | ||
284 | if ( personal ){ | 284 | if ( personal ){ |
285 | 285 | ||
286 | if ( m_inPersonal ) | 286 | if ( m_inPersonal ) |
287 | return; | 287 | return; |
288 | 288 | ||
289 | // Now switch to vCard Backend and load data. | 289 | // Now switch to vCard Backend and load data. |
290 | // The current default backend will be stored | 290 | // The current default backend will be stored |
291 | // to avoid unneeded load/stores. | 291 | // to avoid unneeded load/stores. |
292 | m_storedDB = m_contactdb; | 292 | m_storedDB = m_contactdb; |
293 | 293 | ||
294 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | 294 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, |
295 | addressbookPersonalVCardName() ); | 295 | addressbookPersonalVCardName() ); |
296 | m_contactdb = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | 296 | m_contactdb = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); |
297 | 297 | ||
298 | m_inPersonal = true; | 298 | m_inPersonal = true; |
@@ -336,140 +336,140 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp, | |||
336 | bool , QString cat ) | 336 | bool , QString cat ) |
337 | { | 337 | { |
338 | //owarn << "void AbView::slotDoFind" << oendl; | 338 | //owarn << "void AbView::slotDoFind" << oendl; |
339 | 339 | ||
340 | // We reloading the data: Deselect Letterpicker | 340 | // We reloading the data: Deselect Letterpicker |
341 | emit signalClearLetterPicker(); | 341 | emit signalClearLetterPicker(); |
342 | 342 | ||
343 | // Use the current Category if nothing else selected | 343 | // Use the current Category if nothing else selected |
344 | int category = 0; | 344 | int category = 0; |
345 | 345 | ||
346 | if ( cat.isEmpty() ) | 346 | if ( cat.isEmpty() ) |
347 | category = m_curr_category; | 347 | category = m_curr_category; |
348 | else{ | 348 | else{ |
349 | category = mCat.id("Contacts", cat ); | 349 | category = mCat.id("Contacts", cat ); |
350 | } | 350 | } |
351 | 351 | ||
352 | //owarn << "Find in Category " << category << oendl; | 352 | //odebug << "Find in Category " << category << oendl; |
353 | 353 | ||
354 | QRegExp r( str ); | 354 | QRegExp r( str ); |
355 | r.setCaseSensitive( caseSensitive ); | 355 | r.setCaseSensitive( caseSensitive ); |
356 | r.setWildcard( !useRegExp ); | 356 | r.setWildcard( !useRegExp ); |
357 | 357 | ||
358 | // Get all matching entries out of the database | 358 | // Get all matching entries out of the database |
359 | m_list = m_contactdb->matchRegexp( r ); | 359 | m_list = m_contactdb->matchRegexp( r ); |
360 | 360 | ||
361 | //owarn << "Found: " << m_list.count() << oendl; | 361 | //odebug << "Found: " << m_list.count() << oendl; |
362 | if ( m_list.count() == 0 ){ | 362 | if ( m_list.count() == 0 ){ |
363 | emit signalNotFound(); | 363 | emit signalNotFound(); |
364 | return; | 364 | return; |
365 | } | 365 | } |
366 | 366 | ||
367 | // Now remove all contacts with wrong category (if any selected) | 367 | // Now remove all contacts with wrong category (if any selected) |
368 | // This algorithm is a litte bit ineffective, but | 368 | // This algorithm is a litte bit ineffective, but |
369 | // we will not have a lot of matching entries.. | 369 | // we will not have a lot of matching entries.. |
370 | if ( m_curr_category != -1 ) | 370 | if ( m_curr_category != -1 ) |
371 | clearForCategory(); | 371 | clearForCategory(); |
372 | 372 | ||
373 | // Now show all found entries | 373 | // Now show all found entries |
374 | updateView( true ); | 374 | updateView( true ); |
375 | } | 375 | } |
376 | 376 | ||
377 | void AbView::offSearch() | 377 | void AbView::offSearch() |
378 | { | 378 | { |
379 | m_inSearch = false; | 379 | m_inSearch = false; |
380 | 380 | ||
381 | load(); | 381 | load(); |
382 | } | 382 | } |
383 | 383 | ||
384 | void AbView::slotSwitch(){ | 384 | void AbView::slotSwitch(){ |
385 | //owarn << "AbView::slotSwitch()" << oendl; | 385 | //odebug << "AbView::slotSwitch()" << oendl; |
386 | 386 | ||
387 | m_prev_View = m_curr_View; | 387 | m_prev_View = m_curr_View; |
388 | switch ( (int) m_curr_View ){ | 388 | switch ( (int) m_curr_View ){ |
389 | case TableView: | 389 | case TableView: |
390 | owarn << "Switching to CardView" << oendl; | 390 | odebug << "Switching to CardView" << oendl; |
391 | m_curr_View = CardView; | 391 | m_curr_View = CardView; |
392 | break; | 392 | break; |
393 | case CardView: | 393 | case CardView: |
394 | owarn << "Switching to TableView" << oendl; | 394 | odebug << "Switching to TableView" << oendl; |
395 | m_curr_View = TableView; | 395 | m_curr_View = TableView; |
396 | break; | 396 | break; |
397 | } | 397 | } |
398 | updateView(); | 398 | updateView(); |
399 | 399 | ||
400 | } | 400 | } |
401 | 401 | ||
402 | // END: Slots | 402 | // END: Slots |
403 | 403 | ||
404 | void AbView::clearForCategory() | 404 | void AbView::clearForCategory() |
405 | { | 405 | { |
406 | Opie::OPimContactAccess::List::Iterator it; | 406 | Opie::OPimContactAccess::List::Iterator it; |
407 | // Now remove all contacts with wrong category if any category selected | 407 | // Now remove all contacts with wrong category if any category selected |
408 | 408 | ||
409 | Opie::OPimContactAccess::List allList = m_list; | 409 | Opie::OPimContactAccess::List allList = m_list; |
410 | if ( m_curr_category != -1 ){ | 410 | if ( m_curr_category != -1 ){ |
411 | for ( it = allList.begin(); it != allList.end(); ++it ){ | 411 | for ( it = allList.begin(); it != allList.end(); ++it ){ |
412 | if ( !contactCompare( *it, m_curr_category ) ){ | 412 | if ( !contactCompare( *it, m_curr_category ) ){ |
413 | //owarn << "Removing " << (*it).uid() << oendl; | 413 | //odebug << "Removing " << (*it).uid() << oendl; |
414 | m_list.remove( (*it).uid() ); | 414 | m_list.remove( (*it).uid() ); |
415 | } | 415 | } |
416 | } | 416 | } |
417 | } | 417 | } |
418 | 418 | ||
419 | } | 419 | } |
420 | 420 | ||
421 | bool AbView::contactCompare( const Opie::OPimContact &cnt, int category ) | 421 | bool AbView::contactCompare( const Opie::OPimContact &cnt, int category ) |
422 | { | 422 | { |
423 | //owarn << "bool AbView::contactCompare( const Opie::OPimContact &cnt, " | 423 | //odebug << "bool AbView::contactCompare( const Opie::OPimContact &cnt, " |
424 | // << category << " )" << oendl; | 424 | // << category << " )" << oendl; |
425 | 425 | ||
426 | bool returnMe; | 426 | bool returnMe; |
427 | QArray<int> cats; | 427 | QArray<int> cats; |
428 | cats = cnt.categories(); | 428 | cats = cnt.categories(); |
429 | 429 | ||
430 | //owarn << "Number of categories: " << cats.count() << oendl; | 430 | //odebug << "Number of categories: " << cats.count() << oendl; |
431 | 431 | ||
432 | returnMe = false; | 432 | returnMe = false; |
433 | if ( cats.count() == 0 && category == 0 ) | 433 | if ( cats.count() == 0 && category == 0 ) |
434 | // Contacts with no category will just shown on "All" and "Unfiled" | 434 | // Contacts with no category will just shown on "All" and "Unfiled" |
435 | returnMe = true; | 435 | returnMe = true; |
436 | else { | 436 | else { |
437 | int i; | 437 | int i; |
438 | for ( i = 0; i < int(cats.count()); i++ ) { | 438 | for ( i = 0; i < int(cats.count()); i++ ) { |
439 | //owarn << "Comparing " << cats[i] << " with " << category << oendl; | 439 | //odebug << "Comparing " << cats[i] << " with " << category << oendl; |
440 | if ( cats[i] == category ) { | 440 | if ( cats[i] == category ) { |
441 | returnMe = true; | 441 | returnMe = true; |
442 | break; | 442 | break; |
443 | } | 443 | } |
444 | } | 444 | } |
445 | } | 445 | } |
446 | //owarn << "Return: " << returnMe << oendl; | 446 | //odebug << "Return: " << returnMe << oendl; |
447 | return returnMe; | 447 | return returnMe; |
448 | } | 448 | } |
449 | 449 | ||
450 | // In Some rare cases we have to update all lists.. | 450 | // In Some rare cases we have to update all lists.. |
451 | void AbView::updateListinViews() | 451 | void AbView::updateListinViews() |
452 | { | 452 | { |
453 | m_abTable -> setContacts( m_list ); | 453 | m_abTable -> setContacts( m_list ); |
454 | m_ablabel -> setContacts( m_list ); | 454 | m_ablabel -> setContacts( m_list ); |
455 | } | 455 | } |
456 | 456 | ||
457 | void AbView::updateView( bool newdata ) | 457 | void AbView::updateView( bool newdata ) |
458 | { | 458 | { |
459 | //owarn << "AbView::updateView()" << oendl; | 459 | //odebug << "AbView::updateView()" << oendl; |
460 | 460 | ||
461 | if ( m_viewStack -> visibleWidget() ){ | 461 | if ( m_viewStack -> visibleWidget() ){ |
462 | m_viewStack -> visibleWidget() -> clearFocus(); | 462 | m_viewStack -> visibleWidget() -> clearFocus(); |
463 | } | 463 | } |
464 | 464 | ||
465 | // If we switching the view, we have to store some information | 465 | // If we switching the view, we have to store some information |
466 | if ( !newdata ){ | 466 | if ( !newdata ){ |
467 | if ( m_list.count() ){ | 467 | if ( m_list.count() ){ |
468 | switch ( (int) m_prev_View ) { | 468 | switch ( (int) m_prev_View ) { |
469 | case TableView: | 469 | case TableView: |
470 | m_curr_Contact = m_abTable -> currentEntry_UID(); | 470 | m_curr_Contact = m_abTable -> currentEntry_UID(); |
471 | break; | 471 | break; |
472 | case CardView: | 472 | case CardView: |
473 | m_curr_Contact = m_ablabel -> currentEntry_UID(); | 473 | m_curr_Contact = m_ablabel -> currentEntry_UID(); |
474 | break; | 474 | break; |
475 | } | 475 | } |
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 35d0f41..835038a 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -254,49 +254,49 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
254 | //odebug << "adressbook contrsuction: t=" << t.elapsed() << oendl; | 254 | //odebug << "adressbook contrsuction: t=" << t.elapsed() << oendl; |
255 | connect( qApp, SIGNAL( flush() ), this, SLOT( flush() ) ); | 255 | connect( qApp, SIGNAL( flush() ), this, SLOT( flush() ) ); |
256 | connect( qApp, SIGNAL( reload() ), this, SLOT( reload() ) ); | 256 | connect( qApp, SIGNAL( reload() ), this, SLOT( reload() ) ); |
257 | connect( qApp, SIGNAL( appMessage(const QCString&,const QByteArray&) ), | 257 | connect( qApp, SIGNAL( appMessage(const QCString&,const QByteArray&) ), |
258 | this, SLOT( appMessage(const QCString&,const QByteArray&) ) ); | 258 | this, SLOT( appMessage(const QCString&,const QByteArray&) ) ); |
259 | 259 | ||
260 | 260 | ||
261 | isLoading = false; | 261 | isLoading = false; |
262 | } | 262 | } |
263 | 263 | ||
264 | 264 | ||
265 | void AddressbookWindow::slotConfig() | 265 | void AddressbookWindow::slotConfig() |
266 | { | 266 | { |
267 | ConfigDlg* dlg = new ConfigDlg( this, "Config" ); | 267 | ConfigDlg* dlg = new ConfigDlg( this, "Config" ); |
268 | dlg -> setConfig( m_config ); | 268 | dlg -> setConfig( m_config ); |
269 | if ( QPEApplication::execDialog( dlg ) ) { | 269 | if ( QPEApplication::execDialog( dlg ) ) { |
270 | owarn << "Config Dialog accepted!" << oendl; | 270 | odebug << "Config Dialog accepted!" << oendl; |
271 | m_config = dlg -> getConfig(); | 271 | m_config = dlg -> getConfig(); |
272 | if ( m_curFontSize != m_config.fontSize() ){ | 272 | if ( m_curFontSize != m_config.fontSize() ){ |
273 | owarn << "Font was changed!" << oendl; | 273 | odebug << "Font was changed!" << oendl; |
274 | m_curFontSize = m_config.fontSize(); | 274 | m_curFontSize = m_config.fontSize(); |
275 | emit slotSetFont( m_curFontSize ); | 275 | emit slotSetFont( m_curFontSize ); |
276 | } | 276 | } |
277 | m_abView -> setListOrder( m_config.orderList() ); | 277 | m_abView -> setListOrder( m_config.orderList() ); |
278 | } | 278 | } |
279 | 279 | ||
280 | delete dlg; | 280 | delete dlg; |
281 | } | 281 | } |
282 | 282 | ||
283 | 283 | ||
284 | void AddressbookWindow::slotSetFont( int size ) | 284 | void AddressbookWindow::slotSetFont( int size ) |
285 | { | 285 | { |
286 | owarn << "void AddressbookWindow::slotSetFont( " << size << " )" << oendl; | 286 | odebug << "void AddressbookWindow::slotSetFont( " << size << " )" << oendl; |
287 | 287 | ||
288 | if (size > 2 || size < 0) | 288 | if (size > 2 || size < 0) |
289 | size = 1; | 289 | size = 1; |
290 | 290 | ||
291 | m_config.setFontSize( size ); | 291 | m_config.setFontSize( size ); |
292 | 292 | ||
293 | QFont *currentFont; | 293 | QFont *currentFont; |
294 | 294 | ||
295 | switch (size) { | 295 | switch (size) { |
296 | case 0: | 296 | case 0: |
297 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); | 297 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); |
298 | currentFont = new QFont (m_abView->font()); | 298 | currentFont = new QFont (m_abView->font()); |
299 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX | 299 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX |
300 | // abList->resizeRows(); | 300 | // abList->resizeRows(); |
301 | break; | 301 | break; |
302 | case 1: | 302 | case 1: |
@@ -312,110 +312,110 @@ void AddressbookWindow::slotSetFont( int size ) | |||
312 | // abList->resizeRows(); | 312 | // abList->resizeRows(); |
313 | break; | 313 | break; |
314 | } | 314 | } |
315 | } | 315 | } |
316 | 316 | ||
317 | 317 | ||
318 | 318 | ||
319 | void AddressbookWindow::importvCard() { | 319 | void AddressbookWindow::importvCard() { |
320 | QString str = Opie::Ui::OFileDialog::getOpenFileName( 1,"/");//,"", "*", this ); | 320 | QString str = Opie::Ui::OFileDialog::getOpenFileName( 1,"/");//,"", "*", this ); |
321 | if(!str.isEmpty() ){ | 321 | if(!str.isEmpty() ){ |
322 | setDocument((const QString&) str ); | 322 | setDocument((const QString&) str ); |
323 | } | 323 | } |
324 | 324 | ||
325 | } | 325 | } |
326 | void AddressbookWindow::exportvCard() | 326 | void AddressbookWindow::exportvCard() |
327 | { | 327 | { |
328 | owarn << "void AddressbookWindow::exportvCard()" << oendl; | 328 | odebug << "void AddressbookWindow::exportvCard()" << oendl; |
329 | QString filename = Opie::Ui::OFileDialog::getSaveFileName( 1,"/home/"); //,"", "*", this ); | 329 | QString filename = Opie::Ui::OFileDialog::getSaveFileName( 1,"/home/"); //,"", "*", this ); |
330 | if( !filename.isEmpty() && ( filename[filename.length()-1] != '/' ) ){ | 330 | if( !filename.isEmpty() && ( filename[filename.length()-1] != '/' ) ){ |
331 | owarn << " Save to file " << filename << ", (" << filename.length()-1 << ")" << oendl; | 331 | odebug << " Save to file " << filename << ", (" << filename.length()-1 << ")" << oendl; |
332 | Opie::OPimContact curCont = m_abView->currentEntry(); | 332 | Opie::OPimContact curCont = m_abView->currentEntry(); |
333 | if ( !curCont.isEmpty() ){ | 333 | if ( !curCont.isEmpty() ){ |
334 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | 334 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, |
335 | filename ); | 335 | filename ); |
336 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook_exp", QString::null , vcard_backend, true ); | 336 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook_exp", QString::null , vcard_backend, true ); |
337 | if ( access ){ | 337 | if ( access ){ |
338 | access->add( curCont ); | 338 | access->add( curCont ); |
339 | access->save(); | 339 | access->save(); |
340 | } | 340 | } |
341 | delete access; | 341 | delete access; |
342 | }else | 342 | }else |
343 | QMessageBox::critical( 0, "Export VCard", | 343 | QMessageBox::critical( 0, "Export VCard", |
344 | QString( tr( "You have to select a contact !") ) ); | 344 | QString( tr( "You have to select a contact !") ) ); |
345 | 345 | ||
346 | }else | 346 | }else |
347 | QMessageBox::critical( 0, "Export VCard", | 347 | QMessageBox::critical( 0, "Export VCard", |
348 | QString( tr( "You have to set a filename !") ) ); | 348 | QString( tr( "You have to set a filename !") ) ); |
349 | } | 349 | } |
350 | 350 | ||
351 | void AddressbookWindow::setDocument( const QString &filename ) | 351 | void AddressbookWindow::setDocument( const QString &filename ) |
352 | { | 352 | { |
353 | owarn << "void AddressbookWindow::setDocument( " << filename << " )" << oendl; | 353 | odebug << "void AddressbookWindow::setDocument( " << filename << " )" << oendl; |
354 | 354 | ||
355 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ | 355 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ |
356 | 356 | ||
357 | 357 | ||
358 | 358 | ||
359 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), | 359 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), |
360 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), | 360 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), |
361 | tr( "&Yes" ), tr( "&No" ), QString::null, | 361 | tr( "&Yes" ), tr( "&No" ), QString::null, |
362 | 0, // Enter == button 0 | 362 | 0, // Enter == button 0 |
363 | 2 ) ) { // Escape == button 2 | 363 | 2 ) ) { // Escape == button 2 |
364 | case 0: | 364 | case 0: |
365 | owarn << "YES clicked" << oendl; | 365 | odebug << "YES clicked" << oendl; |
366 | break; | 366 | break; |
367 | case 1: | 367 | case 1: |
368 | owarn << "NO clicked" << oendl; | 368 | odebug << "NO clicked" << oendl; |
369 | return; | 369 | return; |
370 | break; | 370 | break; |
371 | } | 371 | } |
372 | } | 372 | } |
373 | 373 | ||
374 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | 374 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, |
375 | filename ); | 375 | filename ); |
376 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | 376 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); |
377 | Opie::OPimContactAccess::List allList = access->allRecords(); | 377 | Opie::OPimContactAccess::List allList = access->allRecords(); |
378 | owarn << "Found number of contacts in File: " << allList.count() << oendl; | 378 | odebug << "Found number of contacts in File: " << allList.count() << oendl; |
379 | 379 | ||
380 | if ( !allList.count() ) { | 380 | if ( !allList.count() ) { |
381 | QMessageBox::information( this, "Import VCard", | 381 | QMessageBox::information( this, "Import VCard", |
382 | "It was impossible to import\nthe VCard.\n" | 382 | "It was impossible to import\nthe VCard.\n" |
383 | "The VCard may be corrupted!" ); | 383 | "The VCard may be corrupted!" ); |
384 | } | 384 | } |
385 | 385 | ||
386 | bool doAsk = true; | 386 | bool doAsk = true; |
387 | Opie::OPimContactAccess::List::Iterator it; | 387 | Opie::OPimContactAccess::List::Iterator it; |
388 | for ( it = allList.begin(); it != allList.end(); ++it ){ | 388 | for ( it = allList.begin(); it != allList.end(); ++it ){ |
389 | owarn << "Adding Contact from: " << (*it).fullName() << oendl; | 389 | odebug << "Adding Contact from: " << (*it).fullName() << oendl; |
390 | if ( doAsk ){ | 390 | if ( doAsk ){ |
391 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), | 391 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), |
392 | tr( "Do you really want add contact for \n%1?" ) | 392 | tr( "Do you really want add contact for \n%1?" ) |
393 | .arg( (*it).fullName().latin1() ), | 393 | .arg( (*it).fullName().latin1() ), |
394 | tr( "&Yes" ), tr( "&No" ), tr( "&All Yes"), | 394 | tr( "&Yes" ), tr( "&No" ), tr( "&All Yes"), |
395 | 0, // Enter == button 0 | 395 | 0, // Enter == button 0 |
396 | 2 ) ) { // Escape == button 2 | 396 | 2 ) ) { // Escape == button 2 |
397 | case 0: | 397 | case 0: |
398 | owarn << "YES clicked" << oendl; | 398 | odebug << "YES clicked" << oendl; |
399 | m_abView->addEntry( *it ); | 399 | m_abView->addEntry( *it ); |
400 | break; | 400 | break; |
401 | case 1: | 401 | case 1: |
402 | owarn << "NO clicked" << oendl; | 402 | odebug << "NO clicked" << oendl; |
403 | break; | 403 | break; |
404 | case 2: | 404 | case 2: |
405 | owarn << "YesAll clicked" << oendl; | 405 | odebug << "YesAll clicked" << oendl; |
406 | doAsk = false; | 406 | doAsk = false; |
407 | break; | 407 | break; |
408 | } | 408 | } |
409 | }else | 409 | }else |
410 | m_abView->addEntry( *it ); | 410 | m_abView->addEntry( *it ); |
411 | 411 | ||
412 | } | 412 | } |
413 | 413 | ||
414 | delete access; | 414 | delete access; |
415 | } | 415 | } |
416 | 416 | ||
417 | void AddressbookWindow::resizeEvent( QResizeEvent *e ) | 417 | void AddressbookWindow::resizeEvent( QResizeEvent *e ) |
418 | { | 418 | { |
419 | QMainWindow::resizeEvent( e ); | 419 | QMainWindow::resizeEvent( e ); |
420 | 420 | ||
421 | 421 | ||
@@ -525,45 +525,45 @@ void AddressbookWindow::slotViewEdit() | |||
525 | 525 | ||
526 | void AddressbookWindow::writeMail() | 526 | void AddressbookWindow::writeMail() |
527 | { | 527 | { |
528 | Opie::OPimContact c = m_abView -> currentEntry(); | 528 | Opie::OPimContact c = m_abView -> currentEntry(); |
529 | QString name = c.fileAs(); | 529 | QString name = c.fileAs(); |
530 | QString email = c.defaultEmail(); | 530 | QString email = c.defaultEmail(); |
531 | 531 | ||
532 | // I prefer the OPIE-Environment variable before the | 532 | // I prefer the OPIE-Environment variable before the |
533 | // QPE-one.. | 533 | // QPE-one.. |
534 | QString basepath = QString::fromLatin1( getenv("OPIEDIR") ); | 534 | QString basepath = QString::fromLatin1( getenv("OPIEDIR") ); |
535 | if ( basepath.isEmpty() ) | 535 | if ( basepath.isEmpty() ) |
536 | basepath = QString::fromLatin1( getenv("QPEDIR") ); | 536 | basepath = QString::fromLatin1( getenv("QPEDIR") ); |
537 | 537 | ||
538 | // Try to access the preferred. If not possible, try to | 538 | // Try to access the preferred. If not possible, try to |
539 | // switch to the other one.. | 539 | // switch to the other one.. |
540 | if ( m_config.useQtMail() ){ | 540 | if ( m_config.useQtMail() ){ |
541 | owarn << "Accessing: " << (basepath + "/bin/qtmail") << oendl; | 541 | odebug << "Accessing: " << (basepath + "/bin/qtmail") << oendl; |
542 | if ( QFile::exists( basepath + "/bin/qtmail" ) ){ | 542 | if ( QFile::exists( basepath + "/bin/qtmail" ) ){ |
543 | owarn << "QCop" << oendl; | 543 | odebug << "QCop" << oendl; |
544 | QCopEnvelope e("QPE/Application/qtmail", "writeMail(QString,QString)"); | 544 | QCopEnvelope e("QPE/Application/qtmail", "writeMail(QString,QString)"); |
545 | e << name << email; | 545 | e << name << email; |
546 | return; | 546 | return; |
547 | } else | 547 | } else |
548 | m_config.setUseOpieMail( true ); | 548 | m_config.setUseOpieMail( true ); |
549 | } | 549 | } |
550 | if ( m_config.useOpieMail() ){ | 550 | if ( m_config.useOpieMail() ){ |
551 | owarn << "Accessing: " << (basepath + "/bin/opiemail") << oendl; | 551 | odebug << "Accessing: " << (basepath + "/bin/opiemail") << oendl; |
552 | if ( QFile::exists( basepath + "/bin/opiemail" ) ){ | 552 | if ( QFile::exists( basepath + "/bin/opiemail" ) ){ |
553 | owarn << "QCop" << oendl; | 553 | odebug << "QCop" << oendl; |
554 | QCopEnvelope e("QPE/Application/opiemail", "writeMail(QString,QString)"); | 554 | QCopEnvelope e("QPE/Application/opiemail", "writeMail(QString,QString)"); |
555 | e << name << email; | 555 | e << name << email; |
556 | return; | 556 | return; |
557 | } else | 557 | } else |
558 | m_config.setUseQtMail( true ); | 558 | m_config.setUseQtMail( true ); |
559 | } | 559 | } |
560 | 560 | ||
561 | } | 561 | } |
562 | 562 | ||
563 | static const char * beamfile = "/tmp/obex/contact.vcf"; | 563 | static const char * beamfile = "/tmp/obex/contact.vcf"; |
564 | 564 | ||
565 | void AddressbookWindow::slotBeam() | 565 | void AddressbookWindow::slotBeam() |
566 | { | 566 | { |
567 | QString beamFilename; | 567 | QString beamFilename; |
568 | Opie::OPimContact c; | 568 | Opie::OPimContact c; |
569 | if ( actionPersonal->isOn() ) { | 569 | if ( actionPersonal->isOn() ) { |
@@ -579,33 +579,33 @@ void AddressbookWindow::slotBeam() | |||
579 | 579 | ||
580 | delete access; | 580 | delete access; |
581 | } else { | 581 | } else { |
582 | unlink( beamfile ); // delete if exists | 582 | unlink( beamfile ); // delete if exists |
583 | mkdir("/tmp/obex/", 0755); | 583 | mkdir("/tmp/obex/", 0755); |
584 | c = m_abView -> currentEntry(); | 584 | c = m_abView -> currentEntry(); |
585 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, | 585 | Opie::OPimContactAccessBackend* vcard_backend = new Opie::OPimContactAccessBackend_VCard( QString::null, |
586 | beamfile ); | 586 | beamfile ); |
587 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); | 587 | Opie::OPimContactAccess* access = new Opie::OPimContactAccess ( "addressbook", QString::null , vcard_backend, true ); |
588 | access->add( c ); | 588 | access->add( c ); |
589 | access->save(); | 589 | access->save(); |
590 | delete access; | 590 | delete access; |
591 | 591 | ||
592 | beamFilename = beamfile; | 592 | beamFilename = beamfile; |
593 | } | 593 | } |
594 | 594 | ||
595 | owarn << "Beaming: " << beamFilename << oendl; | 595 | odebug << "Beaming: " << beamFilename << oendl; |
596 | 596 | ||
597 | Ir *ir = new Ir( this ); | 597 | Ir *ir = new Ir( this ); |
598 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | 598 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); |
599 | QString description = c.fullName(); | 599 | QString description = c.fullName(); |
600 | ir->send( beamFilename, description, "text/x-vCard" ); | 600 | ir->send( beamFilename, description, "text/x-vCard" ); |
601 | } | 601 | } |
602 | 602 | ||
603 | void AddressbookWindow::beamDone( Ir *ir ) | 603 | void AddressbookWindow::beamDone( Ir *ir ) |
604 | { | 604 | { |
605 | 605 | ||
606 | delete ir; | 606 | delete ir; |
607 | unlink( beamfile ); | 607 | unlink( beamfile ); |
608 | } | 608 | } |
609 | 609 | ||
610 | 610 | ||
611 | static void parseName( const QString& name, QString *first, QString *middle, | 611 | static void parseName( const QString& name, QString *first, QString *middle, |
@@ -626,33 +626,33 @@ static void parseName( const QString& name, QString *first, QString *middle, | |||
626 | rest = name.left( space ); | 626 | rest = name.left( space ); |
627 | } | 627 | } |
628 | int space = rest.find( ' ' ); | 628 | int space = rest.find( ' ' ); |
629 | if ( space <= 0 ) { | 629 | if ( space <= 0 ) { |
630 | *first = rest; | 630 | *first = rest; |
631 | } else { | 631 | } else { |
632 | *first = rest.left( space ); | 632 | *first = rest.left( space ); |
633 | *middle = rest.mid( space+1 ); | 633 | *middle = rest.mid( space+1 ); |
634 | } | 634 | } |
635 | 635 | ||
636 | } | 636 | } |
637 | 637 | ||
638 | 638 | ||
639 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | 639 | void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) |
640 | { | 640 | { |
641 | bool needShow = FALSE; | 641 | bool needShow = FALSE; |
642 | owarn << "Receiving QCop-Call with message " << msg << oendl; | 642 | odebug << "Receiving QCop-Call with message " << msg << oendl; |
643 | 643 | ||
644 | 644 | ||
645 | if (msg == "editPersonal()") { | 645 | if (msg == "editPersonal()") { |
646 | editPersonal(); | 646 | editPersonal(); |
647 | } else if (msg == "editPersonalAndClose()") { | 647 | } else if (msg == "editPersonalAndClose()") { |
648 | editPersonal(); | 648 | editPersonal(); |
649 | close(); | 649 | close(); |
650 | } else if ( msg == "addContact(QString,QString)" ) { | 650 | } else if ( msg == "addContact(QString,QString)" ) { |
651 | QDataStream stream(data,IO_ReadOnly); | 651 | QDataStream stream(data,IO_ReadOnly); |
652 | QString name, email; | 652 | QString name, email; |
653 | stream >> name >> email; | 653 | stream >> name >> email; |
654 | 654 | ||
655 | Opie::OPimContact cnt; | 655 | Opie::OPimContact cnt; |
656 | QString fn, mn, ln; | 656 | QString fn, mn, ln; |
657 | parseName( name, &fn, &mn, &ln ); | 657 | parseName( name, &fn, &mn, &ln ); |
658 | //odebug << " " << fn << " - " << mn " - " << ln << oendl; | 658 | //odebug << " " << fn << " - " << mn " - " << ln << oendl; |
@@ -669,33 +669,33 @@ void AddressbookWindow::appMessage(const QCString &msg, const QByteArray &data) | |||
669 | editEntry( EditEntry ); | 669 | editEntry( EditEntry ); |
670 | } else if ( msg == "beamBusinessCard()" ) { | 670 | } else if ( msg == "beamBusinessCard()" ) { |
671 | QString beamFilename = addressbookPersonalVCardName(); | 671 | QString beamFilename = addressbookPersonalVCardName(); |
672 | if ( !QFile::exists( beamFilename ) ) | 672 | if ( !QFile::exists( beamFilename ) ) |
673 | return; // can't beam a non-existent file | 673 | return; // can't beam a non-existent file |
674 | 674 | ||
675 | Ir *ir = new Ir( this ); | 675 | Ir *ir = new Ir( this ); |
676 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | 676 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); |
677 | QString description = "mycard.vcf"; | 677 | QString description = "mycard.vcf"; |
678 | ir->send( beamFilename, description, "text/x-vCard" ); | 678 | ir->send( beamFilename, description, "text/x-vCard" ); |
679 | } else if ( msg == "show(int)" ) { | 679 | } else if ( msg == "show(int)" ) { |
680 | raise(); | 680 | raise(); |
681 | QDataStream stream(data,IO_ReadOnly); | 681 | QDataStream stream(data,IO_ReadOnly); |
682 | int uid; | 682 | int uid; |
683 | stream >> uid; | 683 | stream >> uid; |
684 | 684 | ||
685 | owarn << "Showing uid: " << uid << oendl; | 685 | odebug << "Showing uid: " << uid << oendl; |
686 | 686 | ||
687 | // Deactivate Personal View.. | 687 | // Deactivate Personal View.. |
688 | if ( actionPersonal->isOn() ){ | 688 | if ( actionPersonal->isOn() ){ |
689 | actionPersonal->setOn( false ); | 689 | actionPersonal->setOn( false ); |
690 | slotPersonalView(); | 690 | slotPersonalView(); |
691 | } | 691 | } |
692 | 692 | ||
693 | // Reset category and show as card.. | 693 | // Reset category and show as card.. |
694 | m_abView -> setShowByCategory( QString::null ); | 694 | m_abView -> setShowByCategory( QString::null ); |
695 | m_abView -> setCurrentUid( uid ); | 695 | m_abView -> setCurrentUid( uid ); |
696 | slotViewSwitched ( AbView::CardView ); | 696 | slotViewSwitched ( AbView::CardView ); |
697 | 697 | ||
698 | needShow = true; | 698 | needShow = true; |
699 | 699 | ||
700 | 700 | ||
701 | } else if ( msg == "edit(int)" ) { | 701 | } else if ( msg == "edit(int)" ) { |
@@ -749,68 +749,68 @@ void AddressbookWindow::editEntry( EntryMode entryMode ) | |||
749 | replEntry.assignUid(); | 749 | replEntry.assignUid(); |
750 | 750 | ||
751 | m_abView -> replaceEntry( replEntry ); | 751 | m_abView -> replaceEntry( replEntry ); |
752 | } | 752 | } |
753 | } | 753 | } |
754 | // populateCategories(); | 754 | // populateCategories(); |
755 | 755 | ||
756 | } | 756 | } |
757 | 757 | ||
758 | void AddressbookWindow::editPersonal() | 758 | void AddressbookWindow::editPersonal() |
759 | { | 759 | { |
760 | Opie::OPimContact entry; | 760 | Opie::OPimContact entry; |
761 | 761 | ||
762 | // Switch to personal view if not selected | 762 | // Switch to personal view if not selected |
763 | // but take care of the menu, too | 763 | // but take care of the menu, too |
764 | if ( ! actionPersonal->isOn() ){ | 764 | if ( ! actionPersonal->isOn() ){ |
765 | owarn << "*** ++++" << oendl; | 765 | odebug << "*** ++++" << oendl; |
766 | actionPersonal->setOn( true ); | 766 | actionPersonal->setOn( true ); |
767 | slotPersonalView(); | 767 | slotPersonalView(); |
768 | } | 768 | } |
769 | 769 | ||
770 | if ( !abEditor ) { | 770 | if ( !abEditor ) { |
771 | abEditor = new ContactEditor( entry, this, "editor" ); | 771 | abEditor = new ContactEditor( entry, this, "editor" ); |
772 | } | 772 | } |
773 | 773 | ||
774 | abEditor->setCaption(tr("Edit My Personal Details")); | 774 | abEditor->setCaption(tr("Edit My Personal Details")); |
775 | abEditor->setPersonalView( true ); | 775 | abEditor->setPersonalView( true ); |
776 | editEntry( EditEntry ); | 776 | editEntry( EditEntry ); |
777 | abEditor->setPersonalView( false ); | 777 | abEditor->setPersonalView( false ); |
778 | 778 | ||
779 | } | 779 | } |
780 | 780 | ||
781 | 781 | ||
782 | void AddressbookWindow::slotPersonalView() | 782 | void AddressbookWindow::slotPersonalView() |
783 | { | 783 | { |
784 | owarn << "slotPersonalView()" << oendl; | 784 | odebug << "slotPersonalView()" << oendl; |
785 | if (!actionPersonal->isOn()) { | 785 | if (!actionPersonal->isOn()) { |
786 | // we just turned it off | 786 | // we just turned it off |
787 | owarn << "slotPersonalView()-> OFF" << oendl; | 787 | odebug << "slotPersonalView()-> OFF" << oendl; |
788 | setCaption( tr("Contacts") ); | 788 | setCaption( tr("Contacts") ); |
789 | actionNew->setEnabled(TRUE); | 789 | actionNew->setEnabled(TRUE); |
790 | actionTrash->setEnabled(TRUE); | 790 | actionTrash->setEnabled(TRUE); |
791 | actionFind->setEnabled(TRUE); | 791 | actionFind->setEnabled(TRUE); |
792 | actionMail->setEnabled(TRUE); | 792 | actionMail->setEnabled(TRUE); |
793 | // slotUpdateToolbar(); | 793 | // slotUpdateToolbar(); |
794 | 794 | ||
795 | m_abView->showPersonal( false ); | 795 | m_abView->showPersonal( false ); |
796 | 796 | ||
797 | return; | 797 | return; |
798 | } | 798 | } |
799 | 799 | ||
800 | owarn << "slotPersonalView()-> ON" << oendl; | 800 | odebug << "slotPersonalView()-> ON" << oendl; |
801 | // XXX need to disable some QActions. | 801 | // XXX need to disable some QActions. |
802 | actionNew->setEnabled(FALSE); | 802 | actionNew->setEnabled(FALSE); |
803 | actionTrash->setEnabled(FALSE); | 803 | actionTrash->setEnabled(FALSE); |
804 | actionFind->setEnabled(FALSE); | 804 | actionFind->setEnabled(FALSE); |
805 | actionMail->setEnabled(FALSE); | 805 | actionMail->setEnabled(FALSE); |
806 | 806 | ||
807 | setCaption( tr("Contacts - My Personal Details") ); | 807 | setCaption( tr("Contacts - My Personal Details") ); |
808 | 808 | ||
809 | m_abView->showPersonal( true ); | 809 | m_abView->showPersonal( true ); |
810 | 810 | ||
811 | } | 811 | } |
812 | 812 | ||
813 | 813 | ||
814 | void AddressbookWindow::listIsEmpty( bool empty ) | 814 | void AddressbookWindow::listIsEmpty( bool empty ) |
815 | { | 815 | { |
816 | if ( !empty ) { | 816 | if ( !empty ) { |
@@ -874,50 +874,50 @@ bool AddressbookWindow::save() | |||
874 | else | 874 | else |
875 | return FALSE; | 875 | return FALSE; |
876 | } | 876 | } |
877 | return TRUE; | 877 | return TRUE; |
878 | } | 878 | } |
879 | 879 | ||
880 | #ifdef __DEBUG_RELEASE | 880 | #ifdef __DEBUG_RELEASE |
881 | void AddressbookWindow::slotSave() | 881 | void AddressbookWindow::slotSave() |
882 | { | 882 | { |
883 | save(); | 883 | save(); |
884 | } | 884 | } |
885 | #endif | 885 | #endif |
886 | 886 | ||
887 | 887 | ||
888 | void AddressbookWindow::slotNotFound() | 888 | void AddressbookWindow::slotNotFound() |
889 | { | 889 | { |
890 | owarn << "Got not found signal!" << oendl; | 890 | odebug << "Got not found signal!" << oendl; |
891 | QMessageBox::information( this, tr( "Not Found" ), | 891 | QMessageBox::information( this, tr( "Not Found" ), |
892 | "<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" ); | 892 | "<qt>" + tr( "Unable to find a contact for this search pattern!" ) + "</qt>" ); |
893 | 893 | ||
894 | 894 | ||
895 | } | 895 | } |
896 | void AddressbookWindow::slotWrapAround() | 896 | void AddressbookWindow::slotWrapAround() |
897 | { | 897 | { |
898 | owarn << "Got wrap signal!" << oendl; | 898 | odebug << "Got wrap signal!" << oendl; |
899 | // if ( doNotifyWrapAround ) | 899 | // if ( doNotifyWrapAround ) |
900 | // QMessageBox::information( this, tr( "End of list" ), | 900 | // QMessageBox::information( this, tr( "End of list" ), |
901 | // tr( "End of list. Wrap around now...!" ) + "\n" ); | 901 | // tr( "End of list. Wrap around now...!" ) + "\n" ); |
902 | 902 | ||
903 | } | 903 | } |
904 | 904 | ||
905 | void AddressbookWindow::slotSetCategory( int c ) | 905 | void AddressbookWindow::slotSetCategory( int c ) |
906 | { | 906 | { |
907 | owarn << "void AddressbookWindow::slotSetCategory( " << c << " ) from " | 907 | odebug << "void AddressbookWindow::slotSetCategory( " << c << " ) from " |
908 | << catMenu->count() << oendl; | 908 | << catMenu->count() << oendl; |
909 | 909 | ||
910 | QString cat, book; | 910 | QString cat, book; |
911 | AbView::Views view = AbView::TableView; | 911 | AbView::Views view = AbView::TableView; |
912 | 912 | ||
913 | if ( c <= 0 ) | 913 | if ( c <= 0 ) |
914 | return; | 914 | return; |
915 | 915 | ||
916 | // Switch view | 916 | // Switch view |
917 | if ( c < 3 ) | 917 | if ( c < 3 ) |
918 | for ( unsigned int i = 1; i < 3; i++ ){ | 918 | for ( unsigned int i = 1; i < 3; i++ ){ |
919 | if ( catMenu ) | 919 | if ( catMenu ) |
920 | catMenu->setItemChecked( i, c == (int)i ); | 920 | catMenu->setItemChecked( i, c == (int)i ); |
921 | } | 921 | } |
922 | else | 922 | else |
923 | // Checkmark Category Menu Item Selected | 923 | // Checkmark Category Menu Item Selected |
@@ -927,56 +927,56 @@ void AddressbookWindow::slotSetCategory( int c ) | |||
927 | // Now switch to the selected category | 927 | // Now switch to the selected category |
928 | for ( unsigned int i = 1; i < catMenu->count(); i++ ) { | 928 | for ( unsigned int i = 1; i < catMenu->count(); i++ ) { |
929 | if (catMenu->isItemChecked( i )) { | 929 | if (catMenu->isItemChecked( i )) { |
930 | if ( i == 1 ){ // default List view | 930 | if ( i == 1 ){ // default List view |
931 | book = QString::null; | 931 | book = QString::null; |
932 | view = AbView::TableView; | 932 | view = AbView::TableView; |
933 | }else if ( i == 2 ){ | 933 | }else if ( i == 2 ){ |
934 | book = tr( "Cards" ); | 934 | book = tr( "Cards" ); |
935 | view = AbView::CardView; | 935 | view = AbView::CardView; |
936 | // }else if ( i == 3 ){ | 936 | // }else if ( i == 3 ){ |
937 | // book = tr( "Personal" ); | 937 | // book = tr( "Personal" ); |
938 | // view = AbView:: PersonalView; | 938 | // view = AbView:: PersonalView; |
939 | }else if ( i == 3 ){ // default All Categories | 939 | }else if ( i == 3 ){ // default All Categories |
940 | cat = QString::null; | 940 | cat = QString::null; |
941 | }else if ( i == (unsigned int)catMenu->count() - 1 ){ // last menu option (seperator is counted, too) will be Unfiled | 941 | }else if ( i == (unsigned int)catMenu->count() - 1 ){ // last menu option (seperator is counted, too) will be Unfiled |
942 | cat = "Unfiled"; | 942 | cat = "Unfiled"; |
943 | owarn << "Unfiled selected!" << oendl; | 943 | odebug << "Unfiled selected!" << oendl; |
944 | }else{ | 944 | }else{ |
945 | cat = m_abView->categories()[i - 4]; | 945 | cat = m_abView->categories()[i - 4]; |
946 | } | 946 | } |
947 | } | 947 | } |
948 | } | 948 | } |
949 | 949 | ||
950 | // Switch to the selected View | 950 | // Switch to the selected View |
951 | slotViewSwitched( view ); | 951 | slotViewSwitched( view ); |
952 | 952 | ||
953 | // Tell the view about the selected category | 953 | // Tell the view about the selected category |
954 | m_abView -> setShowByCategory( cat ); | 954 | m_abView -> setShowByCategory( cat ); |
955 | 955 | ||
956 | if ( book.isEmpty() ) | 956 | if ( book.isEmpty() ) |
957 | book = "List"; | 957 | book = "List"; |
958 | if ( cat.isEmpty() ) | 958 | if ( cat.isEmpty() ) |
959 | cat = "All"; | 959 | cat = "All"; |
960 | 960 | ||
961 | setCaption( tr( "Contacts" ) + " - " + book + " - " + tr( cat ) ); | 961 | setCaption( tr( "Contacts" ) + " - " + book + " - " + tr( cat ) ); |
962 | } | 962 | } |
963 | 963 | ||
964 | void AddressbookWindow::slotViewSwitched( int view ) | 964 | void AddressbookWindow::slotViewSwitched( int view ) |
965 | { | 965 | { |
966 | owarn << "void AddressbookWindow::slotViewSwitched( " << view << " )" << oendl; | 966 | odebug << "void AddressbookWindow::slotViewSwitched( " << view << " )" << oendl; |
967 | int menu = 0; | 967 | int menu = 0; |
968 | 968 | ||
969 | // Switch to selected view | 969 | // Switch to selected view |
970 | switch ( view ){ | 970 | switch ( view ){ |
971 | case AbView::TableView: | 971 | case AbView::TableView: |
972 | menu = 1; | 972 | menu = 1; |
973 | m_tableViewButton->setOn(true); | 973 | m_tableViewButton->setOn(true); |
974 | m_cardViewButton->setOn(false); | 974 | m_cardViewButton->setOn(false); |
975 | break; | 975 | break; |
976 | case AbView::CardView: | 976 | case AbView::CardView: |
977 | menu = 2; | 977 | menu = 2; |
978 | m_tableViewButton->setOn(false); | 978 | m_tableViewButton->setOn(false); |
979 | m_cardViewButton->setOn(true); | 979 | m_cardViewButton->setOn(true); |
980 | break; | 980 | break; |
981 | } | 981 | } |
982 | for ( unsigned int i = 1; i < 3; i++ ){ | 982 | for ( unsigned int i = 1; i < 3; i++ ){ |
diff --git a/core/pim/addressbook/configdlg.cpp b/core/pim/addressbook/configdlg.cpp index 22f7291..61e6c7e 100644 --- a/core/pim/addressbook/configdlg.cpp +++ b/core/pim/addressbook/configdlg.cpp | |||
@@ -30,72 +30,72 @@ ConfigDlg::ConfigDlg( QWidget *parent, const char *name): | |||
30 | m_addButton->setIconSet( QIconSet( Resource::loadPixmap( "addressbook/add" ) ) ); | 30 | m_addButton->setIconSet( QIconSet( Resource::loadPixmap( "addressbook/add" ) ) ); |
31 | m_removeButton->setIconSet( QIconSet( Resource::loadPixmap( "addressbook/sub" ) ) ); | 31 | m_removeButton->setIconSet( QIconSet( Resource::loadPixmap( "addressbook/sub" ) ) ); |
32 | 32 | ||
33 | 33 | ||
34 | // Get the translation maps between Field ID and translated strings | 34 | // Get the translation maps between Field ID and translated strings |
35 | m_mapStrToID = Opie::OPimContactFields::trFieldsToId(); | 35 | m_mapStrToID = Opie::OPimContactFields::trFieldsToId(); |
36 | m_mapIDToStr = Opie::OPimContactFields::idToTrFields(); | 36 | m_mapIDToStr = Opie::OPimContactFields::idToTrFields(); |
37 | 37 | ||
38 | connect ( m_addButton, SIGNAL( clicked() ), this, SLOT( slotItemAdd() ) ); | 38 | connect ( m_addButton, SIGNAL( clicked() ), this, SLOT( slotItemAdd() ) ); |
39 | connect ( m_removeButton, SIGNAL( clicked() ), this, SLOT( slotItemRemove() ) ); | 39 | connect ( m_removeButton, SIGNAL( clicked() ), this, SLOT( slotItemRemove() ) ); |
40 | connect ( m_upButton, SIGNAL( clicked() ), this, SLOT( slotItemUp() ) ); | 40 | connect ( m_upButton, SIGNAL( clicked() ), this, SLOT( slotItemUp() ) ); |
41 | connect ( m_downButton, SIGNAL( clicked() ), this, SLOT( slotItemDown() ) ); | 41 | connect ( m_downButton, SIGNAL( clicked() ), this, SLOT( slotItemDown() ) ); |
42 | } | 42 | } |
43 | 43 | ||
44 | void ConfigDlg::slotItemUp() | 44 | void ConfigDlg::slotItemUp() |
45 | { | 45 | { |
46 | owarn << "void ConfigDlg::slotItemUp()" << oendl; | 46 | odebug << "void ConfigDlg::slotItemUp()" << oendl; |
47 | 47 | ||
48 | int i = fieldListBox->currentItem(); | 48 | int i = fieldListBox->currentItem(); |
49 | if ( i > 0 ) { | 49 | if ( i > 0 ) { |
50 | QString item = fieldListBox->currentText(); | 50 | QString item = fieldListBox->currentText(); |
51 | fieldListBox->removeItem( i ); | 51 | fieldListBox->removeItem( i ); |
52 | fieldListBox->insertItem( item, i-1 ); | 52 | fieldListBox->insertItem( item, i-1 ); |
53 | fieldListBox->setCurrentItem( i-1 ); | 53 | fieldListBox->setCurrentItem( i-1 ); |
54 | } | 54 | } |
55 | 55 | ||
56 | } | 56 | } |
57 | 57 | ||
58 | void ConfigDlg::slotItemDown() | 58 | void ConfigDlg::slotItemDown() |
59 | { | 59 | { |
60 | owarn << "void ConfigDlg::slotItemDown()" << oendl; | 60 | odebug << "void ConfigDlg::slotItemDown()" << oendl; |
61 | 61 | ||
62 | int i = fieldListBox->currentItem(); | 62 | int i = fieldListBox->currentItem(); |
63 | if ( i < (int)fieldListBox->count() - 1 ) { | 63 | if ( i < (int)fieldListBox->count() - 1 ) { |
64 | QString item = fieldListBox->currentText(); | 64 | QString item = fieldListBox->currentText(); |
65 | fieldListBox->removeItem( i ); | 65 | fieldListBox->removeItem( i ); |
66 | fieldListBox->insertItem( item, i+1 ); | 66 | fieldListBox->insertItem( item, i+1 ); |
67 | fieldListBox->setCurrentItem( i+1 ); | 67 | fieldListBox->setCurrentItem( i+1 ); |
68 | } | 68 | } |
69 | } | 69 | } |
70 | 70 | ||
71 | void ConfigDlg::slotItemAdd() | 71 | void ConfigDlg::slotItemAdd() |
72 | { | 72 | { |
73 | owarn << "void ConfigDlg::slotItemAdd()" << oendl; | 73 | odebug << "void ConfigDlg::slotItemAdd()" << oendl; |
74 | 74 | ||
75 | int i = allFieldListBox->currentItem(); | 75 | int i = allFieldListBox->currentItem(); |
76 | if ( i > 0 ) { | 76 | if ( i > 0 ) { |
77 | QString item = allFieldListBox->currentText(); | 77 | QString item = allFieldListBox->currentText(); |
78 | owarn << "Adding " << item << oendl; | 78 | odebug << "Adding " << item << oendl; |
79 | fieldListBox->insertItem( item ); | 79 | fieldListBox->insertItem( item ); |
80 | } | 80 | } |
81 | } | 81 | } |
82 | 82 | ||
83 | void ConfigDlg::slotItemRemove() | 83 | void ConfigDlg::slotItemRemove() |
84 | { | 84 | { |
85 | owarn << "void ConfigDlg::slotItemRemove()" << oendl; | 85 | odebug << "void ConfigDlg::slotItemRemove()" << oendl; |
86 | 86 | ||
87 | int i = fieldListBox->currentItem(); | 87 | int i = fieldListBox->currentItem(); |
88 | if ( i > 0 ) { | 88 | if ( i > 0 ) { |
89 | fieldListBox->removeItem( i ); | 89 | fieldListBox->removeItem( i ); |
90 | } | 90 | } |
91 | } | 91 | } |
92 | 92 | ||
93 | void ConfigDlg::setConfig( const AbConfig& cnf ) | 93 | void ConfigDlg::setConfig( const AbConfig& cnf ) |
94 | { | 94 | { |
95 | m_config = cnf; | 95 | m_config = cnf; |
96 | 96 | ||
97 | m_useRegExp->setChecked( m_config.useRegExp() ); | 97 | m_useRegExp->setChecked( m_config.useRegExp() ); |
98 | m_useWildCard->setChecked( m_config.useWildCards() ); | 98 | m_useWildCard->setChecked( m_config.useWildCards() ); |
99 | m_useQtMail->setChecked( m_config.useQtMail() ); | 99 | m_useQtMail->setChecked( m_config.useQtMail() ); |
100 | m_useOpieMail->setChecked( m_config.useOpieMail() ); | 100 | m_useOpieMail->setChecked( m_config.useOpieMail() ); |
101 | m_useCaseSensitive->setChecked( m_config.beCaseSensitive() ); | 101 | m_useCaseSensitive->setChecked( m_config.beCaseSensitive() ); |
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index 312c663..b078968 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp | |||
@@ -66,33 +66,33 @@ ContactEditor::ContactEditor( const Opie::OPimContact &entry, | |||
66 | { | 66 | { |
67 | 67 | ||
68 | initializing = true; | 68 | initializing = true; |
69 | 69 | ||
70 | init(); | 70 | init(); |
71 | setEntry( entry ); | 71 | setEntry( entry ); |
72 | // cmbDefaultEmail = 0; | 72 | // cmbDefaultEmail = 0; |
73 | // defaultEmailChooserPosition = -1; | 73 | // defaultEmailChooserPosition = -1; |
74 | 74 | ||
75 | initializing = false; | 75 | initializing = false; |
76 | } | 76 | } |
77 | 77 | ||
78 | ContactEditor::~ContactEditor() { | 78 | ContactEditor::~ContactEditor() { |
79 | } | 79 | } |
80 | 80 | ||
81 | void ContactEditor::init() { | 81 | void ContactEditor::init() { |
82 | owarn << "init() START" << oendl; | 82 | odebug << "init() START" << oendl; |
83 | 83 | ||
84 | uint i = 0; | 84 | uint i = 0; |
85 | 85 | ||
86 | QStringList trlChooserNames; | 86 | QStringList trlChooserNames; |
87 | 87 | ||
88 | for (i = 0; i <= 6; i++) { | 88 | for (i = 0; i <= 6; i++) { |
89 | slHomeAddress.append( "" ); | 89 | slHomeAddress.append( "" ); |
90 | slBusinessAddress.append( "" ); | 90 | slBusinessAddress.append( "" ); |
91 | } | 91 | } |
92 | 92 | ||
93 | trlChooserNames = Opie::OPimContactFields::trphonefields( false ); | 93 | trlChooserNames = Opie::OPimContactFields::trphonefields( false ); |
94 | slChooserNames = Opie::OPimContactFields::untrphonefields( false ); | 94 | slChooserNames = Opie::OPimContactFields::untrphonefields( false ); |
95 | slDynamicEntries = Opie::OPimContactFields::untrdetailsfields( false ); | 95 | slDynamicEntries = Opie::OPimContactFields::untrdetailsfields( false ); |
96 | trlDynamicEntries = Opie::OPimContactFields::trdetailsfields( false ); | 96 | trlDynamicEntries = Opie::OPimContactFields::trdetailsfields( false ); |
97 | 97 | ||
98 | // Ok, we have to remove elements from the list of dynamic entries | 98 | // Ok, we have to remove elements from the list of dynamic entries |
@@ -675,33 +675,33 @@ void ContactEditor::init() { | |||
675 | this, SLOT(slotCountryChange(const QString&)) ); | 675 | this, SLOT(slotCountryChange(const QString&)) ); |
676 | connect( cmbChooserField1, SIGNAL(activated(int)), | 676 | connect( cmbChooserField1, SIGNAL(activated(int)), |
677 | this, SLOT(slotCmbChooser1Change(int)) ); | 677 | this, SLOT(slotCmbChooser1Change(int)) ); |
678 | connect( cmbChooserField2, SIGNAL(activated(int)), | 678 | connect( cmbChooserField2, SIGNAL(activated(int)), |
679 | this, SLOT(slotCmbChooser2Change(int)) ); | 679 | this, SLOT(slotCmbChooser2Change(int)) ); |
680 | connect( cmbChooserField3, SIGNAL(activated(int)), | 680 | connect( cmbChooserField3, SIGNAL(activated(int)), |
681 | this, SLOT(slotCmbChooser3Change(int)) ); | 681 | this, SLOT(slotCmbChooser3Change(int)) ); |
682 | connect( cmbChooserField4, SIGNAL(activated(int)), | 682 | connect( cmbChooserField4, SIGNAL(activated(int)), |
683 | this, SLOT(slotCmbChooser4Change(int)) ); | 683 | this, SLOT(slotCmbChooser4Change(int)) ); |
684 | connect( cmbAddress, SIGNAL(activated(int)), | 684 | connect( cmbAddress, SIGNAL(activated(int)), |
685 | this, SLOT(slotAddressTypeChange(int)) ); | 685 | this, SLOT(slotAddressTypeChange(int)) ); |
686 | 686 | ||
687 | new QPEDialogListener(this); | 687 | new QPEDialogListener(this); |
688 | 688 | ||
689 | setPersonalView ( m_personalView ); | 689 | setPersonalView ( m_personalView ); |
690 | 690 | ||
691 | owarn << "init() END" << oendl; | 691 | odebug << "init() END" << oendl; |
692 | } | 692 | } |
693 | 693 | ||
694 | void ContactEditor::defaultEmailChanged(int i){ | 694 | void ContactEditor::defaultEmailChanged(int i){ |
695 | odebug << "defaultEmailChanged" << oendl; | 695 | odebug << "defaultEmailChanged" << oendl; |
696 | 696 | ||
697 | // was sollte das ? (se) | 697 | // was sollte das ? (se) |
698 | // int index = cmbChooserField1->currentItem(); | 698 | // int index = cmbChooserField1->currentItem(); |
699 | // slChooserValues[index] = cmbDefaultEmail->text(i); | 699 | // slChooserValues[index] = cmbDefaultEmail->text(i); |
700 | 700 | ||
701 | defaultEmail = cmbDefaultEmail->text(i); | 701 | defaultEmail = cmbDefaultEmail->text(i); |
702 | odebug << "Changed to: " << defaultEmail << oendl; | 702 | odebug << "Changed to: " << defaultEmail << oendl; |
703 | 703 | ||
704 | } | 704 | } |
705 | 705 | ||
706 | void ContactEditor::populateDefaultEmailCmb(){ | 706 | void ContactEditor::populateDefaultEmailCmb(){ |
707 | 707 | ||
@@ -726,41 +726,41 @@ void ContactEditor::populateDefaultEmailCmb(){ | |||
726 | odebug << "set" << oendl; | 726 | odebug << "set" << oendl; |
727 | found = true; | 727 | found = true; |
728 | } | 728 | } |
729 | } | 729 | } |
730 | 730 | ||
731 | // If the current default email is not found in the list, we choose the | 731 | // If the current default email is not found in the list, we choose the |
732 | // first one.. | 732 | // first one.. |
733 | if ( !found ) | 733 | if ( !found ) |
734 | defaultEmail = cmbDefaultEmail->text(0); | 734 | defaultEmail = cmbDefaultEmail->text(0); |
735 | } | 735 | } |
736 | 736 | ||
737 | // Called when any combobox was changed. | 737 | // Called when any combobox was changed. |
738 | // "true" returned if the change was chandled by this function, else it should | 738 | // "true" returned if the change was chandled by this function, else it should |
739 | // be handled by something else.. | 739 | // be handled by something else.. |
740 | bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int widgetPos ) { | 740 | bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int widgetPos ) { |
741 | QString type = slChooserNames[index]; | 741 | QString type = slChooserNames[index]; |
742 | owarn << "ContactEditor::cmbChooserChange -> Type: " << type | 742 | odebug << "ContactEditor::cmbChooserChange -> Type: " << type |
743 | << ", WidgetPos: " << widgetPos << oendl; | 743 | << ", WidgetPos: " << widgetPos << oendl; |
744 | 744 | ||
745 | if ( !initializing ) | 745 | if ( !initializing ) |
746 | contactfields.setFieldOrder( widgetPos-1, index ); | 746 | contactfields.setFieldOrder( widgetPos-1, index ); |
747 | 747 | ||
748 | // Create and connect combobox for selecting the default email | 748 | // Create and connect combobox for selecting the default email |
749 | if ( type == "Default Email"){ | 749 | if ( type == "Default Email"){ |
750 | owarn << "Choosing default-email (defaultEmailChooserPosition= " | 750 | odebug << "Choosing default-email (defaultEmailChooserPosition= " |
751 | << defaultEmailChooserPosition << ") " << oendl; | 751 | << defaultEmailChooserPosition << ") " << oendl; |
752 | 752 | ||
753 | // More than one default-email chooser is not allowed ! | 753 | // More than one default-email chooser is not allowed ! |
754 | if ( ( defaultEmailChooserPosition != -1 ) && | 754 | if ( ( defaultEmailChooserPosition != -1 ) && |
755 | defaultEmailChooserPosition != widgetPos && !initializing){ | 755 | defaultEmailChooserPosition != widgetPos && !initializing){ |
756 | chooserError( widgetPos ); | 756 | chooserError( widgetPos ); |
757 | return true; | 757 | return true; |
758 | } | 758 | } |
759 | 759 | ||
760 | QComboBox* cmbo = ( QComboBox* ) inputStack -> widget( Combo ); | 760 | QComboBox* cmbo = ( QComboBox* ) inputStack -> widget( Combo ); |
761 | if ( cmbo ){ | 761 | if ( cmbo ){ |
762 | inputStack->raiseWidget( TextField ); | 762 | inputStack->raiseWidget( TextField ); |
763 | inputStack -> removeWidget( cmbo ); | 763 | inputStack -> removeWidget( cmbo ); |
764 | delete cmbo; | 764 | delete cmbo; |
765 | } | 765 | } |
766 | cmbo = new QComboBox( inputStack ); | 766 | cmbo = new QComboBox( inputStack ); |
@@ -768,33 +768,33 @@ bool ContactEditor::cmbChooserChange( int index, QWidgetStack* inputStack, int w | |||
768 | 768 | ||
769 | inputStack -> addWidget( cmbo, Combo ); | 769 | inputStack -> addWidget( cmbo, Combo ); |
770 | inputStack -> raiseWidget( Combo ); | 770 | inputStack -> raiseWidget( Combo ); |
771 | 771 | ||
772 | defaultEmailChooserPosition = widgetPos; | 772 | defaultEmailChooserPosition = widgetPos; |
773 | cmbDefaultEmail = cmbo; | 773 | cmbDefaultEmail = cmbo; |
774 | 774 | ||
775 | connect( cmbo,SIGNAL( activated(int) ), | 775 | connect( cmbo,SIGNAL( activated(int) ), |
776 | SLOT( defaultEmailChanged(int) ) ); | 776 | SLOT( defaultEmailChanged(int) ) ); |
777 | 777 | ||
778 | // Set current default email | 778 | // Set current default email |
779 | populateDefaultEmailCmb(); | 779 | populateDefaultEmailCmb(); |
780 | 780 | ||
781 | 781 | ||
782 | } else { | 782 | } else { |
783 | // Something else was selected: Hide combo.. | 783 | // Something else was selected: Hide combo.. |
784 | owarn << " Hiding default-email combo" << oendl; | 784 | odebug << " Hiding default-email combo" << oendl; |
785 | if ( defaultEmailChooserPosition == widgetPos ){ | 785 | if ( defaultEmailChooserPosition == widgetPos ){ |
786 | defaultEmailChooserPosition = -1; | 786 | defaultEmailChooserPosition = -1; |
787 | } | 787 | } |
788 | QComboBox* cmbo = ( QComboBox* ) inputStack -> widget( Combo ); | 788 | QComboBox* cmbo = ( QComboBox* ) inputStack -> widget( Combo ); |
789 | if ( cmbo ){ | 789 | if ( cmbo ){ |
790 | inputStack->raiseWidget( TextField ); | 790 | inputStack->raiseWidget( TextField ); |
791 | inputStack -> removeWidget( cmbo ); | 791 | inputStack -> removeWidget( cmbo ); |
792 | cmbDefaultEmail = 0l; | 792 | cmbDefaultEmail = 0l; |
793 | delete cmbo; | 793 | delete cmbo; |
794 | } | 794 | } |
795 | 795 | ||
796 | // Caller should initialize the responsible textfield, therefore | 796 | // Caller should initialize the responsible textfield, therefore |
797 | // "false" is returned | 797 | // "false" is returned |
798 | return false; | 798 | return false; |
799 | } | 799 | } |
800 | 800 | ||
@@ -834,68 +834,68 @@ void ContactEditor::chooserError( int index ) | |||
834 | cmbChooserField4 -> setCurrentItem( 0 ); | 834 | cmbChooserField4 -> setCurrentItem( 0 ); |
835 | slotCmbChooser4Change( 0 ); | 835 | slotCmbChooser4Change( 0 ); |
836 | break; | 836 | break; |
837 | } | 837 | } |
838 | } | 838 | } |
839 | 839 | ||
840 | // Called when something was changed in a textfield (shouldn't it called textchanged? (se)) | 840 | // Called when something was changed in a textfield (shouldn't it called textchanged? (se)) |
841 | void ContactEditor::chooserChange( const QString &textChanged, int index, | 841 | void ContactEditor::chooserChange( const QString &textChanged, int index, |
842 | QLineEdit* , int widgetPos ) { | 842 | QLineEdit* , int widgetPos ) { |
843 | 843 | ||
844 | QString type = slChooserNames[index]; // :SX | 844 | QString type = slChooserNames[index]; // :SX |
845 | odebug << "ContactEditor::chooserChange( type=>" << type << "<, textChanged=>" | 845 | odebug << "ContactEditor::chooserChange( type=>" << type << "<, textChanged=>" |
846 | << textChanged << "< index=" << index << ", widgetPos=" << widgetPos | 846 | << textChanged << "< index=" << index << ", widgetPos=" << widgetPos |
847 | << " )" << oendl; | 847 | << " )" << oendl; |
848 | 848 | ||
849 | if ( type == "Default Email"){ | 849 | if ( type == "Default Email"){ |
850 | owarn << "??? Wozu??: " << textChanged << oendl; | 850 | odebug << "??? Wozu??: " << textChanged << oendl; |
851 | defaultEmail = textChanged; | 851 | defaultEmail = textChanged; |
852 | 852 | ||
853 | populateDefaultEmailCmb(); | 853 | populateDefaultEmailCmb(); |
854 | 854 | ||
855 | }else if (type == "Emails"){ | 855 | }else if (type == "Emails"){ |
856 | odebug << "emails" << oendl; | 856 | odebug << "emails" << oendl; |
857 | 857 | ||
858 | QString de; | 858 | QString de; |
859 | emails = QStringList::split (",", textChanged ); | 859 | emails = QStringList::split (",", textChanged ); |
860 | 860 | ||
861 | populateDefaultEmailCmb(); | 861 | populateDefaultEmailCmb(); |
862 | } | 862 | } |
863 | 863 | ||
864 | slChooserValues[index] = textChanged; | 864 | slChooserValues[index] = textChanged; |
865 | 865 | ||
866 | } | 866 | } |
867 | 867 | ||
868 | void ContactEditor::slotChooser1Change( const QString &textChanged ) { | 868 | void ContactEditor::slotChooser1Change( const QString &textChanged ) { |
869 | owarn << "ContactEditor::slotChooser1Change( " << textChanged << " )" << oendl; | 869 | odebug << "ContactEditor::slotChooser1Change( " << textChanged << " )" << oendl; |
870 | chooserChange( textChanged, cmbChooserField1->currentItem(), txtChooserField1, 1); | 870 | chooserChange( textChanged, cmbChooserField1->currentItem(), txtChooserField1, 1); |
871 | } | 871 | } |
872 | 872 | ||
873 | void ContactEditor::slotChooser2Change( const QString &textChanged ) { | 873 | void ContactEditor::slotChooser2Change( const QString &textChanged ) { |
874 | owarn << "ContactEditor::slotChooser2Change( " << textChanged << " )" << oendl; | 874 | odebug << "ContactEditor::slotChooser2Change( " << textChanged << " )" << oendl; |
875 | chooserChange( textChanged, cmbChooserField2->currentItem(), txtChooserField2, 2); | 875 | chooserChange( textChanged, cmbChooserField2->currentItem(), txtChooserField2, 2); |
876 | 876 | ||
877 | } | 877 | } |
878 | 878 | ||
879 | void ContactEditor::slotChooser3Change( const QString &textChanged ) { | 879 | void ContactEditor::slotChooser3Change( const QString &textChanged ) { |
880 | owarn << "ContactEditor::slotChooser3Change( " << textChanged << " )" << oendl; | 880 | odebug << "ContactEditor::slotChooser3Change( " << textChanged << " )" << oendl; |
881 | chooserChange( textChanged, cmbChooserField3->currentItem(), txtChooserField3, 3); | 881 | chooserChange( textChanged, cmbChooserField3->currentItem(), txtChooserField3, 3); |
882 | } | 882 | } |
883 | 883 | ||
884 | void ContactEditor::slotChooser4Change( const QString &textChanged ) { | 884 | void ContactEditor::slotChooser4Change( const QString &textChanged ) { |
885 | owarn << "ContactEditor::slotChooser4Change( " << textChanged << " )" << oendl; | 885 | odebug << "ContactEditor::slotChooser4Change( " << textChanged << " )" << oendl; |
886 | chooserChange( textChanged, cmbChooserField4->currentItem(), txtChooserField4, 4); | 886 | chooserChange( textChanged, cmbChooserField4->currentItem(), txtChooserField4, 4); |
887 | } | 887 | } |
888 | 888 | ||
889 | void ContactEditor::slotAddressChange( const QString &textChanged ) { | 889 | void ContactEditor::slotAddressChange( const QString &textChanged ) { |
890 | 890 | ||
891 | if ( cmbAddress->currentItem() == 0 ) { | 891 | if ( cmbAddress->currentItem() == 0 ) { |
892 | slBusinessAddress[0] = textChanged; | 892 | slBusinessAddress[0] = textChanged; |
893 | } else { | 893 | } else { |
894 | slHomeAddress[0] = textChanged; | 894 | slHomeAddress[0] = textChanged; |
895 | } | 895 | } |
896 | } | 896 | } |
897 | 897 | ||
898 | void ContactEditor::slotAddress2Change( const QString &textChanged ) { | 898 | void ContactEditor::slotAddress2Change( const QString &textChanged ) { |
899 | 899 | ||
900 | if ( cmbAddress->currentItem() == 0 ) { | 900 | if ( cmbAddress->currentItem() == 0 ) { |
901 | slBusinessAddress[1] = textChanged; | 901 | slBusinessAddress[1] = textChanged; |
@@ -939,66 +939,66 @@ void ContactEditor::slotZipChange( const QString &textChanged ) { | |||
939 | } else { | 939 | } else { |
940 | slHomeAddress[5] = textChanged; | 940 | slHomeAddress[5] = textChanged; |
941 | } | 941 | } |
942 | } | 942 | } |
943 | 943 | ||
944 | void ContactEditor::slotCountryChange( const QString &textChanged ) { | 944 | void ContactEditor::slotCountryChange( const QString &textChanged ) { |
945 | 945 | ||
946 | if ( cmbAddress->currentItem() == 0 ) { | 946 | if ( cmbAddress->currentItem() == 0 ) { |
947 | slBusinessAddress[6] = textChanged; | 947 | slBusinessAddress[6] = textChanged; |
948 | } else { | 948 | } else { |
949 | slHomeAddress[6] = textChanged; | 949 | slHomeAddress[6] = textChanged; |
950 | } | 950 | } |
951 | } | 951 | } |
952 | 952 | ||
953 | 953 | ||
954 | void ContactEditor::slotCmbChooser1Change( int index ) { | 954 | void ContactEditor::slotCmbChooser1Change( int index ) { |
955 | owarn << "ContactEditor::slotCmbChooser1Change( " << index << " )" << oendl; | 955 | odebug << "ContactEditor::slotCmbChooser1Change( " << index << " )" << oendl; |
956 | if ( !cmbChooserChange( cmbChooserField1->currentItem(), m_widgetStack1, 1) ){ | 956 | if ( !cmbChooserChange( cmbChooserField1->currentItem(), m_widgetStack1, 1) ){ |
957 | 957 | ||
958 | txtChooserField1->setText( slChooserValues[index] ); | 958 | txtChooserField1->setText( slChooserValues[index] ); |
959 | txtChooserField1->setFocus(); | 959 | txtChooserField1->setFocus(); |
960 | 960 | ||
961 | } | 961 | } |
962 | 962 | ||
963 | } | 963 | } |
964 | 964 | ||
965 | void ContactEditor::slotCmbChooser2Change( int index ) { | 965 | void ContactEditor::slotCmbChooser2Change( int index ) { |
966 | owarn << "ContactEditor::slotCmbChooser2Change( " << index << " )" << oendl; | 966 | odebug << "ContactEditor::slotCmbChooser2Change( " << index << " )" << oendl; |
967 | 967 | ||
968 | if ( !cmbChooserChange( cmbChooserField2->currentItem(), m_widgetStack2, 2) ){ | 968 | if ( !cmbChooserChange( cmbChooserField2->currentItem(), m_widgetStack2, 2) ){ |
969 | 969 | ||
970 | txtChooserField2->setText( slChooserValues[index] ); | 970 | txtChooserField2->setText( slChooserValues[index] ); |
971 | txtChooserField2->setFocus(); | 971 | txtChooserField2->setFocus(); |
972 | 972 | ||
973 | } | 973 | } |
974 | } | 974 | } |
975 | 975 | ||
976 | void ContactEditor::slotCmbChooser3Change( int index ) { | 976 | void ContactEditor::slotCmbChooser3Change( int index ) { |
977 | owarn << "ContactEditor::slotCmbChooser3Change( " << index << " )" << oendl; | 977 | odebug << "ContactEditor::slotCmbChooser3Change( " << index << " )" << oendl; |
978 | 978 | ||
979 | if ( !cmbChooserChange( cmbChooserField3->currentItem(), m_widgetStack3, 3) ){ | 979 | if ( !cmbChooserChange( cmbChooserField3->currentItem(), m_widgetStack3, 3) ){ |
980 | 980 | ||
981 | txtChooserField3->setText( slChooserValues[index] ); | 981 | txtChooserField3->setText( slChooserValues[index] ); |
982 | txtChooserField3->setFocus(); | 982 | txtChooserField3->setFocus(); |
983 | 983 | ||
984 | } | 984 | } |
985 | } | 985 | } |
986 | 986 | ||
987 | void ContactEditor::slotCmbChooser4Change( int index ) { | 987 | void ContactEditor::slotCmbChooser4Change( int index ) { |
988 | owarn << "ContactEditor::slotCmbChooser4Change( " << index << " )" << oendl; | 988 | odebug << "ContactEditor::slotCmbChooser4Change( " << index << " )" << oendl; |
989 | 989 | ||
990 | if ( !cmbChooserChange( cmbChooserField4->currentItem(), m_widgetStack4, 4) ){ | 990 | if ( !cmbChooserChange( cmbChooserField4->currentItem(), m_widgetStack4, 4) ){ |
991 | 991 | ||
992 | txtChooserField4->setText( slChooserValues[index] ); | 992 | txtChooserField4->setText( slChooserValues[index] ); |
993 | txtChooserField4->setFocus(); | 993 | txtChooserField4->setFocus(); |
994 | 994 | ||
995 | } | 995 | } |
996 | } | 996 | } |
997 | 997 | ||
998 | void ContactEditor::slotAddressTypeChange( int index ) { | 998 | void ContactEditor::slotAddressTypeChange( int index ) { |
999 | 999 | ||
1000 | 1000 | ||
1001 | if ( !initializing ) | 1001 | if ( !initializing ) |
1002 | contactfields.setFieldOrder( 4, index ); | 1002 | contactfields.setFieldOrder( 4, index ); |
1003 | 1003 | ||
1004 | 1004 | ||
@@ -1017,57 +1017,57 @@ void ContactEditor::slotAddressTypeChange( int index ) { | |||
1017 | 1017 | ||
1018 | txtAddress->setText( slHomeAddress[0] ); | 1018 | txtAddress->setText( slHomeAddress[0] ); |
1019 | //txtAddress2->setText( (*slHomeAddress)[1] ); | 1019 | //txtAddress2->setText( (*slHomeAddress)[1] ); |
1020 | //txtPOBox->setText( (*slHomeAddress)[2] ); | 1020 | //txtPOBox->setText( (*slHomeAddress)[2] ); |
1021 | txtCity->setText( slHomeAddress[3] ); | 1021 | txtCity->setText( slHomeAddress[3] ); |
1022 | txtState->setText( slHomeAddress[4] ); | 1022 | txtState->setText( slHomeAddress[4] ); |
1023 | txtZip->setText( slHomeAddress[5] ); | 1023 | txtZip->setText( slHomeAddress[5] ); |
1024 | QLineEdit *txtTmp = cmbCountry->lineEdit(); | 1024 | QLineEdit *txtTmp = cmbCountry->lineEdit(); |
1025 | txtTmp->setText( slHomeAddress[6] ); | 1025 | txtTmp->setText( slHomeAddress[6] ); |
1026 | 1026 | ||
1027 | } | 1027 | } |
1028 | 1028 | ||
1029 | } | 1029 | } |
1030 | 1030 | ||
1031 | void ContactEditor::slotFullNameChange( const QString &textChanged ) { | 1031 | void ContactEditor::slotFullNameChange( const QString &textChanged ) { |
1032 | 1032 | ||
1033 | owarn << "ContactEditor::slotFullNameChange( " << textChanged << " )" << oendl; | 1033 | odebug << "ContactEditor::slotFullNameChange( " << textChanged << " )" << oendl; |
1034 | 1034 | ||
1035 | int index = cmbFileAs->currentItem(); | 1035 | int index = cmbFileAs->currentItem(); |
1036 | 1036 | ||
1037 | cmbFileAs->clear(); | 1037 | cmbFileAs->clear(); |
1038 | 1038 | ||
1039 | cmbFileAs->insertItem( parseName( textChanged, NAME_LF ) ); | 1039 | cmbFileAs->insertItem( parseName( textChanged, NAME_LF ) ); |
1040 | cmbFileAs->insertItem( parseName( textChanged, NAME_LFM ) ); | 1040 | cmbFileAs->insertItem( parseName( textChanged, NAME_LFM ) ); |
1041 | cmbFileAs->insertItem( parseName( textChanged, NAME_FL ) ); | 1041 | cmbFileAs->insertItem( parseName( textChanged, NAME_FL ) ); |
1042 | cmbFileAs->insertItem( parseName( textChanged, NAME_FML ) ); | 1042 | cmbFileAs->insertItem( parseName( textChanged, NAME_FML ) ); |
1043 | if ( ! txtSuffix->text().isEmpty() ) | 1043 | if ( ! txtSuffix->text().isEmpty() ) |
1044 | cmbFileAs->insertItem( parseName( textChanged, NAME_FML ) + " " + txtSuffix->text() ); | 1044 | cmbFileAs->insertItem( parseName( textChanged, NAME_FML ) + " " + txtSuffix->text() ); |
1045 | 1045 | ||
1046 | cmbFileAs->setCurrentItem( index ); | 1046 | cmbFileAs->setCurrentItem( index ); |
1047 | 1047 | ||
1048 | 1048 | ||
1049 | } | 1049 | } |
1050 | 1050 | ||
1051 | void ContactEditor::slotSuffixChange( const QString& ) { | 1051 | void ContactEditor::slotSuffixChange( const QString& ) { |
1052 | // Just want to update the FileAs combo if the suffix was changed.. | 1052 | // Just want to update the FileAs combo if the suffix was changed.. |
1053 | slotFullNameChange( txtFullName->text() ); | 1053 | slotFullNameChange( txtFullName->text() ); |
1054 | } | 1054 | } |
1055 | 1055 | ||
1056 | void ContactEditor::slotOrganizationChange( const QString &textChanged ){ | 1056 | void ContactEditor::slotOrganizationChange( const QString &textChanged ){ |
1057 | owarn << "ContactEditor::slotOrganizationChange( " << textChanged << " )" << oendl; | 1057 | odebug << "ContactEditor::slotOrganizationChange( " << textChanged << " )" << oendl; |
1058 | // Special handling for storing Companies: | 1058 | // Special handling for storing Companies: |
1059 | // If no Fullname is given, we store the Company-Name as lastname | 1059 | // If no Fullname is given, we store the Company-Name as lastname |
1060 | // to handle it like a person.. | 1060 | // to handle it like a person.. |
1061 | if ( txtFullName->text() == txtOrganization->text().left( txtFullName->text().length() ) ) | 1061 | if ( txtFullName->text() == txtOrganization->text().left( txtFullName->text().length() ) ) |
1062 | txtFullName->setText( textChanged ); | 1062 | txtFullName->setText( textChanged ); |
1063 | 1063 | ||
1064 | } | 1064 | } |
1065 | 1065 | ||
1066 | void ContactEditor::accept() { | 1066 | void ContactEditor::accept() { |
1067 | 1067 | ||
1068 | if ( isEmpty() ) { | 1068 | if ( isEmpty() ) { |
1069 | cleanupFields(); | 1069 | cleanupFields(); |
1070 | reject(); | 1070 | reject(); |
1071 | } else { | 1071 | } else { |
1072 | saveEntry(); | 1072 | saveEntry(); |
1073 | cleanupFields(); | 1073 | cleanupFields(); |
@@ -1123,46 +1123,46 @@ bool ContactEditor::isEmpty() { | |||
1123 | return false; | 1123 | return false; |
1124 | 1124 | ||
1125 | return true; | 1125 | return true; |
1126 | 1126 | ||
1127 | } | 1127 | } |
1128 | 1128 | ||
1129 | QString ContactEditor::parseName( const QString fullName, int type ) { | 1129 | QString ContactEditor::parseName( const QString fullName, int type ) { |
1130 | 1130 | ||
1131 | QString simplifiedName( fullName.simplifyWhiteSpace() ); | 1131 | QString simplifiedName( fullName.simplifyWhiteSpace() ); |
1132 | QString strFirstName; | 1132 | QString strFirstName; |
1133 | QString strMiddleName; | 1133 | QString strMiddleName; |
1134 | QString strLastName; | 1134 | QString strLastName; |
1135 | QString strTitle; | 1135 | QString strTitle; |
1136 | int commapos; | 1136 | int commapos; |
1137 | bool haveLastName = false; | 1137 | bool haveLastName = false; |
1138 | 1138 | ||
1139 | owarn << "Fullname: " << simplifiedName << oendl; | 1139 | odebug << "Fullname: " << simplifiedName << oendl; |
1140 | 1140 | ||
1141 | commapos = simplifiedName.find( ',', 0, TRUE); | 1141 | commapos = simplifiedName.find( ',', 0, TRUE); |
1142 | if ( commapos >= 0 ) { | 1142 | if ( commapos >= 0 ) { |
1143 | owarn << " Commapos: " << commapos << oendl; | 1143 | odebug << " Commapos: " << commapos << oendl; |
1144 | 1144 | ||
1145 | // A comma (",") separates the lastname from one or | 1145 | // A comma (",") separates the lastname from one or |
1146 | // many first names. Thus, remove the lastname from the | 1146 | // many first names. Thus, remove the lastname from the |
1147 | // String and parse the firstnames. | 1147 | // String and parse the firstnames. |
1148 | 1148 | ||
1149 | strLastName = simplifiedName.left( commapos ); | 1149 | strLastName = simplifiedName.left( commapos ); |
1150 | simplifiedName= simplifiedName.mid( commapos + 1 ); | 1150 | simplifiedName= simplifiedName.mid( commapos + 1 ); |
1151 | haveLastName = true; | 1151 | haveLastName = true; |
1152 | owarn << "Fullname without ',': " << simplifiedName << oendl; | 1152 | odebug << "Fullname without ',': " << simplifiedName << oendl; |
1153 | 1153 | ||
1154 | // If we have any lastname, we should now split all first names. | 1154 | // 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" | 1155 | // The first one will be the used as first, the rest as "middle names" |
1156 | 1156 | ||
1157 | QStringList allFirstNames = QStringList::split(" ", simplifiedName); | 1157 | QStringList allFirstNames = QStringList::split(" ", simplifiedName); |
1158 | QStringList::Iterator it = allFirstNames.begin(); | 1158 | QStringList::Iterator it = allFirstNames.begin(); |
1159 | strFirstName = *it++; | 1159 | strFirstName = *it++; |
1160 | QStringList allSecondNames; | 1160 | QStringList allSecondNames; |
1161 | for ( ; it != allFirstNames.end(); ++it ) | 1161 | for ( ; it != allFirstNames.end(); ++it ) |
1162 | allSecondNames.append( *it ); | 1162 | allSecondNames.append( *it ); |
1163 | 1163 | ||
1164 | strMiddleName = allSecondNames.join(" "); | 1164 | strMiddleName = allSecondNames.join(" "); |
1165 | 1165 | ||
1166 | } else { | 1166 | } else { |
1167 | 1167 | ||
1168 | // No comma separator used: We use the first word as firstname, the | 1168 | // No comma separator used: We use the first word as firstname, the |
@@ -1170,36 +1170,36 @@ QString ContactEditor::parseName( const QString fullName, int type ) { | |||
1170 | 1170 | ||
1171 | QStringList allNames = QStringList::split(" ", simplifiedName); | 1171 | QStringList allNames = QStringList::split(" ", simplifiedName); |
1172 | QStringList::Iterator it = allNames.begin(); | 1172 | QStringList::Iterator it = allNames.begin(); |
1173 | strFirstName = *it++; | 1173 | strFirstName = *it++; |
1174 | QStringList allSecondNames; | 1174 | QStringList allSecondNames; |
1175 | for ( ; it != --allNames.end(); ++it ) | 1175 | for ( ; it != --allNames.end(); ++it ) |
1176 | allSecondNames.append( *it ); | 1176 | allSecondNames.append( *it ); |
1177 | 1177 | ||
1178 | strMiddleName = allSecondNames.join(" "); | 1178 | strMiddleName = allSecondNames.join(" "); |
1179 | strLastName = *(--allNames.end()); | 1179 | strLastName = *(--allNames.end()); |
1180 | 1180 | ||
1181 | } | 1181 | } |
1182 | 1182 | ||
1183 | if ( strFirstName == strLastName ) | 1183 | if ( strFirstName == strLastName ) |
1184 | strFirstName = ""; | 1184 | strFirstName = ""; |
1185 | 1185 | ||
1186 | owarn << "strFirstName: " << strFirstName << oendl; | 1186 | odebug << "strFirstName: " << strFirstName << oendl; |
1187 | owarn << "strMiddletName: " << strMiddleName << oendl; | 1187 | odebug << "strMiddletName: " << strMiddleName << oendl; |
1188 | owarn << "strLastName: " << strLastName << oendl; | 1188 | odebug << "strLastName: " << strLastName << oendl; |
1189 | owarn << "strTitle: " << strTitle << oendl; | 1189 | odebug << "strTitle: " << strTitle << oendl; |
1190 | 1190 | ||
1191 | switch (type) { | 1191 | switch (type) { |
1192 | case NAME_FL: | 1192 | case NAME_FL: |
1193 | return strFirstName + " " + strLastName; | 1193 | return strFirstName + " " + strLastName; |
1194 | 1194 | ||
1195 | case NAME_LF: | 1195 | case NAME_LF: |
1196 | return strLastName + ", " + strFirstName; | 1196 | return strLastName + ", " + strFirstName; |
1197 | 1197 | ||
1198 | case NAME_LFM: | 1198 | case NAME_LFM: |
1199 | return strLastName + ", " + strFirstName + " " + strMiddleName; | 1199 | return strLastName + ", " + strFirstName + " " + strMiddleName; |
1200 | 1200 | ||
1201 | case NAME_FML: | 1201 | case NAME_FML: |
1202 | return strFirstName + " " + strMiddleName + " " + strLastName ; | 1202 | return strFirstName + " " + strMiddleName + " " + strLastName ; |
1203 | 1203 | ||
1204 | case NAME_F: | 1204 | case NAME_F: |
1205 | return strFirstName; | 1205 | return strFirstName; |
@@ -1316,57 +1316,57 @@ void ContactEditor::setEntry( const Opie::OPimContact &entry ) { | |||
1316 | //} | 1316 | //} |
1317 | 1317 | ||
1318 | //if (hasZip) { | 1318 | //if (hasZip) { |
1319 | slHomeAddress[5] = ent.homeZip(); | 1319 | slHomeAddress[5] = ent.homeZip(); |
1320 | slBusinessAddress[5] = ent.businessZip(); | 1320 | slBusinessAddress[5] = ent.businessZip(); |
1321 | //} | 1321 | //} |
1322 | 1322 | ||
1323 | //if (hasCountry) { | 1323 | //if (hasCountry) { |
1324 | slHomeAddress[6] = ent.homeCountry(); | 1324 | slHomeAddress[6] = ent.homeCountry(); |
1325 | slBusinessAddress[6] = ent.businessCountry(); | 1325 | slBusinessAddress[6] = ent.businessCountry(); |
1326 | //} | 1326 | //} |
1327 | 1327 | ||
1328 | QStringList::ConstIterator it; | 1328 | QStringList::ConstIterator it; |
1329 | QListIterator<QLineEdit> itLE( listValue ); | 1329 | QListIterator<QLineEdit> itLE( listValue ); |
1330 | for ( it = slDynamicEntries.begin(); itLE.current()/* != slDynamicEntries.end()*/; ++it, ++itLE) { | 1330 | for ( it = slDynamicEntries.begin(); itLE.current()/* != slDynamicEntries.end()*/; ++it, ++itLE) { |
1331 | 1331 | ||
1332 | owarn << " Filling dynamic Field: " << (*it) << oendl; | 1332 | odebug << " Filling dynamic Field: " << (*it) << oendl; |
1333 | 1333 | ||
1334 | if ( *it == "Department" ) | 1334 | if ( *it == "Department" ) |
1335 | (*itLE)->setText( ent.department() ); | 1335 | (*itLE)->setText( ent.department() ); |
1336 | 1336 | ||
1337 | if ( *it == "Company" ) | 1337 | if ( *it == "Company" ) |
1338 | (*itLE)->setText( ent.company() ); | 1338 | (*itLE)->setText( ent.company() ); |
1339 | 1339 | ||
1340 | if ( *it == "Office" ) | 1340 | if ( *it == "Office" ) |
1341 | (*itLE)->setText( ent.office() ); | 1341 | (*itLE)->setText( ent.office() ); |
1342 | 1342 | ||
1343 | if ( *it == "Profession" ) | 1343 | if ( *it == "Profession" ) |
1344 | (*itLE)->setText( ent.profession() ); | 1344 | (*itLE)->setText( ent.profession() ); |
1345 | 1345 | ||
1346 | if ( *it == "Assistant" ) | 1346 | if ( *it == "Assistant" ) |
1347 | (*itLE)->setText( ent.assistant() ); | 1347 | (*itLE)->setText( ent.assistant() ); |
1348 | 1348 | ||
1349 | if ( *it == "Manager" ) | 1349 | if ( *it == "Manager" ) |
1350 | (*itLE)->setText( ent.manager() ); | 1350 | (*itLE)->setText( ent.manager() ); |
1351 | 1351 | ||
1352 | if ( *it == "Spouse" ) | 1352 | if ( *it == "Spouse" ) |
1353 | (*itLE)->setText( ent.spouse() ); | 1353 | (*itLE)->setText( ent.spouse() ); |
1354 | 1354 | ||
1355 | if ( *it == "Nickname" ){ | 1355 | if ( *it == "Nickname" ){ |
1356 | owarn << "**** Nichname: " << ent.nickname() << oendl; | 1356 | odebug << "**** Nichname: " << ent.nickname() << oendl; |
1357 | (*itLE)->setText( ent.nickname() ); | 1357 | (*itLE)->setText( ent.nickname() ); |
1358 | } | 1358 | } |
1359 | 1359 | ||
1360 | if ( *it == "Children" ) | 1360 | if ( *it == "Children" ) |
1361 | (*itLE)->setText( ent.children() ); | 1361 | (*itLE)->setText( ent.children() ); |
1362 | 1362 | ||
1363 | } | 1363 | } |
1364 | 1364 | ||
1365 | QStringList::Iterator itV; | 1365 | QStringList::Iterator itV; |
1366 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { | 1366 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { |
1367 | 1367 | ||
1368 | if ( ( *it == "Business Phone") || ( *it == "Work Phone" ) ) | 1368 | if ( ( *it == "Business Phone") || ( *it == "Work Phone" ) ) |
1369 | *itV = ent.businessPhone(); | 1369 | *itV = ent.businessPhone(); |
1370 | /* | 1370 | /* |
1371 | if ( *it == "Business 2 Phone" ) | 1371 | if ( *it == "Business 2 Phone" ) |
1372 | *itV = ent.business2Phone(); | 1372 | *itV = ent.business2Phone(); |
@@ -1573,34 +1573,34 @@ void ContactEditor::saveEntry() { | |||
1573 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { | 1573 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { |
1574 | 1574 | ||
1575 | if ( ( *it == "Business Phone" ) || ( *it == "Work Phone" ) ) | 1575 | if ( ( *it == "Business Phone" ) || ( *it == "Work Phone" ) ) |
1576 | ent.setBusinessPhone( *itV ); | 1576 | ent.setBusinessPhone( *itV ); |
1577 | 1577 | ||
1578 | if ( ( *it == "Business Fax" ) || ( *it == "Work Fax" ) ) | 1578 | if ( ( *it == "Business Fax" ) || ( *it == "Work Fax" ) ) |
1579 | ent.setBusinessFax( *itV ); | 1579 | ent.setBusinessFax( *itV ); |
1580 | 1580 | ||
1581 | if ( ( *it == "Business Mobile" ) || ( *it == "Work Mobile" ) ) | 1581 | if ( ( *it == "Business Mobile" ) || ( *it == "Work Mobile" ) ) |
1582 | ent.setBusinessMobile( *itV ); | 1582 | ent.setBusinessMobile( *itV ); |
1583 | 1583 | ||
1584 | if ( *it == "Emails" ){ | 1584 | if ( *it == "Emails" ){ |
1585 | QString allemail; | 1585 | QString allemail; |
1586 | QString defaultmail; | 1586 | QString defaultmail; |
1587 | parseEmailFrom( emails.join(","), defaultmail, allemail ); | 1587 | parseEmailFrom( emails.join(","), defaultmail, allemail ); |
1588 | if ( defaultEmail.isEmpty() ){ | 1588 | if ( defaultEmail.isEmpty() ){ |
1589 | owarn << "Default email was not set by user!" << oendl; | 1589 | odebug << "Default email was not set by user!" << oendl; |
1590 | owarn << "Using first email in list: " << defaultmail << oendl; | 1590 | odebug << "Using first email in list: " << defaultmail << oendl; |
1591 | ent.setDefaultEmail( defaultmail ); | 1591 | ent.setDefaultEmail( defaultmail ); |
1592 | } | 1592 | } |
1593 | ent.setEmails( allemail ); | 1593 | ent.setEmails( allemail ); |
1594 | } | 1594 | } |
1595 | 1595 | ||
1596 | if ( *it == "Default Email") | 1596 | if ( *it == "Default Email") |
1597 | ent.setDefaultEmail( defaultEmail /* *itV */ ); | 1597 | ent.setDefaultEmail( defaultEmail /* *itV */ ); |
1598 | 1598 | ||
1599 | if ( *it == "Home Phone" ) | 1599 | if ( *it == "Home Phone" ) |
1600 | ent.setHomePhone( *itV ); | 1600 | ent.setHomePhone( *itV ); |
1601 | 1601 | ||
1602 | if ( *it == "Home Fax" ) | 1602 | if ( *it == "Home Fax" ) |
1603 | ent.setHomeFax( *itV ); | 1603 | ent.setHomeFax( *itV ); |
1604 | 1604 | ||
1605 | if ( *it == "Home Mobile" ) | 1605 | if ( *it == "Home Mobile" ) |
1606 | ent.setHomeMobile( *itV ); | 1606 | ent.setHomeMobile( *itV ); |
@@ -1726,27 +1726,27 @@ void ContactEditor::slotAnniversaryDateChanged( int year, int month, int day) | |||
1726 | QString dateString = TimeString::numberDateString( date ); | 1726 | QString dateString = TimeString::numberDateString( date ); |
1727 | anniversaryButton->setText( dateString ); | 1727 | anniversaryButton->setText( dateString ); |
1728 | ent.setAnniversary ( date ); | 1728 | ent.setAnniversary ( date ); |
1729 | } | 1729 | } |
1730 | 1730 | ||
1731 | void ContactEditor::slotBirthdayDateChanged( int year, int month, int day) | 1731 | void ContactEditor::slotBirthdayDateChanged( int year, int month, int day) |
1732 | { | 1732 | { |
1733 | QDate date; | 1733 | QDate date; |
1734 | date.setYMD( year, month, day ); | 1734 | date.setYMD( year, month, day ); |
1735 | QString dateString = TimeString::numberDateString( date ); | 1735 | QString dateString = TimeString::numberDateString( date ); |
1736 | birthdayButton->setText( dateString ); | 1736 | birthdayButton->setText( dateString ); |
1737 | ent.setBirthday ( date ); | 1737 | ent.setBirthday ( date ); |
1738 | } | 1738 | } |
1739 | 1739 | ||
1740 | void ContactEditor::slotRemoveBirthday() | 1740 | void ContactEditor::slotRemoveBirthday() |
1741 | { | 1741 | { |
1742 | owarn << "void ContactEditor::slotRemoveBirthday()" << oendl; | 1742 | odebug << "void ContactEditor::slotRemoveBirthday()" << oendl; |
1743 | ent.setBirthday( QDate() ); | 1743 | ent.setBirthday( QDate() ); |
1744 | updateDatePicker(); | 1744 | updateDatePicker(); |
1745 | } | 1745 | } |
1746 | 1746 | ||
1747 | void ContactEditor::slotRemoveAnniversary() | 1747 | void ContactEditor::slotRemoveAnniversary() |
1748 | { | 1748 | { |
1749 | owarn << "void ContactEditor::slotRemoveAnniversary()" << oendl; | 1749 | odebug << "void ContactEditor::slotRemoveAnniversary()" << oendl; |
1750 | ent.setAnniversary( QDate() ); | 1750 | ent.setAnniversary( QDate() ); |
1751 | updateDatePicker(); | 1751 | updateDatePicker(); |
1752 | } | 1752 | } |
diff --git a/core/pim/addressbook/picker.cpp b/core/pim/addressbook/picker.cpp index 8a9c85b..b962896 100644 --- a/core/pim/addressbook/picker.cpp +++ b/core/pim/addressbook/picker.cpp | |||
@@ -226,20 +226,20 @@ QSizePolicy LetterPicker::sizePolicy () const | |||
226 | 226 | ||
227 | void LetterPicker::clear() | 227 | void LetterPicker::clear() |
228 | { | 228 | { |
229 | lblABC->clearLetter(); | 229 | lblABC->clearLetter(); |
230 | lblDEF->clearLetter(); | 230 | lblDEF->clearLetter(); |
231 | lblGHI->clearLetter(); | 231 | lblGHI->clearLetter(); |
232 | lblJKL->clearLetter(); | 232 | lblJKL->clearLetter(); |
233 | lblMNO->clearLetter(); | 233 | lblMNO->clearLetter(); |
234 | lblPQR->clearLetter(); | 234 | lblPQR->clearLetter(); |
235 | lblSTU->clearLetter(); | 235 | lblSTU->clearLetter(); |
236 | lblVWX->clearLetter(); | 236 | lblVWX->clearLetter(); |
237 | lblYZ->clearLetter(); | 237 | lblYZ->clearLetter(); |
238 | } | 238 | } |
239 | 239 | ||
240 | void LetterPicker::newLetter( char letter ) | 240 | void LetterPicker::newLetter( char letter ) |
241 | { | 241 | { |
242 | owarn << "LetterClicked" << oendl; | 242 | odebug << "LetterClicked" << oendl; |
243 | emit letterClicked( letter ); | 243 | emit letterClicked( letter ); |
244 | 244 | ||
245 | } | 245 | } |