]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/toolbar.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolBar class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TOOLBAR_H_
13 #define _WX_TOOLBAR_H_
17 #include "wx/tbarbase.h"
18 #include "wx/dynarray.h"
20 WXDLLEXPORT_DATA(extern const wxChar
*) wxToolBarNameStr
;
22 class WXDLLEXPORT wxToolBar
: public wxToolBarBase
24 DECLARE_DYNAMIC_CLASS(wxToolBar
)
30 wxToolBar() { Init(); }
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
)
38 Create(parent
, id
, pos
, size
, style
, name
);
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
);
46 virtual void SetWindowStyleFlag(long style
);
48 // override/implement base class virtuals
49 virtual wxToolBarToolBase
*FindToolForPosition(wxCoord x
, wxCoord y
) const;
51 virtual bool Show(bool show
= true);
52 virtual bool IsShown() const;
53 virtual void DoGetSize(int *width
, int *height
) const;
54 virtual wxSize
DoGetBestSize() const ;
55 virtual bool Realize();
57 virtual void SetToolBitmapSize(const wxSize
& size
);
58 virtual wxSize
GetToolSize() const;
60 virtual void SetRows(int nRows
);
62 // Add all the buttons
64 virtual wxString
MacGetToolTipString( wxPoint
&where
) ;
65 void OnPaint(wxPaintEvent
& event
) ;
66 void OnMouse(wxMouseEvent
& event
) ;
67 virtual void MacSuperChangedPosition() ;
69 #if wxMAC_USE_NATIVE_TOOLBAR
70 bool MacInstallNativeToolbar(bool usesNative
);
71 bool MacWantsNativeToolbar();
72 bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled
) const;
75 // common part of all ctors
78 // implement base class pure virtuals
79 virtual bool DoInsertTool(size_t pos
, wxToolBarToolBase
*tool
);
80 virtual bool DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
);
82 virtual void DoEnableTool(wxToolBarToolBase
*tool
, bool enable
);
83 virtual void DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
);
84 virtual void DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
);
86 virtual wxToolBarToolBase
*CreateTool(int id
,
87 const wxString
& label
,
88 const wxBitmap
& bmpNormal
,
89 const wxBitmap
& bmpDisabled
,
92 const wxString
& shortHelp
,
93 const wxString
& longHelp
);
94 virtual wxToolBarToolBase
*CreateTool(wxControl
*control
);
97 #if wxMAC_USE_NATIVE_TOOLBAR
98 bool m_macUsesNativeToolbar
;
99 void* m_macHIToolbarRef
;
103 #endif // wxUSE_TOOLBAR