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.
43 lines
761 B
43 lines
761 B
#ifndef _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
|
|
#define _kchartWIZARDSELECTCHARTSUBTYPEPAGE_H
|
|
|
|
|
|
#include "kchart_params.h"
|
|
|
|
class TQButtonGroup;
|
|
class TQPushButton;
|
|
class TQRadioButton;
|
|
class TQSpinBox;
|
|
|
|
namespace KChart
|
|
{
|
|
|
|
class KChartPart;
|
|
|
|
class KChartWizardSelectChartSubTypePage : public TQWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KChartWizardSelectChartSubTypePage( TQWidget* parent, KChartPart* chart );
|
|
void changeSubTypeName( KChartParams::ChartType _type);
|
|
|
|
bool chartSubType;
|
|
public slots:
|
|
void apply();
|
|
|
|
private:
|
|
KChartPart *m_chart;
|
|
KChartParams::ChartType m_charttype;
|
|
|
|
// Widgets
|
|
TQRadioButton *m_normal;
|
|
TQRadioButton *m_stacked;
|
|
TQRadioButton *m_percent;
|
|
TQSpinBox *m_numLines;
|
|
};
|
|
|
|
} //KChart namespace
|
|
|
|
#endif
|