]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/toolbar.h
removed duplicate entries for UTF-16/32 (which are aliases for either LE or BE varian...
[wxWidgets.git] / include / wx / mac / carbon / toolbar.h
CommitLineData
8cf73271
SC
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
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TOOLBAR_H_
13#define _WX_TOOLBAR_H_
14
8cf73271
SC
15#if wxUSE_TOOLBAR
16
17#include "wx/tbarbase.h"
18#include "wx/dynarray.h"
19
63ec432b 20WXDLLEXPORT_DATA(extern const wxChar) wxToolBarNameStr[];
8cf73271
SC
21
22class WXDLLEXPORT wxToolBar: public wxToolBarBase
23{
24 DECLARE_DYNAMIC_CLASS(wxToolBar)
25 public:
26 /*
27 * Public interface
28 */
29
30 wxToolBar() { Init(); }
31
8cf73271
SC
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 ~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
e56d2520
SC
46 virtual void SetWindowStyleFlag(long style);
47
8cf73271
SC
48 // override/implement base class virtuals
49 virtual wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y) const;
50
e56d2520
SC
51 virtual bool Show(bool show = true);
52 virtual bool IsShown() const;
53 virtual void DoGetSize(int *width, int *height) const;
363f7643 54 virtual wxSize DoGetBestSize() const ;
8cf73271
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 // Add all the buttons
63
8cf73271
SC
64 virtual wxString MacGetToolTipString( wxPoint &where ) ;
65 void OnPaint(wxPaintEvent& event) ;
66 void OnMouse(wxMouseEvent& event) ;
67 virtual void MacSuperChangedPosition() ;
e56d2520
SC
68
69#if wxMAC_USE_NATIVE_TOOLBAR
70 bool MacInstallNativeToolbar(bool usesNative);
71 bool MacWantsNativeToolbar();
72 bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const;
73#endif
8cf73271
SC
74protected:
75 // common part of all ctors
76 void Init();
77
78 // implement base class pure virtuals
79 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
80 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
81
82 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
83 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
84 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
85
86 virtual wxToolBarToolBase *CreateTool(int id,
87 const wxString& label,
88 const wxBitmap& bmpNormal,
89 const wxBitmap& bmpDisabled,
90 wxItemKind kind,
91 wxObject *clientData,
92 const wxString& shortHelp,
93 const wxString& longHelp);
94 virtual wxToolBarToolBase *CreateTool(wxControl *control);
95
96 DECLARE_EVENT_TABLE()
e56d2520
SC
97#if wxMAC_USE_NATIVE_TOOLBAR
98 bool m_macUsesNativeToolbar ;
99 void* m_macHIToolbarRef ;
100#endif
8cf73271
SC
101};
102
103#endif // wxUSE_TOOLBAR
104
105#endif
106 // _WX_TOOLBAR_H_