]>
Commit | Line | Data |
---|---|---|
6762286d 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 | ||
a0b48f26 | 51 | #ifndef __WXOSX_IPHONE__ |
6762286d SC |
52 | virtual bool Show(bool show = true); |
53 | virtual bool IsShown() const; | |
a0b48f26 | 54 | #endif |
6762286d SC |
55 | virtual bool Realize(); |
56 | ||
57 | virtual void SetToolBitmapSize(const wxSize& size); | |
58 | virtual wxSize GetToolSize() const; | |
59 | ||
60 | virtual void SetRows(int nRows); | |
61 | ||
62 | virtual void SetToolNormalBitmap(int id, const wxBitmap& bitmap); | |
63 | virtual void SetToolDisabledBitmap(int id, const wxBitmap& bitmap); | |
64 | ||
a0b48f26 | 65 | #ifndef __WXOSX_IPHONE__ |
6762286d SC |
66 | // Add all the buttons |
67 | ||
68 | virtual wxString MacGetToolTipString( wxPoint &where ) ; | |
69 | void OnPaint(wxPaintEvent& event) ; | |
70 | void OnMouse(wxMouseEvent& event) ; | |
71 | virtual void MacSuperChangedPosition() ; | |
a0b48f26 SC |
72 | #endif |
73 | ||
6762286d SC |
74 | #if wxOSX_USE_NATIVE_TOOLBAR |
75 | bool MacInstallNativeToolbar(bool usesNative); | |
76 | bool MacWantsNativeToolbar(); | |
77 | bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const; | |
5c6eb3a8 | 78 | #endif |
6762286d SC |
79 | protected: |
80 | // common part of all ctors | |
81 | void Init(); | |
82 | ||
a0b48f26 SC |
83 | #ifndef __WXOSX_IPHONE__ |
84 | virtual void DoGetSize(int *width, int *height) const; | |
6762286d | 85 | virtual wxSize DoGetBestSize() const; |
a0b48f26 | 86 | #endif |
6762286d SC |
87 | virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool); |
88 | virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool); | |
89 | ||
90 | virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable); | |
91 | virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle); | |
92 | virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle); | |
93 | ||
94 | virtual wxToolBarToolBase *CreateTool(int id, | |
95 | const wxString& label, | |
96 | const wxBitmap& bmpNormal, | |
97 | const wxBitmap& bmpDisabled, | |
98 | wxItemKind kind, | |
99 | wxObject *clientData, | |
100 | const wxString& shortHelp, | |
101 | const wxString& longHelp); | |
102 | virtual wxToolBarToolBase *CreateTool(wxControl *control, | |
103 | const wxString& label); | |
104 | ||
105 | DECLARE_EVENT_TABLE() | |
106 | #if wxOSX_USE_NATIVE_TOOLBAR | |
107 | bool m_macUsesNativeToolbar ; | |
108 | void* m_macToolbar ; | |
109 | #endif | |
a0b48f26 SC |
110 | #ifdef __WXOSX_IPHONE__ |
111 | WX_UIView m_macToolbar; | |
112 | #endif | |
6762286d SC |
113 | }; |
114 | ||
115 | #endif // wxUSE_TOOLBAR | |
116 | ||
117 | #endif | |
118 | // _WX_TOOLBAR_H_ |