1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/toolbar.h
3 // Purpose: wxToolBar declaration
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_TOOLBAR_H_
13 #define _WX_UNIV_TOOLBAR_H_
16 #pragma interface "univtoolbar.h"
19 #include "wx/button.h" // for wxStdButtonInputHandler
21 class WXDLLEXPORT wxToolBarTool
;
23 // ----------------------------------------------------------------------------
24 // the actions supported by this control
25 // ----------------------------------------------------------------------------
27 #define wxACTION_TOOLBAR_TOGGLE wxACTION_BUTTON_TOGGLE
28 #define wxACTION_TOOLBAR_PRESS wxACTION_BUTTON_PRESS
29 #define wxACTION_TOOLBAR_RELEASE wxACTION_BUTTON_RELEASE
30 #define wxACTION_TOOLBAR_CLICK wxACTION_BUTTON_CLICK
31 #define wxACTION_TOOLBAR_ENTER _T("enter") // highlight the tool
32 #define wxACTION_TOOLBAR_LEAVE _T("leave") // unhighlight the tool
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 class WXDLLEXPORT wxToolBar
: public wxToolBarBase
41 // construction/destruction
42 wxToolBar() { Init(); }
43 wxToolBar(wxWindow
*parent
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
48 const wxString
& name
= wxToolBarNameStr
)
52 Create(parent
, id
, pos
, size
, style
, name
);
55 bool Create( wxWindow
*parent
,
57 const wxPoint
& pos
= wxDefaultPosition
,
58 const wxSize
& size
= wxDefaultSize
,
60 const wxString
& name
= wxToolBarNameStr
);
64 virtual bool Realize();
66 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
68 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
71 // common part of all ctors
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 wxBitmap
& bitmap1
,
84 const wxBitmap
& bitmap2
,
87 const wxString
& shortHelpString
,
88 const wxString
& longHelpString
);
89 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
);
91 // implement wxUniversal methods
92 virtual bool PerformAction(const wxControlAction
& action
,
94 const wxString
& strArg
= wxEmptyString
);
95 virtual wxSize
DoGetBestClientSize() const;
96 virtual void DoDraw(wxControlRenderer
*renderer
);
98 // get the bounding rect for the given tool
99 wxRect
GetToolRect(wxToolBarToolBase
*tool
) const;
101 // redraw the given tool
102 void RefreshTool(wxToolBarToolBase
*tool
);
104 // (re)calculate the tool positions, should only be called if it is
105 // necessary to do it, i.e. m_needsLayout == TRUE
108 // get the rect limits depending on the orientation: top/bottom for a
109 // vertical toolbar, left/right for a horizontal one
110 void GetRectLimits(const wxRect
& rect
, wxCoord
*start
, wxCoord
*end
) const;
112 // wxButton actions: all these use m_toolPressed and can only be called if
118 // this one used m_toolCurrent
122 // have we calculated the positions of our tools?
125 // the width of a separator
126 wxCoord m_widthSeparator
;
128 // the total size of all toolbar elements
132 // the tool over which the mouse currently is or NULL
133 wxToolBarToolBase
*m_toolCurrent
;
135 // the tool which currently has the mouse capture (i.e. the one user is
137 wxToolBarTool
*m_toolPressed
;
139 DECLARE_DYNAMIC_CLASS(wxToolBar
)
142 // ----------------------------------------------------------------------------
143 // wxStdToolbarInputHandler: translates SPACE and ENTER keys and the left mouse
144 // click into button press/release actions
145 // ----------------------------------------------------------------------------
147 class WXDLLEXPORT wxStdToolbarInputHandler
: public wxStdButtonInputHandler
150 wxStdToolbarInputHandler(wxInputHandler
*inphand
);
152 virtual bool HandleKey(wxInputConsumer
*consumer
,
153 const wxKeyEvent
& event
,
155 virtual bool HandleMouse(wxInputConsumer
*consumer
,
156 const wxMouseEvent
& event
);
157 virtual bool HandleMouseMove(wxInputConsumer
*consumer
, const wxMouseEvent
& event
);
158 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
);
159 virtual bool HandleActivation(wxInputConsumer
*consumer
, bool activated
);
162 #endif // _WX_UNIV_TOOLBAR_H_