diff options
Diffstat (limited to 'kchart/kchartLegendConfigPage.h')
-rw-r--r-- | kchart/kchartLegendConfigPage.h | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/kchart/kchartLegendConfigPage.h b/kchart/kchartLegendConfigPage.h index 38fde8dd..fe484184 100644 --- a/kchart/kchartLegendConfigPage.h +++ b/kchart/kchartLegendConfigPage.h @@ -21,28 +21,29 @@ #ifndef __KCHARTLEGENDCONFIGPAGE_H__ #define __KCHARTLEGENDCONFIGPAGE_H__ -#include <qwidget.h> -#include <qbutton.h> -#include <qlayout.h> +#include <tqwidget.h> +#include <tqbutton.h> +#include <tqlayout.h> -class QVButtonGroup; -class QRadioButton; -class QLineEdit; +class TQVButtonGroup; +class TQRadioButton; +class TQLineEdit; class KColorButton; -class QPushButton; +class TQPushButton; namespace KChart { class KChartParams; -class KChartLegendConfigPage : public QWidget +class KChartLegendConfigPage : public TQWidget { Q_OBJECT + TQ_OBJECT public: KChartLegendConfigPage( KChartParams* params, - QWidget* parent ); + TQWidget* tqparent ); void init(); void apply(); public slots: @@ -51,20 +52,20 @@ public slots: private: KChartParams* _params; - QPushButton *lTopLeft, *lTopLeftTop, *lTop, *lTopRightTop, *lTopRight, + TQPushButton *lTopLeft, *lTopLeftTop, *lTop, *lTopRightTop, *lTopRight, *lTopLeftLeft, *lTopRightRight, *lLeft, *noLegend, *lRight, *lBottomLeftLeft, *lBottomRightRight, *lBottomLeft, *lBottomLeftBottom, *lBottom, *lBottomRightBottom, *lBottomRight; - QLineEdit *title; - QVButtonGroup* orientationGroup; + TQLineEdit *title; + TQVButtonGroup* orientationGroup; KColorButton *legendTitleColor, *legendTextColor, *legendFrameColor; - QFont titleLegend, textLegend; - QPushButton *titleLegendFontButton, *textLegendFontButton; - QButton::ToggleState titleLegendIsRelative, textLegendIsRelative; + TQFont titleLegend, textLegend; + TQPushButton *titleLegendFontButton, *textLegendFontButton; + TQButton::ToggleState titleLegendIsRelative, textLegendIsRelative; - QPushButton* addButton( QGridLayout* layout, QButtonGroup* gb, - const QString &toolTipText, const QString &icon, + TQPushButton* addButton( TQGridLayout* tqlayout, TQButtonGroup* gb, + const TQString &toolTipText, const TQString &icon, int posY, int posX ); }; |