summaryrefslogtreecommitdiffabout
path: root/microkde/kglobal.cpp
authorzautrix <zautrix>2004-06-26 19:01:18 (UTC)
committer zautrix <zautrix>2004-06-26 19:01:18 (UTC)
commitb9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (side-by-side diff)
tree2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /microkde/kglobal.cpp
downloadkdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2
Initial revision
Diffstat (limited to 'microkde/kglobal.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kglobal.cpp166
1 files changed, 166 insertions, 0 deletions
diff --git a/microkde/kglobal.cpp b/microkde/kglobal.cpp
new file mode 100644
index 0000000..0aba952
--- a/dev/null
+++ b/microkde/kglobal.cpp
@@ -0,0 +1,166 @@
+#include "kglobal.h"
+#include <qkeycode.h>
+#include <qapplication.h>
+
+KLocale *KGlobal::mLocale = 0;
+KConfig *KGlobal::mConfig = 0;
+KIconLoader *KGlobal::mIconLoader = 0;
+KStandardDirs *KGlobal::mDirs = 0;
+
+QString KGlobal::mAppName = "godot";
+
+KLocale *KGlobal::locale()
+{
+ if ( !mLocale ) {
+ ASSERT(mAppName);
+
+ mLocale = new KLocale();//mAppName);
+ }
+
+ return mLocale;
+}
+
+//US
+void KGlobal::setLocale(KLocale *kg)
+{
+ mLocale = kg;
+}
+
+KConfig *KGlobal::config()
+{
+ if ( !mConfig ) {
+ mConfig = new KConfig( KStandardDirs::appDir() + mAppName + "rc" );
+ }
+
+ return mConfig;
+}
+
+KGlobal::Size KGlobal::getDesktopSize()
+{
+#ifdef DESKTOP_VERSION
+ return KGlobal::Desktop;
+#else
+ if ( QApplication::desktop()->width() < 480 )
+ return KGlobal::Small;
+ else
+ return KGlobal::Medium;
+#endif
+}
+
+KGlobal::Orientation KGlobal::getOrientation()
+{
+ if (QApplication::desktop()->width() > QApplication::desktop()->height())
+ return KGlobal::Landscape;
+ else
+ return KGlobal::Portrait;
+}
+
+int KGlobal::getDesktopWidth()
+{
+ return QApplication::desktop()->width();
+}
+
+int KGlobal::getDesktopHeight()
+{
+ return QApplication::desktop()->height();
+}
+
+
+KIconLoader *KGlobal::iconLoader()
+{
+ if ( !mIconLoader ) {
+ mIconLoader = new KIconLoader();
+ }
+
+ return mIconLoader;
+}
+
+KStandardDirs *KGlobal::dirs()
+{
+ if ( !mDirs ) {
+ mDirs = new KStandardDirs();
+ }
+
+ return mDirs;
+}
+
+void KGlobal::setAppName( const QString &appName )
+{
+ mAppName = appName;
+}
+
+//US
+QString KGlobal::getAppName()
+{
+ return mAppName;
+}
+QString KGlobal::formatMessage ( QString mess, int maxlen )
+{
+ //int maxlen = 80;
+ int start = 0;
+ int end = mess.length();
+ QString retVal = "";
+ int nl, space;
+ while ( (end - start) > maxlen ) {
+ nl = mess.find( "\n", start );
+ if ( nl > 0 && nl < start + maxlen ) {
+ nl += 1;
+ retVal += mess.mid( start, nl - start);
+ start = nl;
+ } else {
+ space = mess.findRev( " ", start + maxlen );
+ if ( space < start ) {
+ retVal += mess.mid( start, maxlen) +"\n";
+ start += maxlen ;
+ } else {
+ retVal += mess.mid( start, space - start ) +"\n";
+ start = space+ 1;
+ }
+ }
+ }
+ retVal += mess.mid( start, end - start );
+ return retVal;
+}
+int KGlobal::knumkeykonv( int k )
+{
+ int key;
+switch( k ) {
+ case Qt::Key_Q :
+ key = Qt::Key_1;
+ break;
+ case Qt::Key_W :
+ key = Qt::Key_2;
+ break;
+ case Qt::Key_E :
+ key = Qt::Key_3;
+ break;
+ case Qt::Key_R :
+ key = Qt::Key_4;
+ break;
+ case Qt::Key_T :
+ key = Qt::Key_5;
+ break;
+ case Qt::Key_Z :
+ key = Qt::Key_6;
+ break;
+ case Qt::Key_Y :
+ key = Qt::Key_6;
+ break;
+ case Qt::Key_U :
+ key = Qt::Key_7;
+ break;
+ case Qt::Key_I :
+ key = Qt::Key_8;
+ break;
+ case Qt::Key_O :
+ key = Qt::Key_9;
+ break;
+ case Qt::Key_P :
+ key = Qt::Key_0;
+ break;
+ default:
+ key = k;
+ break;
+ } // switch
+ return key;
+}