kchart
kchartParameterPolarConfigPage.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __KCHARTPARAMETERPOLARCONFIGPAGE_H__
00021 #define __KCHARTPARAMETERPOLARCONFIGPAGE_H__
00022
00023 #include <qwidget.h>
00024
00025 class QCheckBox;
00026 class QRadioButton;
00027 class QLineEdit;
00028 class QSpinBox;
00029 class QCheckBox;
00030
00031 namespace KChart
00032 {
00033
00034 class KChartParams;
00035
00036 class KChartParameterPolarConfigPage : public QWidget
00037 {
00038 Q_OBJECT
00039
00040 public:
00041 KChartParameterPolarConfigPage( KChartParams* params,QWidget* parent );
00042 void init();
00043 void apply();
00044 private:
00045 KChartParams* _params;
00046 QCheckBox *polarMarker;
00047 QCheckBox *showCircularLabel;
00048 QSpinBox *angle, *lineWidth;
00049 };
00050
00051 }
00052
00053 #endif
|