1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/toolbar.h
3 // Purpose: wxToolBar declaration
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_UNIV_TOOLBAR_H_
12 #define _WX_UNIV_TOOLBAR_H_
14 #include "wx/button.h" // for wxStdButtonInputHandler
16 class WXDLLIMPEXP_FWD_CORE wxToolBarTool
;
18 // ----------------------------------------------------------------------------
19 // the actions supported by this control
20 // ----------------------------------------------------------------------------
22 #define wxACTION_TOOLBAR_TOGGLE wxACTION_BUTTON_TOGGLE
23 #define wxACTION_TOOLBAR_PRESS wxACTION_BUTTON_PRESS
24 #define wxACTION_TOOLBAR_RELEASE wxACTION_BUTTON_RELEASE
25 #define wxACTION_TOOLBAR_CLICK wxACTION_BUTTON_CLICK
26 #define wxACTION_TOOLBAR_ENTER wxT("enter") // highlight the tool
27 #define wxACTION_TOOLBAR_LEAVE wxT("leave") // unhighlight the tool
29 // ----------------------------------------------------------------------------
31 // ----------------------------------------------------------------------------
33 class WXDLLIMPEXP_CORE wxToolBar
: public wxToolBarBase
36 // construction/destruction
37 wxToolBar() { Init(); }
38 wxToolBar(wxWindow
*parent
,
40 const wxPoint
& pos
= wxDefaultPosition
,
41 const wxSize
& size
= wxDefaultSize
,
43 const wxString
& name
= wxToolBarNameStr
)
47 Create(parent
, id
, pos
, size
, style
, name
);
50 bool Create( wxWindow
*parent
,
52 const wxPoint
& pos
= wxDefaultPosition
,
53 const wxSize
& size
= wxDefaultSize
,
55 const wxString
& name
= wxToolBarNameStr
);
59 virtual bool Realize();
61 virtual void SetWindowStyleFlag( long style
);
63 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
65 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
67 virtual void SetMargins(int x
, int y
);
68 void SetMargins(const wxSize
& size
)
69 { SetMargins((int) size
.x
, (int) size
.y
); }
71 virtual bool PerformAction(const wxControlAction
& action
,
73 const wxString
& strArg
= wxEmptyString
);
74 static wxInputHandler
*GetStdInputHandler(wxInputHandler
*handlerDef
);
75 virtual wxInputHandler
*DoGetStdInputHandler(wxInputHandler
*handlerDef
)
77 return GetStdInputHandler(handlerDef
);
81 // common part of all ctors
84 // implement base class pure virtuals
85 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
86 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
88 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
89 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
90 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
92 virtual wxToolBarToolBase
*CreateTool(int id
,
93 const wxString
& label
,
94 const wxBitmap
& bmpNormal
,
95 const wxBitmap
& bmpDisabled
,
98 const wxString
& shortHelp
,
99 const wxString
& longHelp
);
100 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
,
101 const wxString
& label
);
103 virtual wxSize
DoGetBestClientSize() const;
104 virtual void DoSetSize(int x
, int y
,
105 int width
, int height
,
106 int sizeFlags
= wxSIZE_AUTO
);
107 virtual void DoDraw(wxControlRenderer
*renderer
);
109 // get the bounding rect for the given tool
110 wxRect
GetToolRect(wxToolBarToolBase
*tool
) const;
112 // redraw the given tool
113 void RefreshTool(wxToolBarToolBase
*tool
);
115 // (re)calculate the tool positions, should only be called if it is
116 // necessary to do it, i.e. m_needsLayout == true
119 // get the rect limits depending on the orientation: top/bottom for a
120 // vertical toolbar, left/right for a horizontal one
121 void GetRectLimits(const wxRect
& rect
, wxCoord
*start
, wxCoord
*end
) const;
124 // have we calculated the positions of our tools?
127 // the width of a separator
128 wxCoord m_widthSeparator
;
130 // the total size of all toolbar elements
135 DECLARE_DYNAMIC_CLASS(wxToolBar
)
138 #endif // _WX_UNIV_TOOLBAR_H_