]>
Commit | Line | Data |
---|---|---|
5c6eb3a8 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/carbon/toolbar.h | |
3 | // Purpose: wxToolBar class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_TOOLBAR_H_ | |
13 | #define _WX_TOOLBAR_H_ | |
14 | ||
15 | #if wxUSE_TOOLBAR | |
16 | ||
17 | #include "wx/tbarbase.h" | |
18 | #include "wx/dynarray.h" | |
19 | ||
20 | WXDLLIMPEXP_DATA_CORE(extern const char) wxToolBarNameStr[]; | |
21 | ||
22 | class WXDLLIMPEXP_CORE wxToolBar: public wxToolBarBase | |
23 | { | |
24 | DECLARE_DYNAMIC_CLASS(wxToolBar) | |
25 | public: | |
26 | /* | |
27 | * Public interface | |
28 | */ | |
29 | ||
30 | wxToolBar() { Init(); } | |
31 | ||
32 | inline wxToolBar(wxWindow *parent, wxWindowID id, | |
33 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
34 | long style = wxNO_BORDER|wxTB_HORIZONTAL, | |
35 | const wxString& name = wxToolBarNameStr) | |
36 | { | |
37 | Init(); | |
38 | Create(parent, id, pos, size, style, name); | |
39 | } | |
40 | virtual ~wxToolBar(); | |
41 | ||
42 | bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
43 | long style = wxNO_BORDER|wxTB_HORIZONTAL, | |
44 | const wxString& name = wxToolBarNameStr); | |
45 | ||
46 | virtual void SetWindowStyleFlag(long style); | |
47 | ||
48 | // override/implement base class virtuals | |
49 | virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const; | |
50 | ||
51 | virtual bool Show(bool show = true); | |
52 | virtual bool IsShown() const; | |
53 | virtual bool Realize(); | |
54 | ||
55 | virtual void SetToolBitmapSize(const wxSize& size); | |
56 | virtual wxSize GetToolSize() const; | |
57 | ||
58 | virtual void SetRows(int nRows); | |
59 | ||
60 | virtual void SetToolNormalBitmap(int id, const wxBitmap& bitmap); | |
61 | virtual void SetToolDisabledBitmap(int id, const wxBitmap& bitmap); | |
62 | ||
63 | // Add all the buttons | |
64 | ||
65 | virtual wxString MacGetToolTipString( wxPoint &where ) ; | |
66 | void OnPaint(wxPaintEvent& event) ; | |
67 | void OnMouse(wxMouseEvent& event) ; | |
68 | virtual void MacSuperChangedPosition() ; | |
69 | ||
b46f221f | 70 | #if wxOSX_USE_NATIVE_TOOLBAR |
5c6eb3a8 SC |
71 | bool MacInstallNativeToolbar(bool usesNative); |
72 | bool MacWantsNativeToolbar(); | |
73 | bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const; | |
74 | #endif | |
75 | protected: | |
76 | // common part of all ctors | |
77 | void Init(); | |
78 | ||
79 | virtual void DoGetSize(int *width, int *height) const; | |
80 | virtual wxSize DoGetBestSize() const; | |
81 | virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool); | |
82 | virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool); | |
83 | ||
84 | virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable); | |
85 | virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle); | |
86 | virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle); | |
87 | ||
88 | virtual wxToolBarToolBase *CreateTool(int id, | |
89 | const wxString& label, | |
90 | const wxBitmap& bmpNormal, | |
91 | const wxBitmap& bmpDisabled, | |
92 | wxItemKind kind, | |
93 | wxObject *clientData, | |
94 | const wxString& shortHelp, | |
95 | const wxString& longHelp); | |
96 | virtual wxToolBarToolBase *CreateTool(wxControl *control, | |
97 | const wxString& label); | |
98 | ||
99 | DECLARE_EVENT_TABLE() | |
b46f221f | 100 | #if wxOSX_USE_NATIVE_TOOLBAR |
5c6eb3a8 | 101 | bool m_macUsesNativeToolbar ; |
524c47aa | 102 | void* m_macToolbar ; |
5c6eb3a8 SC |
103 | #endif |
104 | }; | |
105 | ||
106 | #endif // wxUSE_TOOLBAR | |
107 | ||
108 | #endif | |
109 | // _WX_TOOLBAR_H_ |