summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.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/SensorDisplayLib/FancyPlotterSettings.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/SensorDisplayLib/FancyPlotterSettings.h')
-rw-r--r--ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.h b/ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.h
index b813bee34..08e73feca 100644
--- a/ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.h
+++ b/ksysguard/gui/SensorDisplayLib/FancyPlotterSettings.h
@@ -41,11 +41,11 @@ class FancyPlotterSettings : public KDialogBase
Q_OBJECT
public:
- FancyPlotterSettings( QWidget* parent = 0, const char* name = 0 );
+ FancyPlotterSettings( TQWidget* parent = 0, const char* name = 0 );
~FancyPlotterSettings();
- void setTitle( const QString &title );
- QString title() const;
+ void setTitle( const TQString &title );
+ TQString title() const;
void setUseAutoRange( bool value );
bool useAutoRange() const;
@@ -65,8 +65,8 @@ class FancyPlotterSettings : public KDialogBase
void setShowVerticalLines( bool value );
bool showVerticalLines() const;
- void setVerticalLinesColor( const QColor &color );
- QColor verticalLinesColor() const;
+ void setVerticalLinesColor( const TQColor &color );
+ TQColor verticalLinesColor() const;
void setVerticalLinesDistance( int distance );
int verticalLinesDistance() const;
@@ -77,8 +77,8 @@ class FancyPlotterSettings : public KDialogBase
void setShowHorizontalLines( bool value );
bool showHorizontalLines() const;
- void setHorizontalLinesColor( const QColor &color );
- QColor horizontalLinesColor() const;
+ void setHorizontalLinesColor( const TQColor &color );
+ TQColor horizontalLinesColor() const;
void setHorizontalLinesCount( int count );
int horizontalLinesCount() const;
@@ -92,13 +92,13 @@ class FancyPlotterSettings : public KDialogBase
void setFontSize( int size );
int fontSize() const;
- void setBackgroundColor( const QColor &color );
- QColor backgroundColor() const;
+ void setBackgroundColor( const TQColor &color );
+ TQColor backgroundColor() const;
- void setSensors( const QValueList< QStringList > &list );
- QValueList< QStringList > sensors() const;
- QValueList<int> order() const;
- QValueList<int> deleted() const;
+ void setSensors( const TQValueList< TQStringList > &list );
+ TQValueList< TQStringList > sensors() const;
+ TQValueList<int> order() const;
+ TQValueList<int> deleted() const;
void clearDeleted();
void resetOrder();
@@ -107,7 +107,7 @@ class FancyPlotterSettings : public KDialogBase
void removeSensor();
void moveUpSensor();
void moveDownSensor();
- void selectionChanged( QListViewItem* );
+ void selectionChanged( TQListViewItem* );
private:
@@ -123,21 +123,21 @@ class FancyPlotterSettings : public KDialogBase
KIntNumInput *mFontSize;
KListView *mSensorView;
- QCheckBox *mShowVerticalLines;
- QCheckBox *mShowHorizontalLines;
- QCheckBox *mVerticalLinesScroll;
- QCheckBox *mUseAutoRange;
- QCheckBox *mShowLabels;
- QCheckBox *mShowTopBar;
- QPushButton *mEditButton;
- QPushButton *mRemoveButton;
- QPushButton *mMoveUpButton;
- QPushButton *mMoveDownButton;
- QRadioButton *mUsePolygonStyle;
- QRadioButton *mUseOriginalStyle;
+ TQCheckBox *mShowVerticalLines;
+ TQCheckBox *mShowHorizontalLines;
+ TQCheckBox *mVerticalLinesScroll;
+ TQCheckBox *mUseAutoRange;
+ TQCheckBox *mShowLabels;
+ TQCheckBox *mShowTopBar;
+ TQPushButton *mEditButton;
+ TQPushButton *mRemoveButton;
+ TQPushButton *mMoveUpButton;
+ TQPushButton *mMoveDownButton;
+ TQRadioButton *mUsePolygonStyle;
+ TQRadioButton *mUseOriginalStyle;
/** The numbers of the sensors to be delete.*/
- QValueList<int> mDeleted;
+ TQValueList<int> mDeleted;
};
#endif