-rw-r--r-- | microkde/kglobal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/microkde/kglobal.h b/microkde/kglobal.h index 1e03bea..a6c2527 100644 --- a/microkde/kglobal.h +++ b/microkde/kglobal.h @@ -20,18 +20,18 @@ class KGlobal { //US begin: added the following methods for convenience static QString getAppName(); static void setLocale(KLocale *); - + enum Orientation { Portrait, Landscape }; - enum Size { Small, Medium, Desktop }; - + enum Size { Small = 0, Medium = 1, Desktop = 2}; + static int getDesktopWidth(); static int getDesktopHeight(); static KGlobal::Size getDesktopSize(); static KGlobal::Orientation getOrientation(); - - + + private: static KLocale *mLocale; static KConfig *mConfig; static KIconLoader *mIconLoader; |