You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
748 B
42 lines
748 B
15 years ago
|
#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
|