]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/checkbox.h
reintroducing direct access, cleanup
[wxWidgets.git] / include / wx / mac / carbon / checkbox.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: checkbox.h
3// Purpose: wxCheckBox 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_CHECKBOX_H_
13#define _WX_CHECKBOX_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "checkbox.h"
17#endif
18
19// Checkbox item (single checkbox)
20class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase
21{
22public:
23 wxCheckBox() { }
24 wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label,
25 const wxPoint& pos = wxDefaultPosition,
26 const wxSize& size = wxDefaultSize, long style = 0,
27 const wxValidator& validator = wxDefaultValidator,
28 const wxString& name = wxCheckBoxNameStr)
29 {
30 Create(parent, id, label, pos, size, style, validator, name);
31 }
32
33 bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize, long style = 0,
36 const wxValidator& validator = wxDefaultValidator,
37 const wxString& name = wxCheckBoxNameStr);
38 virtual void SetValue(bool);
39 virtual bool GetValue() const;
40
41 void DoSet3StateValue(wxCheckBoxState val);
42 virtual wxCheckBoxState DoGet3StateValue() const;
43
336a6aba 44 virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
8cf73271
SC
45 virtual void Command(wxCommandEvent& event);
46
47 DECLARE_DYNAMIC_CLASS(wxCheckBox)
48};
49
50class WXDLLEXPORT wxBitmap;
51class WXDLLEXPORT wxBitmapCheckBox: public wxCheckBox
52{
53public:
54 int checkWidth;
55 int checkHeight;
56
57 wxBitmapCheckBox()
58 : checkWidth(-1), checkHeight(-1)
59 { }
60
61 wxBitmapCheckBox(wxWindow *parent, wxWindowID id, const wxBitmap *label,
62 const wxPoint& pos = wxDefaultPosition,
63 const wxSize& size = wxDefaultSize, long style = 0,
64 const wxValidator& validator = wxDefaultValidator,
65 const wxString& name = wxCheckBoxNameStr)
66 {
67 Create(parent, id, label, pos, size, style, validator, name);
68 }
69
70 bool Create(wxWindow *parent, wxWindowID id, const wxBitmap *bitmap,
71 const wxPoint& pos = wxDefaultPosition,
72 const wxSize& size = wxDefaultSize, long style = 0,
73 const wxValidator& validator = wxDefaultValidator,
74 const wxString& name = wxCheckBoxNameStr);
75 virtual void SetValue(bool);
76 virtual bool GetValue() const;
77 virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
78 virtual void SetLabel(const wxBitmap *bitmap);
79 virtual void SetLabel( const wxString & WXUNUSED(name) ) {}
80
81 DECLARE_DYNAMIC_CLASS(wxBitmapCheckBox)
82};
83#endif
84 // _WX_CHECKBOX_H_