]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
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);
106 int FindString(const wxString
& sStr
) const;
108 virtual WXHBRUSH
OnCtlColor( WXHDC hDC
115 virtual bool OS2Command( WXUINT uParam
118 void SendNotificationEvent(void);
119 virtual void Show( int nItem
122 bool Show(bool bShow
);
123 MRESULT
WindowProc( WXUINT uMsg
131 virtual int GetColumnCount(void) const;
132 virtual int GetCount(void) const;
133 inline int GetNumberOfRowsOrCols(void) const { return m_nNoRowsOrCols
; }
134 int GetNumHor(void) const;
135 int GetNumVer(void) const;
136 void GetPosition( int* pnX
139 inline WXHWND
* GetRadioButtons(void) const { return m_ahRadioButtons
; }
140 virtual int GetRowCount(void) const;
141 int GetSelection(void) const;
142 void GetSize( int* pnX
145 inline int GetSizeFlags(void) const { return m_nSizeFlags
; }
146 void AdjustButtons( int nX
152 wxString
GetString(int nIndex
) const;
153 virtual wxString
GetStringSelection(void) const;
155 inline void SetButtonFont(const wxFont
& rFont
) { SetFont(rFont
); }
157 virtual bool SetFont(const wxFont
& rFont
);
158 inline void SetLabelFont(const wxFont
& WXUNUSED(font
)) {};
159 inline void SetNumberOfRowsOrCols(int nNum
) { m_nNoRowsOrCols
= nNum
; }
160 void SetSelection(int nIndex
);
161 virtual void SetString( int nNum
162 ,const wxString
& rsLabel
164 virtual bool SetStringSelection(const wxString
& rsStr
);
166 void SetLabel( int nItem
167 ,const wxString
& rsLabel
169 void SetLabel( int item
172 wxString
GetLabel(int nItem
) const;
176 virtual wxSize
DoGetBestSize(void) const;
177 virtual void DoSetSize( int nX
181 ,int nSizeFlags
= wxSIZE_AUTO
183 wxSize
GetMaxButtonSize(void) const;
184 wxSize
GetTotalButtonSize(const wxSize
& rSizeBtn
) const;
185 void SubclassRadioButton(WXHWND hWndBtn
);
188 WXHWND
* m_ahRadioButtons
;
190 int* m_pnRadioWidth
; // for bitmaps
191 int* m_pnRadioHeight
;
194 int m_nSelectedButton
;
198 inline wxString
GetLabel() const
199 { return wxWindowBase::GetLabel(); }
200 inline void SetLabel(const wxString
& rsLabel
)
201 { wxWindowBase::SetLabel(rsLabel
); }
203 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
204 }; // end of wxRadioBox