1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/toolbar.h
3 // Purpose: GTK toolbar
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTK_TOOLBAR_H_
11 #define _WX_GTK_TOOLBAR_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_CORE wxToolBar
: public wxToolBarBase
22 // construction/destruction
23 wxToolBar() { Init(); }
24 wxToolBar( wxWindow
*parent
,
26 const wxPoint
& pos
= wxDefaultPosition
,
27 const wxSize
& size
= wxDefaultSize
,
29 const wxString
& name
= wxToolBarNameStr
)
33 Create(parent
, id
, pos
, size
, style
, name
);
36 bool Create( wxWindow
*parent
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxString
& name
= wxToolBarNameStr
);
45 // override base class virtuals
46 virtual void SetMargins(int x
, int y
);
47 virtual void SetToolSeparation(int separation
);
49 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
51 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
53 virtual void SetWindowStyleFlag( long style
);
55 static wxVisualAttributes
56 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
58 // implementation from now on
59 // --------------------------
61 GtkToolbar
*m_toolbar
;
65 void OnInternalIdle();
68 // common part of all ctors
71 // set the GTK toolbar style and orientation
74 // implement base class pure virtuals
75 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
76 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
78 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
79 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
80 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
82 virtual wxToolBarToolBase
*CreateTool(int id
,
83 const wxString
& label
,
84 const wxBitmap
& bitmap1
,
85 const wxBitmap
& bitmap2
,
88 const wxString
& shortHelpString
,
89 const wxString
& longHelpString
);
90 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
,
91 const wxString
& label
);
94 DECLARE_DYNAMIC_CLASS(wxToolBar
)
97 #endif // wxUSE_TOOLBAR
100 // _WX_GTK_TOOLBAR_H_