summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/ksgrd/StyleSettings.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /ksysguard/gui/ksgrd/StyleSettings.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-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/StyleSettings.h')
-rw-r--r--ksysguard/gui/ksgrd/StyleSettings.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/ksysguard/gui/ksgrd/StyleSettings.h b/ksysguard/gui/ksgrd/StyleSettings.h
index d16b5e723..0f662f20f 100644
--- a/ksysguard/gui/ksgrd/StyleSettings.h
+++ b/ksysguard/gui/ksgrd/StyleSettings.h
@@ -26,7 +26,7 @@
#include <kdialogbase.h>
-#include <qcolor.h>
+#include <tqcolor.h>
class KColorButton;
@@ -38,30 +38,30 @@ class StyleSettings : public KDialogBase
Q_OBJECT
public:
- StyleSettings( QWidget *parent = 0, const char *name = 0 );
+ StyleSettings( TQWidget *parent = 0, const char *name = 0 );
~StyleSettings();
- void setFirstForegroundColor( const QColor &color );
- QColor firstForegroundColor() const;
+ void setFirstForegroundColor( const TQColor &color );
+ TQColor firstForegroundColor() const;
- void setSecondForegroundColor( const QColor &color );
- QColor secondForegroundColor() const;
+ void setSecondForegroundColor( const TQColor &color );
+ TQColor secondForegroundColor() const;
- void setAlarmColor( const QColor &color );
- QColor alarmColor() const;
+ void setAlarmColor( const TQColor &color );
+ TQColor alarmColor() const;
- void setBackgroundColor( const QColor &color );
- QColor backgroundColor() const;
+ void setBackgroundColor( const TQColor &color );
+ TQColor backgroundColor() const;
void setFontSize( uint size );
uint fontSize() const;
- void setSensorColors( const QValueList<QColor> &list );
- QValueList<QColor> sensorColors();
+ void setSensorColors( const TQValueList<TQColor> &list );
+ TQValueList<TQColor> sensorColors();
private slots:
void editSensorColor();
- void selectionChanged( QListBoxItem* );
+ void selectionChanged( TQListBoxItem* );
private:
KColorButton *mFirstForegroundColor;
@@ -69,10 +69,10 @@ class StyleSettings : public KDialogBase
KColorButton *mAlarmColor;
KColorButton *mBackgroundColor;
- QSpinBox *mFontSize;
+ TQSpinBox *mFontSize;
- QListBox *mColorListBox;
- QPushButton *mEditColorButton;
+ TQListBox *mColorListBox;
+ TQPushButton *mEditColorButton;
};
#endif