kchart
kchartPieConfigPage.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __KCHARTPIECONFIGPAGE_H__
00023 #define __KCHARTPIECONFIGPAGE_H__
00024
00025
00026 #include <qwidget.h>
00027 #include <qlistview.h>
00028
00029 #include <koChart.h>
00030
00031
00032 class QSpinBox;
00033 class QLineEdit;
00034 class QCheckBox;
00035 class QPushButton;
00036 class QFont;
00037 class QRadioButton;
00038
00039
00040 namespace KChart
00041 {
00042
00043 class KChartParams;
00044
00045 class KChartPieConfigPage : public QWidget
00046 {
00047 Q_OBJECT
00048
00049 public:
00050 KChartPieConfigPage( KChartParams* params, QWidget* parent,
00051 KDChartTableData* data);
00052 void init();
00053 void apply();
00054 void initList();
00055
00056 public slots:
00057 void changeValue(int);
00058 void slotselected(QListViewItem *);
00059
00060 private:
00061 int col;
00062 KChartParams* _params;
00063 QSpinBox *dist;
00064 QSpinBox *column;
00065 QListView *list;
00066 QSpinBox *explose;
00067 QMemArray<int> value;
00068 int pos;
00069 };
00070
00071 }
00072
00073 #endif
|