]>
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 bool Show(int nItem
, bool bShow
= true);
120 virtual bool Show(bool bShow
= true);
121 MRESULT
WindowProc( WXUINT uMsg
129 virtual int GetColumnCount(void) const;
130 virtual int GetCount(void) const;
131 inline int GetNumberOfRowsOrCols(void) const { return m_nNoRowsOrCols
; }
132 int GetNumHor(void) const;
133 int GetNumVer(void) const;
134 void GetPosition( int* pnX
137 inline WXHWND
* GetRadioButtons(void) const { return m_ahRadioButtons
; }
138 virtual int GetRowCount(void) const;
139 int GetSelection(void) const;
140 void GetSize( int* pnX
143 inline int GetSizeFlags(void) const { return m_nSizeFlags
; }
144 void AdjustButtons( int nX
150 wxString
GetString(int nIndex
) const;
151 virtual wxString
GetStringSelection(void) const;
153 inline void SetButtonFont(const wxFont
& rFont
) { SetFont(rFont
); }
155 virtual bool SetFont(const wxFont
& rFont
);
156 inline void SetLabelFont(const wxFont
& WXUNUSED(font
)) {};
157 inline void SetNumberOfRowsOrCols(int nNum
) { m_nNoRowsOrCols
= nNum
; }
158 void SetSelection(int nIndex
);
159 virtual void SetString( int nNum
160 ,const wxString
& rsLabel
162 virtual bool SetStringSelection(const wxString
& rsStr
);
164 void SetLabel( int nItem
165 ,const wxString
& rsLabel
167 void SetLabel( int item
170 wxString
GetLabel(int nItem
) const;
174 virtual wxSize
DoGetBestSize(void) const;
175 virtual void DoSetSize( int nX
179 ,int nSizeFlags
= wxSIZE_AUTO
181 wxSize
GetMaxButtonSize(void) const;
182 wxSize
GetTotalButtonSize(const wxSize
& rSizeBtn
) const;
183 void SubclassRadioButton(WXHWND hWndBtn
);
186 WXHWND
* m_ahRadioButtons
;
188 int* m_pnRadioWidth
; // for bitmaps
189 int* m_pnRadioHeight
;
192 int m_nSelectedButton
;
196 inline wxString
GetLabel() const
197 { return wxWindowBase::GetLabel(); }
198 inline void SetLabel(const wxString
& rsLabel
)
199 { wxWindowBase::SetLabel(rsLabel
); }
201 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
202 }; // end of wxRadioBox