author | zecke <zecke> | 2005-03-03 21:40:33 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-03-03 21:40:33 (UTC) |
commit | 98af15f829dadf9083e5e897328ab58e5e82a0fd (patch) (unidiff) | |
tree | ab6a438f34ed6a2f53e5b5806b86bf58fe7f9eac | |
parent | b92ff0d96359e7f383c5fc1c54271c3819bef413 (diff) | |
download | opie-98af15f829dadf9083e5e897328ab58e5e82a0fd.zip opie-98af15f829dadf9083e5e897328ab58e5e82a0fd.tar.gz opie-98af15f829dadf9083e5e897328ab58e5e82a0fd.tar.bz2 |
-Scale the image to the AppLnk::smallIconSize
-Set the size of the wait widget to AppLnk::smallIconSize
-rw-r--r-- | core/launcher/wait.cpp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/launcher/wait.cpp b/core/launcher/wait.cpp index a5b329d..523819d 100644 --- a/core/launcher/wait.cpp +++ b/core/launcher/wait.cpp | |||
@@ -22,7 +22,6 @@ | |||
22 | 22 | ||
23 | #include <qtopia/config.h> | ||
24 | |||
25 | #include <opie2/owait.h> | 23 | #include <opie2/owait.h> |
26 | 24 | ||
27 | 25 | #include <qtopia/config.h> | |
26 | #include <qtopia/applnk.h> | ||
28 | 27 | ||
@@ -33,5 +32,12 @@ using namespace Opie::Ui; | |||
33 | Wait::Wait( QWidget *parent ) : QWidget( parent ), | 32 | Wait::Wait( QWidget *parent ) : QWidget( parent ), |
34 | pm( Resource::loadPixmap( "wait" ) ), waiting( FALSE ) | 33 | waiting( FALSE ) |
35 | { | 34 | { |
36 | setFixedSize( pm.size() ); | 35 | |
36 | QSize size( AppLnk::smallIconSize(), AppLnk::smallIconSize() ); | ||
37 | setFixedSize( size ); | ||
38 | |||
39 | QImage img = Resource::loadImage( "wait" ); | ||
40 | img = img.smoothScale( size.width(), size.height() ); | ||
41 | pm.convertFromImage( img ); | ||
42 | |||
37 | lastWaitObject = this; | 43 | lastWaitObject = this; |