]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/radiobox.h
3 // Purpose: wxRadioBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBOX_H_
13 #define _WX_RADIOBOX_H_
16 #pragma interface "radiobox.h"
19 class WXDLLEXPORT wxBitmap
;
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 class WXDLLEXPORT wxRadioBox
: public wxControl
, public wxRadioBoxBase
30 wxRadioBox(wxWindow
*parent
,
32 const wxString
& title
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
35 int n
= 0, const wxString choices
[] = NULL
,
37 long style
= wxRA_HORIZONTAL
,
38 const wxValidator
& val
= wxDefaultValidator
,
39 const wxString
& name
= wxRadioBoxNameStr
)
41 (void)Create(parent
, id
, title
, pos
, size
, n
, choices
, majorDim
,
47 bool Create(wxWindow
*parent
,
49 const wxString
& title
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
52 int n
= 0, const wxString choices
[] = NULL
,
54 long style
= wxRA_HORIZONTAL
,
55 const wxValidator
& val
= wxDefaultValidator
,
56 const wxString
& name
= wxRadioBoxNameStr
);
58 // implement the radiobox interface
59 virtual void SetSelection(int n
);
60 virtual int GetSelection() const;
61 virtual int GetCount() const;
62 virtual wxString
GetString(int n
) const;
63 virtual void SetString(int n
, const wxString
& label
);
64 virtual void Enable(int n
, bool enable
= TRUE
);
65 virtual void Show(int n
, bool show
= TRUE
);
66 virtual int GetColumnCount() const;
67 virtual int GetRowCount() const;
71 bool Enable(bool enable
);
72 void SetLabelFont(const wxFont
& WXUNUSED(font
)) {};
73 void SetButtonFont(const wxFont
& font
) { SetFont(font
); }
75 void Command(wxCommandEvent
& event
);
77 int GetNumberOfRowsOrCols() const { return m_noRowsOrCols
; }
78 void SetNumberOfRowsOrCols(int n
) { m_noRowsOrCols
= n
; }
80 // implementation only from now on
81 // -------------------------------
83 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
85 // FIXME: are they used? missing "Do" prefix?
86 void GetSize(int *x
, int *y
) const;
87 void GetPosition(int *x
, int *y
) const;
89 virtual bool SetFont(const wxFont
& font
);
91 long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
92 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
94 WXWPARAM wParam
, WXLPARAM lParam
);
95 WXHWND
*GetRadioButtons() const { return m_radioButtons
; }
96 bool ContainsHWND(WXHWND hWnd
) const;
97 void SendNotificationEvent();
99 // get the number of buttons per column/row
100 int GetNumVer() const;
101 int GetNumHor() const;
103 // compatibility ctor
104 #if WXWIN_COMPATIBILITY
105 wxRadioBox(wxWindow
*parent
, wxFunction func
, const char *title
,
106 int x
= -1, int y
= -1, int width
= -1, int height
= -1,
107 int n
= 0, char **choices
= NULL
,
108 int majorDim
= 0, long style
= wxRA_HORIZONTAL
, const char *name
= wxRadioBoxNameStr
);
109 #endif // WXWIN_COMPATIBILITY
112 // subclass one radio button
113 void SubclassRadioButton(WXHWND hWndBtn
);
115 // get the max size of radio buttons
116 wxSize
GetMaxButtonSize() const;
118 // get the total size occupied by the radio box buttons
119 wxSize
GetTotalButtonSize(const wxSize
& sizeBtn
) const;
121 WXHWND
* m_radioButtons
;
123 int * m_radioWidth
; // for bitmaps
128 int m_selectedButton
;
130 virtual void DoSetSize(int x
, int y
,
131 int width
, int height
,
132 int sizeFlags
= wxSIZE_AUTO
);
133 virtual wxSize
DoGetBestSize() const;
136 DECLARE_DYNAMIC_CLASS(wxRadioBox
)