author | harlekin <harlekin> | 2003-04-19 22:19:11 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-04-19 22:19:11 (UTC) |
commit | 0374e0e52e9b754ae48ada631cad2b397feabb21 (patch) (side-by-side diff) | |
tree | c4dff4db838838956d7f137b52839a11ddaad0e1 /library/qpeapplication.cpp | |
parent | 29c556ffc9b1497cd996ceb46d646b1eaf1288be (diff) | |
download | opie-0374e0e52e9b754ae48ada631cad2b397feabb21.zip opie-0374e0e52e9b754ae48ada631cad2b397feabb21.tar.gz opie-0374e0e52e9b754ae48ada631cad2b397feabb21.tar.bz2 |
big toolbar icons for screenwidths > 600
-rw-r--r-- | library/qpeapplication.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 2ef60d5..7f8299a 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -52,2 +52,3 @@ #include <qsignal.h> +#include <qmainwindow.h> #include "qpeapplication.h" @@ -148,2 +149,8 @@ public: { + + // ugly hack, remove that later after finding a sane solution + if ( QPEApplication::desktop() ->width() >= 600 && ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) ) { + ( ( QMainWindow* ) mw )->setUsesBigPixmaps( true ); + } + if ( mw->layout() && mw->inherits("QDialog") ) { @@ -865,2 +872,4 @@ bool QPEApplication::qwsEventFilter( QWSEvent * e ) } + + return QApplication::qwsEventFilter( e ); @@ -1338,2 +1347,3 @@ void QPEApplication::showMainDocumentWidget( QWidget* mw, bool nomaximize ) + d->show(mw, nomaximize ); |