summaryrefslogtreecommitdiffstats
path: root/kchart/kchartFontConfigPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kchartFontConfigPage.h')
-rw-r--r--kchart/kchartFontConfigPage.h43
1 files changed, 22 insertions, 21 deletions
diff --git a/kchart/kchartFontConfigPage.h b/kchart/kchartFontConfigPage.h
index 6051085a0..96f813950 100644
--- a/kchart/kchartFontConfigPage.h
+++ b/kchart/kchartFontConfigPage.h
@@ -20,28 +20,29 @@
#ifndef __KCHARTFONTCONFIGPAGE_H__
#define __KCHARTFONTCONFIGPAGE_H__
-#include <qwidget.h>
-#include <qbutton.h>
+#include <tqwidget.h>
+#include <tqbutton.h>
#include "kchartcolorarray.h"
#include "koChart.h"
-class QLineEdit;
-class QListBox;
-class QPushButton;
+class TQLineEdit;
+class TQListBox;
+class TQPushButton;
namespace KChart
{
class KChartParams;
-class KChartFontConfigPage : public QWidget
+class KChartFontConfigPage : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- KChartFontConfigPage( KChartParams* params,QWidget* parent,
+ KChartFontConfigPage( KChartParams* params,TQWidget* tqparent,
KDChartTableData *dat);
void init();
void apply();
@@ -54,24 +55,24 @@ private:
KChartParams *m_params;
// Widgets
- QLineEdit *m_font;
- QListBox *m_list;
- QPushButton *m_fontButton;
+ TQLineEdit *m_font;
+ TQListBox *m_list;
+ TQPushButton *m_fontButton;
// Fonts for different things.
- QFont xTitle;
- QFont yTitle;
- QFont yAxis;
- QFont xAxis;
- QFont label;
+ TQFont xTitle;
+ TQFont yTitle;
+ TQFont yAxis;
+ TQFont xAxis;
+ TQFont label;
// Old stuff. Remove?
- QButton::ToggleState xTitleIsRelative;
- QButton::ToggleState yTitleIsRelative;
- QButton::ToggleState labelIsRelative;
- QButton::ToggleState yAxisIsRelative;
- QButton::ToggleState xAxisIsRelative;
- QButton::ToggleState legendIsRelative;
+ TQButton::ToggleState xTitleIsRelative;
+ TQButton::ToggleState yTitleIsRelative;
+ TQButton::ToggleState labelIsRelative;
+ TQButton::ToggleState yAxisIsRelative;
+ TQButton::ToggleState xAxisIsRelative;
+ TQButton::ToggleState legendIsRelative;
KDChartTableData *data;
};