summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardSetupDataPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kchartWizardSetupDataPage.h')
-rw-r--r--kchart/kchartWizardSetupDataPage.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/kchart/kchartWizardSetupDataPage.h b/kchart/kchartWizardSetupDataPage.h
new file mode 100644
index 00000000..ebc1e51d
--- /dev/null
+++ b/kchart/kchartWizardSetupDataPage.h
@@ -0,0 +1,43 @@
+#ifndef _kchartWIZARDSELECTSETUPDATAPAGE_H
+#define _kchartWIZARDSELECTSETUPDATAPAGE_H
+
+#include <qwidget.h>
+
+class QRadioButton;
+class QCheckBox;
+
+namespace KChart
+{
+
+class kchartWidget;
+class KChartPart;
+class KChartWizard;
+
+class KChartWizardSetupDataPage : public QWidget
+{
+ Q_OBJECT
+
+public:
+ KChartWizardSetupDataPage( QWidget* parent, KChartPart* chart );
+ ~KChartWizardSetupDataPage();
+
+private slots:
+ void dataInRowsClicked();
+ void dataInColsClicked();
+ void firstColumnIsDescriptionToggled( bool );
+ void firstRowIsDescriptionToggled( bool );
+
+private:
+ KChartPart* _chart;
+ KChartWizard* _parent;
+
+ kchartWidget* preview;
+ QRadioButton* datacol;
+ QRadioButton* datarow;
+ QCheckBox* rowdescript;
+ QCheckBox* coldescript;
+};
+
+} //namespace KChart
+
+#endif