1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/buttonbar.h
3 // Purpose: wxButtonToolBar declaration
4 // Author: Julian Smart, after Robert Roebling, Vadim Zeitlin, SciTech
8 // Copyright: (c) Julian Smart, Robert Roebling, Vadim Zeitlin,
9 // SciTech Software, Inc.
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_BUTTONBAR_H_
14 #define _WX_BUTTONBAR_H_
16 #include "wx/bmpbuttn.h"
17 #include "wx/toolbar.h"
19 class WXDLLIMPEXP_FWD_CORE wxButtonToolBarTool
;
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 class WXDLLIMPEXP_CORE wxButtonToolBar
: public wxToolBarBase
28 // construction/destruction
29 wxButtonToolBar() { Init(); }
30 wxButtonToolBar(wxWindow
*parent
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
35 const wxString
& name
= wxToolBarNameStr
)
39 Create(parent
, id
, pos
, size
, style
, name
);
42 bool Create( wxWindow
*parent
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
47 const wxString
& name
= wxToolBarNameStr
);
49 virtual ~wxButtonToolBar();
51 virtual bool Realize();
53 virtual void SetToolShortHelp(int id
, const wxString
& helpString
);
54 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
57 // common part of all ctors
60 // implement base class pure virtuals
61 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
62 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
64 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
65 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
66 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
68 virtual wxToolBarToolBase
*CreateTool(int id
,
69 const wxString
& label
,
70 const wxBitmap
& bmpNormal
,
71 const wxBitmap
& bmpDisabled
,
74 const wxString
& shortHelp
,
75 const wxString
& longHelp
);
76 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
,
77 const wxString
& label
);
79 virtual wxSize
DoGetBestClientSize() const;
84 // get the bounding rect for the given tool
85 wxRect
GetToolRect(wxToolBarToolBase
*tool
) const;
87 // get the rect limits depending on the orientation: top/bottom for a
88 // vertical toolbar, left/right for a horizontal one
89 void GetRectLimits(const wxRect
& rect
, wxCoord
*start
, wxCoord
*end
) const;
91 // receives button commands
92 void OnCommand(wxCommandEvent
& event
);
95 void OnPaint(wxPaintEvent
& event
);
97 // detects mouse clicks outside buttons
98 void OnLeftUp(wxMouseEvent
& event
);
101 // have we calculated the positions of our tools?
104 // the width of a separator
105 wxCoord m_widthSeparator
;
107 // the total size of all toolbar elements
111 // the height of a label
114 // the space above the label
118 DECLARE_DYNAMIC_CLASS(wxButtonToolBar
)
119 DECLARE_EVENT_TABLE()