summaryrefslogtreecommitdiffstats
path: root/kpersonalizer/ksysinfo.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit4aed2c8219774f5d797760606b8489a92ddc5163 (patch)
tree3f8c130f7d269626bf6a9447407ef6c35954426a /kpersonalizer/ksysinfo.h
downloadtdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz
tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpersonalizer/ksysinfo.h')
-rw-r--r--kpersonalizer/ksysinfo.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/kpersonalizer/ksysinfo.h b/kpersonalizer/ksysinfo.h
new file mode 100644
index 000000000..2d6fcddb8
--- /dev/null
+++ b/kpersonalizer/ksysinfo.h
@@ -0,0 +1,60 @@
+/***************************************************************************
+ ksysinfo.h - description
+ -------------------
+ begin : Don Jul 11 2002
+ copyright : (C) 2002 by Carsten Wolff, Christoph Held
+ email : wolff@kde.org, c-held@web.de
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef KSYSINFO_H
+#define KSYSINFO_H
+
+class QString;
+class QFont;
+class QFontDatabase;
+
+class KSysInfo {
+public:
+ KSysInfo();
+ ~KSysInfo();
+ /* XServer - info */
+ bool isXfromXFreeInc();
+ bool isXfromXOrg();
+ int getXRelease();
+ bool getRenderSupport();
+ /* font - info */
+ QFont getNormalFont();
+ QFont getSmallFont();
+ QFont getBoldFont();
+ QFont getFixedWidthFont();
+ /* Hardware - info */
+ int getCpuSpeed();
+private:
+ void initXInfo();
+ void initFontFamilies();
+ void initHWInfo();
+private:
+ /* XServer - info */
+ QString m_xvendor;
+ bool m_xfree_inc;
+ bool m_xorg;
+ int m_xrelease;
+ bool m_xrender;
+ /* font - info */
+ QFontDatabase* m_fdb;
+ QString m_normal_font;
+ QString m_fixed_font;
+ /* Hardware - info */
+ int m_cpu_speed;
+};
+
+#endif