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) (side-by-side diff)
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
@@ -403,3 +403,3 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
- QLabel* label2 = new QLabel( tr( "&Big Icon size:" ), tab );
+ QLabel* label2 = new QLabel( tr( "Big Icon size:" ), tab );
bigIconlay-> addWidget ( label2, 0, 0 );
@@ -407,3 +407,3 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
m_bigIconSize = new QSpinBox(0, 128, 1, tab);
- m_bigIconSize->setValue(cfg.readNumEntry( "BigIconSize" ));
+ m_bigIconSize->setValue(cfg.readNumEntry( "BigIconSize", AppLnk::bigIconSize() ));
bigIconlay->addWidget( m_bigIconSize );
@@ -415,3 +415,3 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
- QLabel* label3 = new QLabel( tr( "&Small Icon size:" ), tab );
+ QLabel* label3 = new QLabel( tr( "Small Icon size:" ), tab );
smallIconlay-> addWidget ( label3, 0, 0 );
@@ -419,3 +419,3 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
m_smallIconSize = new QSpinBox(0, 128, 1, tab);
- m_smallIconSize->setValue(cfg.readNumEntry( "SmallIconSize" ));
+ m_smallIconSize->setValue(cfg.readNumEntry( "SmallIconSize", AppLnk::smallIconSize() ));
smallIconlay->addWidget( m_smallIconSize );
@@ -425,6 +425,6 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
- m_useBigPixmaps = new QCheckBox( tr("use Big &Pixmaps"), tab);
- m_useBigPixmaps->setChecked(cfg.readBoolEntry( "useBigPixmaps" ));
+ m_useBigPixmaps = new QCheckBox( tr("use Big Pixmaps"), tab);
+ m_useBigPixmaps->setChecked(cfg.readBoolEntry( "useBigPixmaps", qApp->desktop()->width() > 320 ));
vertLayout->addWidget( m_useBigPixmaps );
- QWhatsThis::add( m_useBigPixmaps, tr( "Enlarge toolbar pixmaps" ) );
+ QWhatsThis::add( m_useBigPixmaps, tr( "Enlarge toolbar pixmaps, you probably want to enable this option for devices with screen resolution greater than 240x320" ) );