]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/radiobox.h
3 // Purpose: wxRadioBox class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBOX_H_
13 #define _WX_RADIOBOX_H_
16 class WXDLLEXPORT wxBitmap
;
18 class WXDLLEXPORT wxRadioBox
: public wxControl
, public wxRadioBoxBase
23 inline wxRadioBox( wxWindow
* pParent
25 ,const wxString
& rsTitle
26 ,const wxPoint
& rPos
= wxDefaultPosition
27 ,const wxSize
& rSize
= wxDefaultSize
29 ,const wxString asChoices
[] = NULL
31 ,long lStyle
= wxRA_HORIZONTAL
32 ,const wxValidator
& rVal
= wxDefaultValidator
33 ,const wxString
& rsName
= wxRadioBoxNameStr
50 inline wxRadioBox( wxWindow
* pParent
52 ,const wxString
& rsTitle
55 ,const wxArrayString
& asChoices
57 ,long lStyle
= wxRA_HORIZONTAL
58 ,const wxValidator
& rVal
= wxDefaultValidator
59 ,const wxString
& rsName
= wxRadioBoxNameStr
77 bool Create( wxWindow
* pParent
79 ,const wxString
& rsTitle
80 ,const wxPoint
& rPos
= wxDefaultPosition
81 ,const wxSize
& rSize
= wxDefaultSize
83 ,const wxString asChoices
[] = NULL
85 ,long lStyle
= wxRA_HORIZONTAL
86 ,const wxValidator
& rVal
= wxDefaultValidator
87 ,const wxString
& rsName
= wxRadioBoxNameStr
90 bool Create( wxWindow
* pParent
92 ,const wxString
& rsTitle
95 ,const wxArrayString
& asChoices
97 ,long lStyle
= wxRA_HORIZONTAL
98 ,const wxValidator
& rVal
= wxDefaultValidator
99 ,const wxString
& rsName
= wxRadioBoxNameStr
102 void Command(wxCommandEvent
& rEvent
);
103 bool ContainsHWND(WXHWND hWnd
) const;
104 virtual bool Enable(bool bEnable
= true);
105 virtual bool Enable(int nItem
, bool bEnable
= true);
107 virtual WXHBRUSH
OnCtlColor( WXHDC hDC
114 virtual bool OS2Command( WXUINT uParam
117 void SendNotificationEvent(void);
118 virtual bool Show(int nItem
, bool bShow
= true);
119 virtual bool Show(bool bShow
= true);
120 MRESULT
WindowProc( WXUINT uMsg
128 virtual int GetColumnCount(void) const;
129 virtual int GetCount(void) const;
130 inline int GetNumberOfRowsOrCols(void) const { return m_nNoRowsOrCols
; }
131 int GetNumHor(void) const;
132 int GetNumVer(void) const;
133 void GetPosition( int* pnX
136 inline WXHWND
* GetRadioButtons(void) const { return m_ahRadioButtons
; }
137 virtual int GetRowCount(void) const;
138 int GetSelection(void) const;
139 void GetSize( int* pnX
142 inline int GetSizeFlags(void) const { return m_nSizeFlags
; }
143 void AdjustButtons( int nX
149 wxString
GetString(int nIndex
) const;
150 virtual wxString
GetStringSelection(void) const;
152 inline void SetButtonFont(const wxFont
& rFont
) { SetFont(rFont
); }
154 virtual bool SetFont(const wxFont
& rFont
);
155 inline void SetLabelFont(const wxFont
& WXUNUSED(font
)) {};
156 inline void SetNumberOfRowsOrCols(int nNum
) { m_nNoRowsOrCols
= nNum
; }
157 void SetSelection(int nIndex
);
158 virtual void SetString( int nNum
159 ,const wxString
& rsLabel
161 virtual bool SetStringSelection(const wxString
& rsStr
);
163 void SetLabel( int nItem
164 ,const wxString
& rsLabel
166 void SetLabel( int item
169 wxString
GetLabel(int nItem
) const;
173 virtual wxSize
DoGetBestSize(void) const;
174 virtual void DoSetSize( int nX
178 ,int nSizeFlags
= wxSIZE_AUTO
180 wxSize
GetMaxButtonSize(void) const;
181 wxSize
GetTotalButtonSize(const wxSize
& rSizeBtn
) const;
182 void SubclassRadioButton(WXHWND hWndBtn
);
185 WXHWND
* m_ahRadioButtons
;
187 int* m_pnRadioWidth
; // for bitmaps
188 int* m_pnRadioHeight
;
191 int m_nSelectedButton
;
195 inline wxString
GetLabel() const
196 { return wxWindowBase::GetLabel(); }
197 inline void SetLabel(const wxString
& rsLabel
)
198 { wxWindowBase::SetLabel(rsLabel
); }
200 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
201 }; // end of wxRadioBox