summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/viewconfigurefieldspage.cpp22
1 files changed, 14 insertions, 8 deletions
diff --git a/kaddressbook/viewconfigurefieldspage.cpp b/kaddressbook/viewconfigurefieldspage.cpp
index 2c827eb..5daae1a 100644
--- a/kaddressbook/viewconfigurefieldspage.cpp
+++ b/kaddressbook/viewconfigurefieldspage.cpp
@@ -14,48 +14,49 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 18
19 As a special exception, permission is given to link this program 19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable, 20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution. 21 without including the source code for Qt in the source distribution.
22*/ 22*/
23 23
24#ifndef KAB_EMBEDDED 24#ifndef KAB_EMBEDDED
25#include <kcombobox.h> 25#include <kcombobox.h>
26#include <qpushbutton.h> 26#include <qpushbutton.h>
27#include <kdebug.h> 27#include <kdebug.h>
28 28
29#else //KAB_EMBEDDED 29#else //KAB_EMBEDDED
30#include <qcombobox.h> 30#include <qcombobox.h>
31#endif //KAB_EMBEDDED 31#endif //KAB_EMBEDDED
32 32
33#include <kiconloader.h> 33#include <kiconloader.h>
34#include <kdialog.h> 34#include <kdialog.h>
35#include <klocale.h> 35#include <klocale.h>
36 36
37#include <qtoolbutton.h> 37#include <qtoolbutton.h>
38#include <qapplication.h>
38#include <qlabel.h> 39#include <qlabel.h>
39#include <qlistbox.h> 40#include <qlistbox.h>
40#include <qlayout.h> 41#include <qlayout.h>
41 42
42#include "viewconfigurefieldspage.h" 43#include "viewconfigurefieldspage.h"
43 44
44class FieldItem : public QListBoxText 45class FieldItem : public QListBoxText
45{ 46{
46 public: 47 public:
47 FieldItem( QListBox *parent, KABC::Field *field ) 48 FieldItem( QListBox *parent, KABC::Field *field )
48 : QListBoxText( parent, field->label() ), mField( field ) {} 49 : QListBoxText( parent, field->label() ), mField( field ) {}
49 50
50 FieldItem( QListBox *parent, KABC::Field *field, int index ) 51 FieldItem( QListBox *parent, KABC::Field *field, int index )
51 : QListBoxText( parent, field->label(), parent->item( index ) ), 52 : QListBoxText( parent, field->label(), parent->item( index ) ),
52 mField( field ) {} 53 mField( field ) {}
53 54
54 KABC::Field *field() { return mField; } 55 KABC::Field *field() { return mField; }
55 56
56 private: 57 private:
57 KABC::Field *mField; 58 KABC::Field *mField;
58}; 59};
59 60
60 61
61ViewConfigureFieldsPage::ViewConfigureFieldsPage( KABC::AddressBook *ab, 62ViewConfigureFieldsPage::ViewConfigureFieldsPage( KABC::AddressBook *ab,
@@ -198,87 +199,92 @@ void ViewConfigureFieldsPage::slotMoveUp()
198 199
199void ViewConfigureFieldsPage::slotMoveDown() 200void ViewConfigureFieldsPage::slotMoveDown()
200{ 201{
201 int i = mSelectedBox->currentItem(); 202 int i = mSelectedBox->currentItem();
202 if ( i > -1 && i < (int)mSelectedBox->count() - 1 ) { 203 if ( i > -1 && i < (int)mSelectedBox->count() - 1 ) {
203 QListBoxItem *item = mSelectedBox->item( i ); 204 QListBoxItem *item = mSelectedBox->item( i );
204 mSelectedBox->takeItem( item ); 205 mSelectedBox->takeItem( item );
205 mSelectedBox->insertItem( item, i + 1 ); 206 mSelectedBox->insertItem( item, i + 1 );
206 mSelectedBox->setCurrentItem( item ); 207 mSelectedBox->setCurrentItem( item );
207 mSelectedBox->setSelected( i + 1, true ); 208 mSelectedBox->setSelected( i + 1, true );
208 } 209 }
209} 210}
210 211
211void ViewConfigureFieldsPage::initGUI() 212void ViewConfigureFieldsPage::initGUI()
212{ 213{
213 //US change the orientation dependent on the following flag 214 //US change the orientation dependent on the following flag
214 // right the flag is set only staticly. 215 // right the flag is set only staticly.
215 // 0 = 640x480 ; 1 = 240x320 216 // 0 = 640x480 ; 1 = 240x320
216 bool orientation = 1; 217 bool orientation = 1;
217 218
218 219
219 setCaption( i18n("Select Fields to Display") ); 220 setCaption( i18n("Select Fields to Display") );
220 221
221 QGridLayout *gl = 0; 222 QGridLayout *gl = 0;
222
223 if (orientation == 0) 223 if (orientation == 0)
224 gl = new QGridLayout( this , 6, 4, 0, KDialog::spacingHint() ); 224 gl = new QGridLayout( this , 6, 4, 0, KDialog::spacingHint() );
225 else 225 else
226 gl = new QGridLayout( this , 4, 6, 0, KDialog::spacingHint() ); 226 gl = new QGridLayout( this , 4, 6, 0, KDialog::spacingHint() );
227 227
228 #ifndef KAB_EMBEDDED 228 #ifndef KAB_EMBEDDED
229 mCategoryCombo = new KComboBox( false, this ); 229 mCategoryCombo = new KComboBox( false, this );
230 #else //KAB_EMBEDDED 230 #else //KAB_EMBEDDED
231 mCategoryCombo = new QComboBox( false, this ); 231 mCategoryCombo = new QComboBox( false, this );
232 #endif //KAB_EMBEDDED 232 #endif //KAB_EMBEDDED
233 233 if ( QApplication::desktop()->width() < 320 )
234 mCategoryCombo->setMaximumWidth( 70 );
234 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::All ) ); 235 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::All ) );
235 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Frequent ) ); 236 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Frequent ) );
236 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Address ) ); 237 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Address ) );
237 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Email ) ); 238 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Email ) );
238 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Personal ) ); 239 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Personal ) );
239 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Organization ) ); 240 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::Organization ) );
240 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::CustomCategory ) ); 241 mCategoryCombo->insertItem( KABC::Field::categoryLabel( KABC::Field::CustomCategory ) );
241 connect( mCategoryCombo, SIGNAL( activated(int) ), SLOT( slotShowFields(int) ) ); 242 connect( mCategoryCombo, SIGNAL( activated(int) ), SLOT( slotShowFields(int) ) );
242 gl->addWidget( mCategoryCombo, 0, 0 ); 243 gl->addWidget( mCategoryCombo, 0, 0 );
243 244
244 QLabel *label = new QLabel( i18n( "&Selected fields:" ), this ); 245 QLabel *label = new QLabel( i18n( "&Selected\nfields:" ), this );
245 if (orientation == 0) 246 if (orientation == 0)
246 gl->addWidget( label, 0, 2 ); 247 gl->addWidget( label, 0, 2 );
247 else 248 else
248 gl->addWidget( label, 2, 0 ); 249 gl->addWidget( label, 2, 0 );
249 250
250 251
251 mUnSelectedBox = new QListBox( this ); 252 mUnSelectedBox = new QListBox( this );
252 mUnSelectedBox->setSelectionMode( QListBox::Extended ); 253 mUnSelectedBox->setSelectionMode( QListBox::Extended );
253 mUnSelectedBox->setMinimumHeight( 100 ); 254 mUnSelectedBox->setMinimumHeight( 80 );
254 if (orientation == 0) 255 if (orientation == 0)
255 gl->addWidget( mUnSelectedBox, 1, 0 ); 256 gl->addWidget( mUnSelectedBox, 1, 0 );
256 else 257 else
257 gl->addWidget( mUnSelectedBox, 0, 1 ); 258 gl->addWidget( mUnSelectedBox, 0, 1 );
258 259
259 mSelectedBox = new QListBox( this ); 260 mSelectedBox = new QListBox( this );
261 //if ( QApplication::desktop()->width() < 320 ) {
262 // mUnSelectedBox->setMaximumWidth( 134 );
263 // mSelectedBox->setMaximumWidth( 134 );
264 //}
260 mSelectedBox->setSelectionMode( QListBox::Extended ); 265 mSelectedBox->setSelectionMode( QListBox::Extended );
266 mSelectedBox->setMinimumHeight( 80 );
261 label->setBuddy( mSelectedBox ); 267 label->setBuddy( mSelectedBox );
262 if (orientation == 0) 268 if (orientation == 0)
263 gl->addWidget( mSelectedBox, 1, 2 ); 269 gl->addWidget( mSelectedBox, 1, 2 );
264 else 270 else
265 gl->addWidget( mSelectedBox, 2, 1 ); 271 gl->addWidget( mSelectedBox, 2, 1 );
266 272
267 QBoxLayout *vb1 = 0; 273 QBoxLayout *vb1 = 0;
268 if (orientation == 0) 274 if (orientation == 0)
269 vb1 = new QBoxLayout( QBoxLayout::TopToBottom, KDialog::spacingHint() ); 275 vb1 = new QBoxLayout( QBoxLayout::TopToBottom, KDialog::spacingHint() );
270 else 276 else
271 vb1 = new QBoxLayout( QBoxLayout::LeftToRight, KDialog::spacingHint() ); 277 vb1 = new QBoxLayout( QBoxLayout::LeftToRight, KDialog::spacingHint() );
272 278
273 vb1->addStretch(); 279 vb1->addStretch();
274 280
275 mAddButton = new QToolButton( this ); 281 mAddButton = new QToolButton( this );
276 if (orientation == 0) 282 if (orientation == 0)
277 mAddButton->setIconSet( SmallIconSet( "1rightarrow" ) ); 283 mAddButton->setIconSet( SmallIconSet( "1rightarrow" ) );
278 else 284 else
279 mAddButton->setIconSet( SmallIconSet( "1downarrow" ) ); 285 mAddButton->setIconSet( SmallIconSet( "1downarrow" ) );
280 connect( mAddButton, SIGNAL( clicked() ), SLOT( slotSelect() ) ); 286 connect( mAddButton, SIGNAL( clicked() ), SLOT( slotSelect() ) );
281 vb1->addWidget( mAddButton ); 287 vb1->addWidget( mAddButton );
282 288
283 mRemoveButton = new QToolButton( this ); 289 mRemoveButton = new QToolButton( this );
284 if (orientation == 0) 290 if (orientation == 0)
@@ -304,42 +310,42 @@ void ViewConfigureFieldsPage::initGUI()
304 vb2->addStretch(); 310 vb2->addStretch();
305 311
306 mUpButton = new QToolButton( this ); 312 mUpButton = new QToolButton( this );
307 mUpButton->setIconSet( SmallIconSet( "1uparrow" ) ); 313 mUpButton->setIconSet( SmallIconSet( "1uparrow" ) );
308 connect( mUpButton, SIGNAL( clicked() ), SLOT( slotMoveUp() ) ); 314 connect( mUpButton, SIGNAL( clicked() ), SLOT( slotMoveUp() ) );
309 vb2->addWidget( mUpButton ); 315 vb2->addWidget( mUpButton );
310 316
311 mDownButton = new QToolButton( this ); 317 mDownButton = new QToolButton( this );
312 mDownButton->setIconSet( SmallIconSet( "1downarrow" ) ); 318 mDownButton->setIconSet( SmallIconSet( "1downarrow" ) );
313 connect( mDownButton, SIGNAL( clicked() ), SLOT( slotMoveDown() ) ); 319 connect( mDownButton, SIGNAL( clicked() ), SLOT( slotMoveDown() ) );
314 vb2->addWidget( mDownButton ); 320 vb2->addWidget( mDownButton );
315 321
316 vb2->addStretch(); 322 vb2->addStretch();
317 if (orientation == 0) 323 if (orientation == 0)
318 gl->addLayout( vb2, 1, 3 ); 324 gl->addLayout( vb2, 1, 3 );
319 else 325 else
320 gl->addLayout( vb2, 3, 1 ); 326 gl->addLayout( vb2, 3, 1 );
321 327
322 QSize sizeHint = mUnSelectedBox->sizeHint(); 328 QSize sizeHint = mUnSelectedBox->sizeHint();
323 329
324 // make sure we fill the list with all items, so that we can 330 // make sure we fill the list with all items, so that we can
325 // get the maxItemWidth we need to not truncate the view 331 // get the maxItemWidth we need to not truncate the view
326 slotShowFields( 0 ); 332 slotShowFields( 0 );
327 333
328 sizeHint = sizeHint.expandedTo( mSelectedBox->sizeHint() ); 334 //sizeHint = sizeHint.expandedTo( mSelectedBox->sizeHint() );
329 sizeHint.setWidth( mUnSelectedBox->maxItemWidth() ); 335 //sizeHint.setWidth( mUnSelectedBox->maxItemWidth() );
330 mUnSelectedBox->setMinimumSize( sizeHint ); 336 // mUnSelectedBox->setMinimumSize( sizeHint );
331 mSelectedBox->setMinimumSize( sizeHint ); 337 //mSelectedBox->setMinimumSize( sizeHint );
332 338
333 gl->activate(); 339 gl->activate();
334 340
335 connect( mUnSelectedBox, SIGNAL( selectionChanged() ), SLOT( slotButtonsEnabled() ) ); 341 connect( mUnSelectedBox, SIGNAL( selectionChanged() ), SLOT( slotButtonsEnabled() ) );
336 connect( mSelectedBox, SIGNAL( selectionChanged() ), SLOT( slotButtonsEnabled() ) ); 342 connect( mSelectedBox, SIGNAL( selectionChanged() ), SLOT( slotButtonsEnabled() ) );
337 connect( mSelectedBox, SIGNAL( currentChanged( QListBoxItem * ) ), SLOT( slotButtonsEnabled() ) ); 343 connect( mSelectedBox, SIGNAL( currentChanged( QListBoxItem * ) ), SLOT( slotButtonsEnabled() ) );
338 344
339 slotButtonsEnabled(); 345 slotButtonsEnabled();
340} 346}
341 347
342 348
343#ifndef KAB_EMBEDDED 349#ifndef KAB_EMBEDDED
344#include "viewconfigurefieldspage.moc" 350#include "viewconfigurefieldspage.moc"
345#endif //KAB_EMBEDDED 351#endif //KAB_EMBEDDED