kchart
kchartWizardSelectChartSubTypePage.h00001 #ifndef _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
00002 #define _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
00003
00004
00005 #include "kchart_params.h"
00006
00007 class QButtonGroup;
00008 class QPushButton;
00009 class QRadioButton;
00010 class QSpinBox;
00011
00012 namespace KChart
00013 {
00014
00015 class KChartPart;
00016
00017 class KChartWizardSelectChartSubTypePage : public QWidget
00018 {
00019 Q_OBJECT
00020 public:
00021 KChartWizardSelectChartSubTypePage( QWidget* parent, KChartPart* chart );
00022 void changeSubTypeName( KChartParams::ChartType _type);
00023
00024 bool chartSubType;
00025 public slots:
00026 void apply();
00027
00028 private:
00029 KChartPart *m_chart;
00030 KChartParams::ChartType m_charttype;
00031
00032
00033 QRadioButton *m_normal;
00034 QRadioButton *m_stacked;
00035 QRadioButton *m_percent;
00036 QSpinBox *m_numLines;
00037 };
00038
00039 }
00040
00041 #endif
|