00001 /* 00002 * GPLv2 only 00003 * zecke@handhelds.org 00004 */ 00005 00006 #ifndef PHUNK_VIEW_MODE_BUTTON_H 00007 #define PHUNK_VIEW_MODE_BUTTON_H 00008 00009 #include <opie2/oresource.h> 00010 00011 #include <qtoolbutton.h> 00012 00013 class ViewModeButton : public QToolButton { 00014 Q_OBJECT 00015 public: 00016 ViewModeButton( QToolBar*,int def=1 ); 00017 ~ViewModeButton(); 00018 00019 signals: 00020 void changeMode( int ); 00021 private slots: 00022 void slotChange( int i ); 00023 }; 00024 00025 #endif
1.4.2