From ac74e73175ef4fecbcb77cd23b792983ca6ea06b Mon Sep 17 00:00:00 2001 From: mickeyl Date: Thu, 22 May 2003 13:41:36 +0000 Subject: guard ugly c700-only hacks with #ifdef QT_QWS_SHARP --- (limited to 'library') diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 19adb00..22d222a 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -149,9 +149,14 @@ public: { // ugly hack, remove that later after finding a sane solution + // Addendum: Only Sharp currently has models with high resolution but (physically) small displays, + // so this is only useful if QT_QWS_SHARP is defined. E.g. SIMpad has 800x600 but has + // a (physically) large enough display to use the small icons + #ifdef QT_QWS_SHARP if ( QPEApplication::desktop() ->width() >= 600 && ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) ) { ( ( QMainWindow* ) mw )->setUsesBigPixmaps( true ); } + #endif if ( mw->layout() && mw->inherits("QDialog") ) { QPEApplication::showDialog((QDialog*)mw, nomaximize); @@ -522,18 +527,19 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) AppLnk::setSmallIconSize( 10 ); AppLnk::setBigIconSize( 28 ); } + #ifdef QT_QWS_SHARP else if ( dw > 600 ) { setFont( QFont( "vera", 16 ) ); AppLnk::setSmallIconSize( 24 ); AppLnk::setBigIconSize( 48 ); } + #endif else if ( dw > 200 ) { setFont( QFont( "vera", 10 ) ); AppLnk::setSmallIconSize( 14 ); AppLnk::setBigIconSize( 32 ); } - QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); -- cgit v0.9.0.2