-rw-r--r-- | microkde/kglobalsettings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/microkde/kglobalsettings.h b/microkde/kglobalsettings.h index e2620b3..05ef279 100644 --- a/microkde/kglobalsettings.h +++ b/microkde/kglobalsettings.h | |||
@@ -1,33 +1,35 @@ | |||
1 | #ifndef MICROKDE_KGLOBALSETTINGS_H | 1 | #ifndef MICROKDE_KGLOBALSETTINGS_H |
2 | #define MICROKDE_KGLOBALSETTINGS_H | 2 | #define MICROKDE_KGLOBALSETTINGS_H |
3 | 3 | ||
4 | #include <qfont.h> | 4 | #include <qfont.h> |
5 | #include <qrect.h> | 5 | #include <qrect.h> |
6 | 6 | ||
7 | 7 | ||
8 | #define KDE_DEFAULT_SINGLECLICK true | 8 | #define KDE_DEFAULT_SINGLECLICK true |
9 | 9 | ||
10 | 10 | ||
11 | class KGlobalSettings | 11 | class KGlobalSettings |
12 | { | 12 | { |
13 | public: | 13 | public: |
14 | static QFont generalFont(); | 14 | static QFont generalFont(); |
15 | static QFont generalMaxFont(); | 15 | static QFont generalMaxFont(); |
16 | static QFont toolBarFont(); | 16 | static QFont toolBarFont(); |
17 | 17 | ||
18 | static QColor mAlternate; | ||
18 | static QColor toolBarHighlightColor(); | 19 | static QColor toolBarHighlightColor(); |
19 | static QColor alternateBackgroundColor(); | 20 | static QColor alternateBackgroundColor(); |
21 | static void setAlternateBackgroundColor(QColor); | ||
20 | static QRect desktopGeometry( QWidget * ); | 22 | static QRect desktopGeometry( QWidget * ); |
21 | static QString timeTrackerDir(); | 23 | static QString timeTrackerDir(); |
22 | 24 | ||
23 | /** | 25 | /** |
24 | * Returns whether KDE runs in single (default) or double click | 26 | * Returns whether KDE runs in single (default) or double click |
25 | * mode. | 27 | * mode. |
26 | * see http://developer.kde.org/documentation/standards/kde/style/mouse/index.html | 28 | * see http://developer.kde.org/documentation/standards/kde/style/mouse/index.html |
27 | * @return true if single click mode, or false if double click mode. | 29 | * @return true if single click mode, or false if double click mode. |
28 | **/ | 30 | **/ |
29 | static bool singleClick(); | 31 | static bool singleClick(); |
30 | 32 | ||
31 | }; | 33 | }; |
32 | 34 | ||
33 | #endif | 35 | #endif |