Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef EV_GNOMETOOLBAR_H
00021 #define EV_GNOMETOOLBAR_H
00022
00023 #include <gtk/gtk.h>
00024 #include "ev_UnixToolbar.h"
00025 #include "xap_UnixApp.h"
00026 #include "xap_Frame.h"
00027
00028 class EV_GnomeToolbar : public EV_UnixToolbar
00029 {
00030 public:
00031 EV_GnomeToolbar(XAP_UnixApp * pUnixApp,
00032 XAP_Frame *pFrame,
00033 const char * szToolbarLayoutName,
00034 const char * szToolbarLabelSetName);
00035
00036 void setStyle(GtkToolbarStyle style);
00037 bool getDetachable(void);
00038 void setDetachable(gboolean detachable);
00039
00040 protected:
00041
00042 GtkToolbarStyle getStyle(void);
00043 };
00044
00045 #endif