]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/radiobut.h
OS X savvy implementation
[wxWidgets.git] / include / wx / msw / radiobut.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobut.h
3// Purpose: wxRadioButton class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_RADIOBUT_H_
13#define _WX_RADIOBUT_H_
2bda0e17 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
5f199b71 16 #pragma interface "radiobut.h"
2bda0e17
KB
17#endif
18
2bda0e17
KB
19class WXDLLEXPORT wxRadioButton: public wxControl
20{
5f199b71
VZ
21public:
22 // ctors and creation functions
6463b9f5 23 wxRadioButton() { Init(); }
5f199b71
VZ
24
25 wxRadioButton(wxWindow *parent,
26 wxWindowID id,
27 const wxString& label,
28 const wxPoint& pos = wxDefaultPosition,
29 const wxSize& size = wxDefaultSize,
30 long style = 0,
31 const wxValidator& validator = wxDefaultValidator,
6463b9f5
JS
32 const wxString& name = wxRadioButtonNameStr)
33 {
34 Init();
35
36 Create(parent, id, label, pos, size, style, validator, name);
37 }
5f199b71
VZ
38
39 bool Create(wxWindow *parent,
40 wxWindowID id,
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxValidator& validator = wxDefaultValidator,
46 const wxString& name = wxRadioButtonNameStr);
47
48 // implement the radio button interface
49 virtual void SetValue(bool value);
50 virtual bool GetValue() const;
51
52 // implementation only from now on
53 virtual bool MSWCommand(WXUINT param, WXWORD id);
54 virtual void Command(wxCommandEvent& event);
cc0bffac
RD
55 virtual void ApplyParentThemeBackground(const wxColour& bg)
56 { SetBackgroundColour(bg); }
57
5f199b71
VZ
58
59protected:
60 virtual wxSize DoGetBestSize() const;
61
62private:
63 // common part of all ctors
64 void Init();
65
f607434a
VZ
66 // we need to store the state internally as the result of GetValue()
67 // sometimes gets out of sync in WM_COMMAND handler
68 bool m_isChecked;
5f199b71 69
fc7a2a60 70 DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
2bda0e17
KB
71};
72
2bda0e17 73#endif
bbcdf8bc 74 // _WX_RADIOBUT_H_