karbon
vselecttoolbar.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef VSELECTTOOLBAR_H
00023 #define VSELECTTOOLBAR_H
00024
00025 #include <ktoolbar.h>
00026
00027 class KoUnitDoubleSpinBox;
00028 class KarbonView;
00029
00030 class VSelectToolBar : public KToolBar
00031 {
00032 Q_OBJECT
00033 public:
00034 VSelectToolBar( KarbonView *view, const char* name = 0L );
00035 ~VSelectToolBar();
00036
00037 public slots:
00038 void slotSelectionChanged();
00039 void slotXChanged( double );
00040 void slotYChanged( double );
00041 void slotWidthChanged( double );
00042 void slotHeightChanged( double );
00043
00044 private:
00045 KoUnitDoubleSpinBox *m_x;
00046 KoUnitDoubleSpinBox *m_y;
00047 KoUnitDoubleSpinBox *m_width;
00048 KoUnitDoubleSpinBox *m_height;
00049 KarbonView *m_view;
00050 };
00051
00052 #endif
00053
|