author | ulf69 <ulf69> | 2004-08-11 01:56:15 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-11 01:56:15 (UTC) |
commit | 42860986468bb90c55783fcebc1b20bd3ee460ac (patch) (side-by-side diff) | |
tree | 35b2c491ae4fb98b018f72af29ee12ae67b5e053 /microkde | |
parent | 1f7c51ec14521aedd2e8838f1760cdd5eb3ed08a (diff) | |
download | kdepimpi-42860986468bb90c55783fcebc1b20bd3ee460ac.zip kdepimpi-42860986468bb90c55783fcebc1b20bd3ee460ac.tar.gz kdepimpi-42860986468bb90c55783fcebc1b20bd3ee460ac.tar.bz2 |
changed the Desktopsize to meaningfull values
-rw-r--r-- | microkde/kglobal.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/microkde/kglobal.cpp b/microkde/kglobal.cpp index 2b1bd34..bf7e238 100644 --- a/microkde/kglobal.cpp +++ b/microkde/kglobal.cpp @@ -15,8 +15,8 @@ KLocale *KGlobal::locale() if ( !mLocale ) { ASSERT(mAppName); - + mLocale = new KLocale();//mAppName); } - + return mLocale; } @@ -33,5 +33,5 @@ KConfig *KGlobal::config() return mConfig; } - + KGlobal::Size KGlobal::getDesktopSize() { @@ -39,6 +39,8 @@ KGlobal::Size KGlobal::getDesktopSize() return KGlobal::Desktop; #else - if ( QApplication::desktop()->width() < 480 ) + if ( QApplication::desktop()->width() <= 320 ) return KGlobal::Small; + else if ( QApplication::desktop()->width() > 480) + return KGlobal::Desktop; else return KGlobal::Medium; @@ -70,5 +72,5 @@ KIconLoader *KGlobal::iconLoader() mIconLoader = new KIconLoader(); } - + return mIconLoader; } @@ -79,5 +81,5 @@ KStandardDirs *KGlobal::dirs() mDirs = new KStandardDirs(); } - + return mDirs; } @@ -86,5 +88,5 @@ void KGlobal::setAppName( const QString &appName ) { mAppName = appName; - + mConfig = new KConfig( locateLocal("config", mAppName + "rc" ) ); } @@ -96,5 +98,5 @@ QString KGlobal::getAppName() } QString KGlobal::formatMessage ( QString mess, int maxlen ) -{ +{ //int maxlen = 80; int start = 0; |