added some wxMSW stuff
[wxWidgets.git] / include / wx / msw / radiobut.h
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$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __RADIOBUTH__
13 #define __RADIOBUTH__
14
15 #ifdef __GNUG__
16 #pragma interface "radiobut.h"
17 #endif
18
19 #include "wx/control.h"
20
21 WXDLLEXPORT_DATA(extern const char*) wxRadioButtonNameStr;
22
23 class WXDLLEXPORT wxRadioButton: public wxControl
24 {
25 DECLARE_DYNAMIC_CLASS(wxRadioButton)
26 protected:
27 public:
28 inline wxRadioButton(void) {}
29 inline wxRadioButton(wxWindow *parent, const wxWindowID id,
30 const wxString& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize, const long style = 0,
33 const wxValidator& validator = wxDefaultValidator,
34 const wxString& name = wxRadioButtonNameStr)
35 {
36 Create(parent, id, label, pos, size, style, validator, name);
37 }
38
39 bool Create(wxWindow *parent, const wxWindowID id,
40 const wxString& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize, const long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxRadioButtonNameStr);
45
46 virtual void SetLabel(const wxString& label);
47 virtual void SetValue(const bool val);
48 virtual bool GetValue(void) const ;
49
50 void Command(wxCommandEvent& event);
51 virtual WXHBRUSH OnCtlColor(const WXHDC pDC, const WXHWND pWnd, const WXUINT nCtlColor,
52 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
53 };
54
55 // Not implemented
56 #if 0
57 class WXDLLEXPORT wxBitmap ;
58
59 WXDLLEXPORT_DATA(extern const char*) wxBitmapRadioButtonNameStr;
60
61 class WXDLLEXPORT wxBitmapRadioButton: public wxRadioButton
62 {
63 DECLARE_DYNAMIC_CLASS(wxBitmapRadioButton)
64 protected:
65 wxBitmap *theButtonBitmap;
66 public:
67 inline wxBitmapRadioButton(void) { theButtonBitmap = NULL; }
68 inline wxBitmapRadioButton(wxWindow *parent, const wxWindowID id,
69 const wxBitmap *label,
70 const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize, const long style = 0,
72 const wxValidator& validator = wxDefaultValidator,
73 const wxString& name = wxBitmapRadioButtonNameStr)
74 {
75 Create(parent, id, label, pos, size, style, validator, name);
76 }
77
78 bool Create(wxWindow *parent, const wxWindowID id,
79 const wxBitmap *label,
80 const wxPoint& pos = wxDefaultPosition,
81 const wxSize& size = wxDefaultSize, const long style = 0,
82 const wxValidator& validator = wxDefaultValidator,
83 const wxString& name = wxBitmapRadioButtonNameStr);
84
85 virtual void SetLabel(const wxBitmap *label);
86 virtual void SetValue(const bool val) ;
87 virtual bool GetValue(void) const ;
88 };
89 #endif
90
91 #endif
92 // __RADIOBUTH__