kspread_dlg_resize2.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_resize2__
00027 #define __kspread_dlg_resize2__
00028
00029 #include <kdialogbase.h>
00030
00031 class KSpreadView;
00032 class KDoubleNumInput;
00033
00034 class KSpreadResizeRow: public KDialogBase
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 KSpreadResizeRow( KSpreadView* parent, const char* name = 0 );
00040 double rowHeight;
00041
00042 protected slots:
00043 virtual void slotOk();
00044 virtual void slotDefault();
00045
00046 protected:
00047 KSpreadView* m_pView;
00048 KDoubleNumInput *m_pHeight;
00049 };
00050
00051 class KSpreadResizeColumn: public KDialogBase
00052 {
00053 Q_OBJECT
00054
00055 public:
00056 KSpreadResizeColumn( KSpreadView* parent, const char* name = 0 );
00057 double columnWidth;
00058
00059 protected slots:
00060 virtual void slotOk();
00061 virtual void slotDefault();
00062
00063 protected:
00064 KSpreadView* m_pView;
00065 KDoubleNumInput *m_pWidth;
00066 };
00067
00068 #endif
This file is part of the documentation for kspread Library Version 1.4.2.