diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /ksysguard/gui/ksgrd/StyleEngine.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysguard/gui/ksgrd/StyleEngine.h')
-rw-r--r-- | ksysguard/gui/ksgrd/StyleEngine.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ksysguard/gui/ksgrd/StyleEngine.h b/ksysguard/gui/ksgrd/StyleEngine.h index d896a2422..8056bd52f 100644 --- a/ksysguard/gui/ksgrd/StyleEngine.h +++ b/ksysguard/gui/ksgrd/StyleEngine.h @@ -24,9 +24,9 @@ #ifndef KSG_STYLEENGINE_H #define KSG_STYLEENGINE_H -#include <qcolor.h> -#include <qobject.h> -#include <qptrlist.h> +#include <tqcolor.h> +#include <tqobject.h> +#include <tqptrlist.h> #include <kdemacros.h> @@ -49,14 +49,14 @@ class KDE_EXPORT StyleEngine : public QObject void readProperties( KConfig* ); void saveProperties( KConfig* ); - const QColor& firstForegroundColor() const; - const QColor& secondForegroundColor() const; - const QColor& alarmColor() const; - const QColor& backgroundColor() const; + const TQColor& firstForegroundColor() const; + const TQColor& secondForegroundColor() const; + const TQColor& alarmColor() const; + const TQColor& backgroundColor() const; uint fontSize() const; - const QColor& sensorColor( uint pos ); + const TQColor& sensorColor( uint pos ); uint numSensorColors() const; public slots: @@ -69,12 +69,12 @@ class KDE_EXPORT StyleEngine : public QObject private: void apply(); - QColor mFirstForegroundColor; - QColor mSecondForegroundColor; - QColor mAlarmColor; - QColor mBackgroundColor; + TQColor mFirstForegroundColor; + TQColor mSecondForegroundColor; + TQColor mAlarmColor; + TQColor mBackgroundColor; uint mFontSize; - QValueList<QColor> mSensorColors; + TQValueList<TQColor> mSensorColors; StyleSettings *mSettingsDialog; }; |