kspread
kspread_dlg_resize2.h00001
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_resize2__
00027 #define __kspread_dlg_resize2__
00028
00029 #include <kdialogbase.h>
00030
00031 class KDoubleNumInput;
00032 class KoUnitDoubleSpinBox;
00033
00034 namespace KSpread
00035 {
00036 class View;
00037
00038 class ResizeRow: public KDialogBase
00039 {
00040 Q_OBJECT
00041
00042 public:
00043 ResizeRow( View* parent, const char* name = 0 );
00044 double rowHeight;
00045
00046 protected slots:
00047 virtual void slotOk();
00048 virtual void slotDefault();
00049
00050 protected:
00051 View* m_pView;
00052 KoUnitDoubleSpinBox *m_pHeight;
00053 };
00054
00055 class ResizeColumn: public KDialogBase
00056 {
00057 Q_OBJECT
00058
00059 public:
00060 ResizeColumn( View* parent, const char* name = 0 );
00061 double columnWidth;
00062
00063 protected slots:
00064 virtual void slotOk();
00065 virtual void slotDefault();
00066
00067 protected:
00068 View* m_pView;
00069 KoUnitDoubleSpinBox *m_pWidth;
00070 };
00071
00072 }
00073
00074 #endif
|