summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardSelectChartSubTypePage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kchartWizardSelectChartSubTypePage.h')
-rw-r--r--kchart/kchartWizardSelectChartSubTypePage.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/kchart/kchartWizardSelectChartSubTypePage.h b/kchart/kchartWizardSelectChartSubTypePage.h
new file mode 100644
index 000000000..922cd92bd
--- /dev/null
+++ b/kchart/kchartWizardSelectChartSubTypePage.h
@@ -0,0 +1,41 @@
+#ifndef _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
+#define _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
+
+
+#include "kchart_params.h"
+
+class QButtonGroup;
+class QPushButton;
+class QRadioButton;
+class QSpinBox;
+
+namespace KChart
+{
+
+class KChartPart;
+
+class KChartWizardSelectChartSubTypePage : public QWidget
+{
+ Q_OBJECT
+public:
+ KChartWizardSelectChartSubTypePage( QWidget* parent, KChartPart* chart );
+ void changeSubTypeName( KChartParams::ChartType _type);
+
+ bool chartSubType;
+public slots:
+ void apply();
+
+private:
+ KChartPart *m_chart;
+ KChartParams::ChartType m_charttype;
+
+ // Widgets
+ QRadioButton *m_normal;
+ QRadioButton *m_stacked;
+ QRadioButton *m_percent;
+ QSpinBox *m_numLines;
+};
+
+} //KChart namespace
+
+#endif