]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/toolbar.h
minor cleanup
[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;
8cf73271
SC
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
8cf73271
SC
62 virtual wxString MacGetToolTipString( wxPoint &where ) ;
63 void OnPaint(wxPaintEvent& event) ;
64 void OnMouse(wxMouseEvent& event) ;
65 virtual void MacSuperChangedPosition() ;
e56d2520
SC
66
67#if wxMAC_USE_NATIVE_TOOLBAR
68 bool MacInstallNativeToolbar(bool usesNative);
69 bool MacWantsNativeToolbar();
70 bool MacTopLevelHasNativeToolbar(bool *ownToolbarInstalled) const;
71#endif
8cf73271
SC
72protected:
73 // common part of all ctors
74 void Init();
75
6f02a879
VZ
76 virtual void DoGetSize(int *width, int *height) const;
77 virtual wxSize DoGetBestSize() const;
8cf73271
SC
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()
e56d2520
SC
96#if wxMAC_USE_NATIVE_TOOLBAR
97 bool m_macUsesNativeToolbar ;
98 void* m_macHIToolbarRef ;
99#endif
8cf73271
SC
100};
101
102#endif // wxUSE_TOOLBAR
103
104#endif
105 // _WX_TOOLBAR_H_