kspread_dlg_series.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef __kspread_dlg_series__
00027 #define __kspread_dlg_series__
00028
00029 #include <kdialogbase.h>
00030
00031 class KSpreadView;
00032 class KSpreadSheet;
00033 class KSpreadCell;
00034 class QRadioButton;
00035 class QCheckBox;
00036 class KDoubleNumInput;
00037
00038 class KSpreadSeriesDlg : public KDialogBase
00039 {
00040 Q_OBJECT
00041 public:
00042
00043 KSpreadSeriesDlg(KSpreadView* parent, const char* name,const QPoint &_marker);
00044
00045 KSpreadSheet* sheet;
00046
00047 public slots:
00048 void slotOk();
00049 protected:
00050 KSpreadView* m_pView;
00051 KDoubleNumInput *start;
00052 KDoubleNumInput *end;
00053 KDoubleNumInput *step;
00054
00055 QRadioButton* column;
00056 QRadioButton* row;
00057 QRadioButton* linear;
00058 QRadioButton* geometric;
00059 QPoint marker;
00060 };
00061
00062 #endif
This file is part of the documentation for kspread Library Version 1.4.2.