]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/toolbar.h
Fix tab navigation bug with static boxes without enabled children.
[wxWidgets.git] / include / wx / gtk1 / toolbar.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/toolbar.h
3 // Purpose: GTK toolbar
4 // Author: Robert Roebling
5 // RCS-ID: $Id$
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef _WX_GTK_TOOLBAR_H_
11 #define _WX_GTK_TOOLBAR_H_
12
13 #if wxUSE_TOOLBAR
14
15 // ----------------------------------------------------------------------------
16 // wxToolBar
17 // ----------------------------------------------------------------------------
18
19 class WXDLLIMPEXP_CORE wxToolBar : public wxToolBarBase
20 {
21 public:
22 // construction/destruction
23 wxToolBar() { Init(); }
24 wxToolBar( wxWindow *parent,
25 wxWindowID id,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
28 long style = 0,
29 const wxString& name = wxToolBarNameStr )
30 {
31 Init();
32
33 Create(parent, id, pos, size, style, name);
34 }
35
36 bool Create( wxWindow *parent,
37 wxWindowID id,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxString& name = wxToolBarNameStr );
42
43 virtual ~wxToolBar();
44
45 // override base class virtuals
46 virtual void SetMargins(int x, int y);
47 virtual void SetToolSeparation(int separation);
48
49 virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
50
51 virtual void SetToolShortHelp(int id, const wxString& helpString);
52
53 virtual void SetWindowStyleFlag( long style );
54
55 static wxVisualAttributes
56 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
57
58 // implementation from now on
59 // --------------------------
60
61 GtkToolbar *m_toolbar;
62
63 bool m_blockEvent;
64
65 void OnInternalIdle();
66
67 protected:
68 // common part of all ctors
69 void Init();
70
71 // choose the default border for this window
72 virtual wxBorder GetDefaultBorder() const { return wxBORDER_DEFAULT; }
73
74 // set the GTK toolbar style and orientation
75 void GtkSetStyle();
76
77 // implement base class pure virtuals
78 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
79 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
80
81 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
82 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
83 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
84
85 virtual wxToolBarToolBase *CreateTool(int id,
86 const wxString& label,
87 const wxBitmap& bitmap1,
88 const wxBitmap& bitmap2,
89 wxItemKind kind,
90 wxObject *clientData,
91 const wxString& shortHelpString,
92 const wxString& longHelpString);
93 virtual wxToolBarToolBase *CreateTool(wxControl *control,
94 const wxString& label);
95
96 private:
97 DECLARE_DYNAMIC_CLASS(wxToolBar)
98 };
99
100 #endif // wxUSE_TOOLBAR
101
102 #endif
103 // _WX_GTK_TOOLBAR_H_