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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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
43 wxToolBar(wxWindow
*parent
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
48 const wxString
& name
= wxToolBarNameStr
);
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 wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
63 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
65 virtual void SetMargins(int x
, int y
);
66 void SetMargins(const wxSize
& size
)
67 { SetMargins((int) size
.x
, (int) size
.y
); }
70 // common part of all ctors
73 // implement base class pure virtuals
74 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
75 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
77 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
78 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
79 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
81 virtual wxToolBarToolBase
*CreateTool(int id
,
82 const wxString
& label
,
83 const wxBitmap
& bmpNormal
,
84 const wxBitmap
& bmpDisabled
,
87 const wxString
& shortHelp
,
88 const wxString
& longHelp
);
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 DoSetSize(int x
, int y
,
97 int width
, int height
,
98 int sizeFlags
= wxSIZE_AUTO
);
99 virtual void DoDraw(wxControlRenderer
*renderer
);
101 // get the bounding rect for the given tool
102 wxRect
GetToolRect(wxToolBarToolBase
*tool
) const;
104 // redraw the given tool
105 void RefreshTool(wxToolBarToolBase
*tool
);
107 // (re)calculate the tool positions, should only be called if it is
108 // necessary to do it, i.e. m_needsLayout == TRUE
111 // get the rect limits depending on the orientation: top/bottom for a
112 // vertical toolbar, left/right for a horizontal one
113 void GetRectLimits(const wxRect
& rect
, wxCoord
*start
, wxCoord
*end
) const;
116 // have we calculated the positions of our tools?
119 // the width of a separator
120 wxCoord m_widthSeparator
;
122 // the total size of all toolbar elements
127 DECLARE_DYNAMIC_CLASS(wxToolBar
)
130 // ----------------------------------------------------------------------------
131 // wxStdToolbarInputHandler: translates SPACE and ENTER keys and the left mouse
132 // click into button press/release actions
133 // ----------------------------------------------------------------------------
135 class WXDLLEXPORT wxStdToolbarInputHandler
: public wxStdInputHandler
138 wxStdToolbarInputHandler(wxInputHandler
*inphand
);
140 virtual bool HandleKey(wxInputConsumer
*consumer
,
141 const wxKeyEvent
& event
,
143 virtual bool HandleMouse(wxInputConsumer
*consumer
,
144 const wxMouseEvent
& event
);
145 virtual bool HandleMouseMove(wxInputConsumer
*consumer
, const wxMouseEvent
& event
);
146 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
);
147 virtual bool HandleActivation(wxInputConsumer
*consumer
, bool activated
);
150 wxWindow
*m_winCapture
;
151 wxToolBarToolBase
*m_toolCapture
;
152 wxToolBarToolBase
*m_toolLast
;
155 #endif // _WX_UNIV_TOOLBAR_H_