kchart
kchartWizardSelectDataFormatPage.h00001 #ifndef _kchartWIZARDSELECTDATAFORMATPAGE_H
00002 #define _kchartWIZARDSELECTDATAFORMATPAGE_H
00003
00004
00005 #include "kchart_params.h"
00006
00007 class QLineEdit;
00008 class QRadioButton;
00009 class QCheckBox;
00010 class QButtonGroup;
00011 class QPushButton;
00012
00013
00014 namespace KChart
00015 {
00016
00017 class KChartPart;
00018
00019 class KChartWizardSelectDataFormatPage : public QWidget
00020 {
00021 Q_OBJECT
00022 public:
00023 KChartWizardSelectDataFormatPage( QWidget* parent, KChartPart* chart );
00024
00025 QString dataArea() const;
00026 void setDataArea( const QString &area );
00027
00028 public slots:
00029 void apply();
00030
00031 private:
00032 KChartPart *m_chart;
00033
00034 QLineEdit *m_dataArea;
00035 QRadioButton *m_rowMajor;
00036 QRadioButton *m_colMajor;
00037 QCheckBox *m_firstRowAsLabel;
00038 QCheckBox *m_firstColAsLabel;
00039 };
00040
00041 }
00042
00043 #endif
|