]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/tglbtn.h
Cast for argument to delete[] - VC6 doesn't want to delete a const pointer
[wxWidgets.git] / include / wx / mac / carbon / tglbtn.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/mac/tglbtn.h
3// Purpose: Declaration of the wxToggleButton class, which implements a
4// toggle button under wxMac.
5// Author: Stefan Csomor
6// Modified by:
7// Created: 08.02.01
8// RCS-ID: $Id$
9// Copyright: (c) 2004 Stefan Csomor
65571936 10// License: wxWindows licence
8cf73271
SC
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_TOGGLEBUTTON_H_
14#define _WX_TOGGLEBUTTON_H_
15
53a2db12 16WXDLLIMPEXP_DATA_CORE(extern const char) wxCheckBoxNameStr[];
8cf73271 17
f8b13b58 18
53a2db12 19class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButtonBase
f8b13b58
RR
20{
21public:
77325c70
RR
22 wxBitmapToggleButton() {}
23 wxBitmapToggleButton(wxWindow *parent,
f8b13b58
RR
24 wxWindowID id,
25 const wxBitmap& label,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
28 long style = 0,
29 const wxValidator& validator = wxDefaultValidator,
30 const wxString& name = wxCheckBoxNameStr)
31 {
32 Create(parent, id, label, pos, size, style, validator, name);
33 }
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 const wxBitmap& label,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString& name = wxCheckBoxNameStr);
43
44 virtual void SetValue(bool value);
45 virtual bool GetValue() const ;
46
47 virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
48
49 virtual void Command(wxCommandEvent& event);
50
51private:
52 wxBitmap m_bitmap;
53
54protected:
55 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
56 virtual wxSize DoGetBestSize() const;
57
58private:
77325c70 59 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton)
f8b13b58
RR
60};
61
62
53a2db12 63class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase
8cf73271
SC
64{
65public:
66 wxToggleButton() {}
67 wxToggleButton(wxWindow *parent,
68 wxWindowID id,
69 const wxString& label,
70 const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize,
72 long style = 0,
73 const wxValidator& validator = wxDefaultValidator,
74 const wxString& name = wxCheckBoxNameStr)
75 {
76 Create(parent, id, label, pos, size, style, validator, name);
77 }
78
79 bool Create(wxWindow *parent,
80 wxWindowID id,
81 const wxString& label,
82 const wxPoint& pos = wxDefaultPosition,
83 const wxSize& size = wxDefaultSize,
84 long style = 0,
85 const wxValidator& validator = wxDefaultValidator,
86 const wxString& name = wxCheckBoxNameStr);
87
88 virtual void SetValue(bool value);
89 virtual bool GetValue() const ;
90
336a6aba 91 virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
8cf73271
SC
92
93 virtual void Command(wxCommandEvent& event);
94
95protected:
dc797d8e 96 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
8cf73271
SC
97 virtual wxSize DoGetBestSize() const;
98
99private:
100 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
101};
102
103#endif // _WX_TOGGLEBUTTON_H_
104