author | zautrix <zautrix> | 2005-07-05 10:58:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-05 10:58:25 (UTC) |
commit | ea75d46072630883fae6ededd4af1d3c427ff59f (patch) (unidiff) | |
tree | 60c96620f59441cf0ff998e7e4edd5b2bc8007d9 /microkde | |
parent | 7e49703511de87f624cc8813b18ebbfcc01752cd (diff) | |
download | kdepimpi-ea75d46072630883fae6ededd4af1d3c427ff59f.zip kdepimpi-ea75d46072630883fae6ededd4af1d3c427ff59f.tar.gz kdepimpi-ea75d46072630883fae6ededd4af1d3c427ff59f.tar.bz2 |
fixx
-rw-r--r-- | microkde/kglobalsettings.cpp | 9 | ||||
-rw-r--r-- | microkde/kglobalsettings.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/microkde/kglobalsettings.cpp b/microkde/kglobalsettings.cpp index 3f8a630..2e483e9 100644 --- a/microkde/kglobalsettings.cpp +++ b/microkde/kglobalsettings.cpp | |||
@@ -54,24 +54,33 @@ QString KGlobalSettings::timeTrackerDir() | |||
54 | } | 54 | } |
55 | return dir; | 55 | return dir; |
56 | } | 56 | } |
57 | QString KGlobalSettings::backupDataDir() | 57 | QString KGlobalSettings::backupDataDir() |
58 | { | 58 | { |
59 | static QString dir; | 59 | static QString dir; |
60 | if ( dir.isEmpty() ) { | 60 | if ( dir.isEmpty() ) { |
61 | dir = locateLocal( "data", "backupdir/d.ttl" ); | 61 | dir = locateLocal( "data", "backupdir/d.ttl" ); |
62 | dir = dir.left ( dir.length() - 5); | 62 | dir = dir.left ( dir.length() - 5); |
63 | } | 63 | } |
64 | return dir; | 64 | return dir; |
65 | } | 65 | } |
66 | QString KGlobalSettings::calendarDir() | ||
67 | { | ||
68 | static QString dir; | ||
69 | if ( dir.isEmpty() ) { | ||
70 | dir = locateLocal( "data", "korganizer/d.ttl" ); | ||
71 | dir = dir.left ( dir.length() - 5); | ||
72 | } | ||
73 | return dir; | ||
74 | } | ||
66 | 75 | ||
67 | QFont KGlobalSettings::toolBarFont() | 76 | QFont KGlobalSettings::toolBarFont() |
68 | { | 77 | { |
69 | return QApplication::font(); | 78 | return QApplication::font(); |
70 | } | 79 | } |
71 | 80 | ||
72 | QColor KGlobalSettings::toolBarHighlightColor() | 81 | QColor KGlobalSettings::toolBarHighlightColor() |
73 | { | 82 | { |
74 | return QColor( "black" ); | 83 | return QColor( "black" ); |
75 | } | 84 | } |
76 | 85 | ||
77 | QColor KGlobalSettings::alternateBackgroundColor() | 86 | QColor KGlobalSettings::alternateBackgroundColor() |
diff --git a/microkde/kglobalsettings.h b/microkde/kglobalsettings.h index 4e4d87c..977e5b6 100644 --- a/microkde/kglobalsettings.h +++ b/microkde/kglobalsettings.h | |||
@@ -13,24 +13,25 @@ class KGlobalSettings | |||
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 mAlternate; |
19 | static QColor toolBarHighlightColor(); | 19 | static QColor toolBarHighlightColor(); |
20 | static QColor alternateBackgroundColor(); | 20 | static QColor alternateBackgroundColor(); |
21 | static void setAlternateBackgroundColor(QColor); | 21 | static void setAlternateBackgroundColor(QColor); |
22 | static QRect desktopGeometry( QWidget * ); | 22 | static QRect desktopGeometry( QWidget * ); |
23 | static QString timeTrackerDir(); | 23 | static QString timeTrackerDir(); |
24 | static QString backupDataDir(); | 24 | static QString backupDataDir(); |
25 | static QString calendarDir(); | ||
25 | 26 | ||
26 | /** | 27 | /** |
27 | * Returns whether KDE runs in single (default) or double click | 28 | * Returns whether KDE runs in single (default) or double click |
28 | * mode. | 29 | * mode. |
29 | * see http://developer.kde.org/documentation/standards/kde/style/mouse/index.html | 30 | * see http://developer.kde.org/documentation/standards/kde/style/mouse/index.html |
30 | * @return true if single click mode, or false if double click mode. | 31 | * @return true if single click mode, or false if double click mode. |
31 | **/ | 32 | **/ |
32 | static bool singleClick(); | 33 | static bool singleClick(); |
33 | 34 | ||
34 | }; | 35 | }; |
35 | 36 | ||
36 | #endif | 37 | #endif |