1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/toolbar.h
3 // Purpose: wxToolBar declaration
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_TOOLBAR_H_
13 #define _WX_UNIV_TOOLBAR_H_
15 #include "wx/button.h" // for wxStdButtonInputHandler
17 class WXDLLEXPORT wxToolBarTool
;
19 // ----------------------------------------------------------------------------
20 // the actions supported by this control
21 // ----------------------------------------------------------------------------
23 #define wxACTION_TOOLBAR_TOGGLE wxACTION_BUTTON_TOGGLE
24 #define wxACTION_TOOLBAR_PRESS wxACTION_BUTTON_PRESS
25 #define wxACTION_TOOLBAR_RELEASE wxACTION_BUTTON_RELEASE
26 #define wxACTION_TOOLBAR_CLICK wxACTION_BUTTON_CLICK
27 #define wxACTION_TOOLBAR_ENTER _T("enter") // highlight the tool
28 #define wxACTION_TOOLBAR_LEAVE _T("leave") // unhighlight the tool
30 // ----------------------------------------------------------------------------
32 // ----------------------------------------------------------------------------
34 class WXDLLEXPORT wxToolBar
: public wxToolBarBase
37 // construction/destruction
38 wxToolBar() { Init(); }
39 wxToolBar(wxWindow
*parent
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
,
44 const wxString
& name
= wxToolBarNameStr
)
48 Create(parent
, id
, pos
, size
, style
, name
);
51 bool Create( wxWindow
*parent
,
53 const wxPoint
& pos
= wxDefaultPosition
,
54 const wxSize
& size
= wxDefaultSize
,
56 const wxString
& name
= wxToolBarNameStr
);
60 virtual bool Realize();
62 virtual void SetWindowStyleFlag( long style
);
64 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
66 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
68 virtual void SetMargins(int x
, int y
);
69 void SetMargins(const wxSize
& size
)
70 { SetMargins((int) size
.x
, (int) size
.y
); }
72 virtual bool PerformAction(const wxControlAction
& action
,
74 const wxString
& strArg
= wxEmptyString
);
76 // common part of all ctors
79 // implement base class pure virtuals
80 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
81 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
83 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
84 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
85 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
87 virtual wxToolBarToolBase
*CreateTool(int id
,
88 const wxString
& label
,
89 const wxBitmap
& bmpNormal
,
90 const wxBitmap
& bmpDisabled
,
93 const wxString
& shortHelp
,
94 const wxString
& longHelp
);
95 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
);
97 virtual wxSize
DoGetBestClientSize() const;
98 virtual void DoSetSize(int x
, int y
,
99 int width
, int height
,
100 int sizeFlags
= wxSIZE_AUTO
);
101 virtual void DoDraw(wxControlRenderer
*renderer
);
103 // get the bounding rect for the given tool
104 wxRect
GetToolRect(wxToolBarToolBase
*tool
) const;
106 // redraw the given tool
107 void RefreshTool(wxToolBarToolBase
*tool
);
109 // (re)calculate the tool positions, should only be called if it is
110 // necessary to do it, i.e. m_needsLayout == true
113 // get the rect limits depending on the orientation: top/bottom for a
114 // vertical toolbar, left/right for a horizontal one
115 void GetRectLimits(const wxRect
& rect
, wxCoord
*start
, wxCoord
*end
) const;
118 // have we calculated the positions of our tools?
121 // the width of a separator
122 wxCoord m_widthSeparator
;
124 // the total size of all toolbar elements
129 DECLARE_DYNAMIC_CLASS(wxToolBar
)
132 // ----------------------------------------------------------------------------
133 // wxStdToolbarInputHandler: translates SPACE and ENTER keys and the left mouse
134 // click into button press/release actions
135 // ----------------------------------------------------------------------------
137 class WXDLLEXPORT wxStdToolbarInputHandler
: public wxStdInputHandler
140 wxStdToolbarInputHandler(wxInputHandler
*inphand
);
142 virtual bool HandleKey(wxInputConsumer
*consumer
,
143 const wxKeyEvent
& event
,
145 virtual bool HandleMouse(wxInputConsumer
*consumer
,
146 const wxMouseEvent
& event
);
147 virtual bool HandleMouseMove(wxInputConsumer
*consumer
, const wxMouseEvent
& event
);
148 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
);
149 virtual bool HandleActivation(wxInputConsumer
*consumer
, bool activated
);
152 wxWindow
*m_winCapture
;
153 wxToolBarToolBase
*m_toolCapture
;
154 wxToolBarToolBase
*m_toolLast
;
157 #endif // _WX_UNIV_TOOLBAR_H_