summaryrefslogtreecommitdiff
path: root/noncore/settings
authorhrw <hrw>2005-10-26 15:36:04 (UTC)
committer hrw <hrw>2005-10-26 15:36:04 (UTC)
commita1a5ed12c36867a538f699914fb8541374580238 (patch) (unidiff)
tree08227e6cf228e79913ba3b3e9f847f4a6088feb2 /noncore/settings
parent189e3a4846284b678cebdfd269eef81ed7a06f1e (diff)
downloadopie-a1a5ed12c36867a538f699914fb8541374580238.zip
opie-a1a5ed12c36867a538f699914fb8541374580238.tar.gz
opie-a1a5ed12c36867a538f699914fb8541374580238.tar.bz2
appearance: more work on icon sizes
- added default values for (Small|Big)IconSize (drw) - set useBigPixmaps on HiRes devices (hrw)
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/appearance2/appearance.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp
index 054b645..e2c639f 100644
--- a/noncore/settings/appearance2/appearance.cpp
+++ b/noncore/settings/appearance2/appearance.cpp
@@ -401,11 +401,11 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
401 401
402 QHBoxLayout *bigIconlay = new QHBoxLayout ( vertLayout, 3 ); 402 QHBoxLayout *bigIconlay = new QHBoxLayout ( vertLayout, 3 );
403 403
404 QLabel* label2 = new QLabel( tr( "&Big Icon size:" ), tab ); 404 QLabel* label2 = new QLabel( tr( "Big Icon size:" ), tab );
405 bigIconlay-> addWidget ( label2, 0, 0 ); 405 bigIconlay-> addWidget ( label2, 0, 0 );
406 406
407 m_bigIconSize = new QSpinBox(0, 128, 1, tab); 407 m_bigIconSize = new QSpinBox(0, 128, 1, tab);
408 m_bigIconSize->setValue(cfg.readNumEntry( "BigIconSize" )); 408 m_bigIconSize->setValue(cfg.readNumEntry( "BigIconSize", AppLnk::bigIconSize() ));
409 bigIconlay->addWidget( m_bigIconSize ); 409 bigIconlay->addWidget( m_bigIconSize );
410 label2->setBuddy( m_bigIconSize ); 410 label2->setBuddy( m_bigIconSize );
411 QWhatsThis::add( label2, tr( "Big Icon Size determines the size of the application icons in Launcher" ) ); 411 QWhatsThis::add( label2, tr( "Big Icon Size determines the size of the application icons in Launcher" ) );
@@ -413,20 +413,20 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
413 413
414 QHBoxLayout *smallIconlay = new QHBoxLayout ( vertLayout, 3 ); 414 QHBoxLayout *smallIconlay = new QHBoxLayout ( vertLayout, 3 );
415 415
416 QLabel* label3 = new QLabel( tr( "&Small Icon size:" ), tab ); 416 QLabel* label3 = new QLabel( tr( "Small Icon size:" ), tab );
417 smallIconlay-> addWidget ( label3, 0, 0 ); 417 smallIconlay-> addWidget ( label3, 0, 0 );
418 418
419 m_smallIconSize = new QSpinBox(0, 128, 1, tab); 419 m_smallIconSize = new QSpinBox(0, 128, 1, tab);
420 m_smallIconSize->setValue(cfg.readNumEntry( "SmallIconSize" )); 420 m_smallIconSize->setValue(cfg.readNumEntry( "SmallIconSize", AppLnk::smallIconSize() ));
421 smallIconlay->addWidget( m_smallIconSize ); 421 smallIconlay->addWidget( m_smallIconSize );
422 label3->setBuddy( m_smallIconSize ); 422 label3->setBuddy( m_smallIconSize );
423 QWhatsThis::add( label3, tr( "Small Icon Size determines the size of many of the icons seen in applications (in menus, tab bars, tool bars, etc.), as well as the size of taskbar." ) ); 423 QWhatsThis::add( label3, tr( "Small Icon Size determines the size of many of the icons seen in applications (in menus, tab bars, tool bars, etc.), as well as the size of taskbar." ) );
424 QWhatsThis::add( m_smallIconSize, tr( "Small Icon Size determines the size of many of the icons seen in applications (in menus, tab bars, tool bars, etc.), as well as the size of taskbar." ) ); 424 QWhatsThis::add( m_smallIconSize, tr( "Small Icon Size determines the size of many of the icons seen in applications (in menus, tab bars, tool bars, etc.), as well as the size of taskbar." ) );
425 425
426 m_useBigPixmaps = new QCheckBox( tr("use Big &Pixmaps"), tab); 426 m_useBigPixmaps = new QCheckBox( tr("use Big Pixmaps"), tab);
427 m_useBigPixmaps->setChecked(cfg.readBoolEntry( "useBigPixmaps" )); 427 m_useBigPixmaps->setChecked(cfg.readBoolEntry( "useBigPixmaps", qApp->desktop()->width() > 320 ));
428 vertLayout->addWidget( m_useBigPixmaps ); 428 vertLayout->addWidget( m_useBigPixmaps );
429 QWhatsThis::add( m_useBigPixmaps, tr( "Enlarge toolbar pixmaps" ) ); 429 QWhatsThis::add( m_useBigPixmaps, tr( "Enlarge toolbar pixmaps, you probably want to enable this option for devices with screen resolution greater than 240x320" ) );
430 430
431 /* 431 /*
432 * add a spacing 432 * add a spacing