]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/toolbar.h
make wxMacItem::m_colId of type DataBrowserPropertyID instead of short to avoid warni...
[wxWidgets.git] / include / wx / mac / carbon / toolbar.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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 WXDLLEXPORT_DATA(extern const wxChar) wxToolBarNameStr[];
21
22 class WXDLLEXPORT 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 // Add all the buttons
61
62 virtual wxString MacGetToolTipString( wxPoint &where ) ;
63 void OnPaint(wxPaintEvent& event) ;
64 void OnMouse(wxMouseEvent& event) ;
65 virtual void MacSuperChangedPosition() ;
66
67 #if wxMAC_USE_NATIVE_TOOLBAR
68 bool MacInstallNativeToolbar(bool usesNative);
69 bool MacWantsNativeToolbar();
70 bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const;
71 #endif
72 protected:
73 // common part of all ctors
74 void Init();
75
76 virtual void DoGetSize(int *width, int *height) const;
77 virtual wxSize DoGetBestSize() const;
78 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
79 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
80
81 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
82 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
83 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
84
85 virtual wxToolBarToolBase *CreateTool(int id,
86 const wxString& label,
87 const wxBitmap& bmpNormal,
88 const wxBitmap& bmpDisabled,
89 wxItemKind kind,
90 wxObject *clientData,
91 const wxString& shortHelp,
92 const wxString& longHelp);
93 virtual wxToolBarToolBase *CreateTool(wxControl *control);
94
95 DECLARE_EVENT_TABLE()
96 #if wxMAC_USE_NATIVE_TOOLBAR
97 bool m_macUsesNativeToolbar ;
98 void* m_macHIToolbarRef ;
99 #endif
100 };
101
102 #endif // wxUSE_TOOLBAR
103
104 #endif
105 // _WX_TOOLBAR_H_