author | drw <drw> | 2005-03-21 16:53:48 (UTC) |
---|---|---|
committer | drw <drw> | 2005-03-21 16:53:48 (UTC) |
commit | 958b13474d09d8cdf1f018abc1f48f80d24bf22f (patch) (unidiff) | |
tree | 21e8ff75ad792124b407d7dda543bc4349254dc9 | |
parent | be3e262e107a8592a478f7c4114d2a54395885a5 (diff) | |
download | opie-958b13474d09d8cdf1f018abc1f48f80d24bf22f.zip opie-958b13474d09d8cdf1f018abc1f48f80d24bf22f.tar.gz opie-958b13474d09d8cdf1f018abc1f48f80d24bf22f.tar.bz2 |
Fix for bug #1613 - scale toolbar icons
-rw-r--r-- | noncore/apps/advancedfm/advancedfmData.cpp | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/noncore/apps/advancedfm/advancedfmData.cpp b/noncore/apps/advancedfm/advancedfmData.cpp index 3664c75..b43d2ba 100644 --- a/noncore/apps/advancedfm/advancedfmData.cpp +++ b/noncore/apps/advancedfm/advancedfmData.cpp | |||
@@ -15,2 +15,3 @@ | |||
15 | #include <opie2/odebug.h> | 15 | #include <opie2/odebug.h> |
16 | #include <qpe/applnk.h> | ||
16 | #include <qpe/storage.h> | 17 | #include <qpe/storage.h> |
@@ -53,4 +54,6 @@ void AdvancedFm::init() { | |||
53 | 54 | ||
55 | QPixmap pm; | ||
54 | cdUpButton = new QToolButton( 0,"cdUpButton"); | 56 | cdUpButton = new QToolButton( 0,"cdUpButton"); |
55 | cdUpButton->setPixmap(Resource::loadPixmap("up")); | 57 | pm.convertFromImage( Resource::loadImage( "up" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
58 | cdUpButton->setPixmap( pm ); | ||
56 | cdUpButton->setAutoRaise( true ); | 59 | cdUpButton->setAutoRaise( true ); |
@@ -59,3 +62,4 @@ void AdvancedFm::init() { | |||
59 | qpeDirButton= new QToolButton( 0,"QPEButton"); | 62 | qpeDirButton= new QToolButton( 0,"QPEButton"); |
60 | qpeDirButton->setPixmap( Resource::loadPixmap("launcher/opielogo16x16"));//,"",this,"QPEButton"); | 63 | pm.convertFromImage( Resource::loadImage( "logo/opielogo" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
64 | qpeDirButton->setPixmap( pm );//,"",this,"QPEButton"); | ||
61 | qpeDirButton->setAutoRaise( true ); | 65 | qpeDirButton->setAutoRaise( true ); |
@@ -64,3 +68,4 @@ void AdvancedFm::init() { | |||
64 | cfButton = new QToolButton( 0, "CFButton"); | 68 | cfButton = new QToolButton( 0, "CFButton"); |
65 | cfButton->setPixmap(Resource::loadPixmap("cardmon/pcmcia")); | 69 | pm.convertFromImage( Resource::loadImage( "cardmon/pcmcia" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
70 | cfButton->setPixmap( pm ); | ||
66 | cfButton->setAutoRaise( true ); | 71 | cfButton->setAutoRaise( true ); |
@@ -69,3 +74,4 @@ void AdvancedFm::init() { | |||
69 | sdButton = new QToolButton( 0, "SDButton"); | 74 | sdButton = new QToolButton( 0, "SDButton"); |
70 | sdButton->setPixmap(Resource::loadPixmap("advancedfm/sdcard")); | 75 | pm.convertFromImage( Resource::loadImage( "advancedfm/sdcard" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
76 | sdButton->setPixmap( pm ); | ||
71 | sdButton->setAutoRaise( true ); | 77 | sdButton->setAutoRaise( true ); |
@@ -74,3 +80,4 @@ void AdvancedFm::init() { | |||
74 | docButton = new QToolButton( 0,"docsButton"); | 80 | docButton = new QToolButton( 0,"docsButton"); |
75 | docButton->setPixmap(Resource::loadPixmap("DocsIcon")); | 81 | pm.convertFromImage( Resource::loadImage( "DocsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
82 | docButton->setPixmap( pm ); | ||
76 | docButton->setAutoRaise( true ); | 83 | docButton->setAutoRaise( true ); |
@@ -79,3 +86,4 @@ void AdvancedFm::init() { | |||
79 | homeButton = new QToolButton( 0, "homeButton"); | 86 | homeButton = new QToolButton( 0, "homeButton"); |
80 | homeButton->setPixmap(Resource::loadPixmap("home")); | 87 | pm.convertFromImage( Resource::loadImage( "home" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); |
88 | homeButton->setPixmap( pm ); | ||
81 | homeButton->setAutoRaise( true ); | 89 | homeButton->setAutoRaise( true ); |