]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/radiobox.h
Use *wxTopLevelWindowGTK*RequestUserAttention*; because *int* isn't the case always...
[wxWidgets.git] / include / wx / os2 / radiobox.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobox.h
3// Purpose: wxRadioBox class
cdf1e714 4// Author: David Webster
0e320a79 5// Modified by:
cdf1e714 6// Created: 10/12/99
0e320a79 7// RCS-ID: $Id$
cdf1e714 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_RADIOBOX_H_
13#define _WX_RADIOBOX_H_
14
0e320a79 15// List box item
54da4255 16class WXDLLEXPORT wxBitmap ;
0e320a79 17
210a651b 18class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase
0e320a79 19{
0e320a79 20public:
3c299c3a
DW
21 wxRadioBox();
22
23 inline wxRadioBox( wxWindow* pParent
24 ,wxWindowID vId
25 ,const wxString& rsTitle
26 ,const wxPoint& rPos = wxDefaultPosition
27 ,const wxSize& rSize = wxDefaultSize
28 ,int nNum = 0
29 ,const wxString asChoices[] = NULL
30 ,int nMajorDim = 0
31 ,long lStyle = wxRA_HORIZONTAL
3c299c3a 32 ,const wxValidator& rVal = wxDefaultValidator
3c299c3a
DW
33 ,const wxString& rsName = wxRadioBoxNameStr
34 )
35 {
36 Create( pParent
37 ,vId
38 ,rsTitle
39 ,rPos
40 ,rSize
41 ,nNum
42 ,asChoices
43 ,nMajorDim
44 ,lStyle
3c299c3a 45 ,rVal
3c299c3a
DW
46 ,rsName
47 );
48 }
49
584ad2a3
MB
50 inline wxRadioBox( wxWindow* pParent
51 ,wxWindowID vId
52 ,const wxString& rsTitle
53 ,const wxPoint& rPos
54 ,const wxSize& rSize
55 ,const wxArrayString& asChoices
56 ,int nMajorDim = 0
57 ,long lStyle = wxRA_HORIZONTAL
58 ,const wxValidator& rVal = wxDefaultValidator
59 ,const wxString& rsName = wxRadioBoxNameStr
60 )
61 {
62 Create( pParent
63 ,vId
64 ,rsTitle
65 ,rPos
66 ,rSize
67 ,asChoices
68 ,nMajorDim
69 ,lStyle
70 ,rVal
71 ,rsName
72 );
73 }
74
3c299c3a
DW
75 ~wxRadioBox();
76
77 bool Create( wxWindow* pParent
78 ,wxWindowID vId
79 ,const wxString& rsTitle
80 ,const wxPoint& rPos = wxDefaultPosition
81 ,const wxSize& rSize = wxDefaultSize
82 ,int nNum = 0
83 ,const wxString asChoices[] = NULL
84 ,int nMajorDim = 0
85 ,long lStyle = wxRA_HORIZONTAL
3c299c3a 86 ,const wxValidator& rVal = wxDefaultValidator
3c299c3a
DW
87 ,const wxString& rsName = wxRadioBoxNameStr
88 );
89
584ad2a3
MB
90 bool Create( wxWindow* pParent
91 ,wxWindowID vId
92 ,const wxString& rsTitle
93 ,const wxPoint& rPos
94 ,const wxSize& rSize
95 ,const wxArrayString& asChoices
96 ,int nMajorDim = 0
97 ,long lStyle = wxRA_HORIZONTAL
98 ,const wxValidator& rVal = wxDefaultValidator
99 ,const wxString& rsName = wxRadioBoxNameStr
100 );
101
3c299c3a
DW
102 void Command(wxCommandEvent& rEvent);
103 bool ContainsHWND(WXHWND hWnd) const;
1a87edf2
WS
104 virtual bool Enable(bool bEnable = true);
105 virtual bool Enable(int nItem, bool bEnable = true);
3c299c3a
DW
106 int FindString(const wxString& sStr) const;
107
108 virtual WXHBRUSH OnCtlColor( WXHDC hDC
109 ,WXHWND hWnd
110 ,WXUINT uCtlColor
111 ,WXUINT uMessage
112 ,WXWPARAM wParam
113 ,WXLPARAM lParam
114 );
115 virtual bool OS2Command( WXUINT uParam
116 ,WXWORD wId
117 );
118 void SendNotificationEvent(void);
fa50c0e3
WS
119 virtual bool Show(int nItem, bool bShow = true);
120 virtual bool Show(bool bShow = true);
3c299c3a
DW
121 MRESULT WindowProc( WXUINT uMsg
122 ,WXWPARAM wParam
123 ,WXLPARAM lParam
124 );
125
126
127
128
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
135 ,int* pnY
136 ) const;
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
141 ,int* pnY
142 ) const;
3a50d19c 143 inline int GetSizeFlags(void) const { return m_nSizeFlags; }
3c299c3a
DW
144 void AdjustButtons( int nX
145 ,int nY
146 ,int nWidth
147 ,int nHeight
3a50d19c 148 ,int nSizeFlags
3c299c3a
DW
149 );
150 wxString GetString(int nIndex) const;
151 virtual wxString GetStringSelection(void) const;
152
153 inline void SetButtonFont(const wxFont& rFont) { SetFont(rFont); }
154 void SetFocus(void);
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
161 );
162 virtual bool SetStringSelection(const wxString& rsStr);
163
164 void SetLabel( int nItem
165 ,const wxString& rsLabel
166 );
167 void SetLabel( int item
168 ,wxBitmap* pBitmap
169 );
170 wxString GetLabel(int nItem) const;
54da4255 171
11e59d47 172
0e320a79 173protected:
3c299c3a
DW
174 virtual wxSize DoGetBestSize(void) const;
175 virtual void DoSetSize( int nX
176 ,int nY
177 ,int nWidth
178 ,int nHeight
179 ,int nSizeFlags = wxSIZE_AUTO
180 );
181 wxSize GetMaxButtonSize(void) const;
182 wxSize GetTotalButtonSize(const wxSize& rSizeBtn) const;
183 void SubclassRadioButton(WXHWND hWndBtn);
184
185
186 WXHWND* m_ahRadioButtons;
187 int m_nMajorDim ;
188 int* m_pnRadioWidth; // for bitmaps
189 int* m_pnRadioHeight;
190 int m_nNoItems;
191 int m_nNoRowsOrCols;
192 int m_nSelectedButton;
193 int m_nSizeFlags;
cdf1e714 194
11e59d47 195private:
3c299c3a
DW
196 inline wxString GetLabel() const
197 { return wxWindowBase::GetLabel(); }
198 inline void SetLabel(const wxString& rsLabel)
199 { wxWindowBase::SetLabel(rsLabel); }
200
201 DECLARE_DYNAMIC_CLASS(wxRadioBox)
202}; // end of wxRadioBox
0e320a79
DW
203
204#endif
205 // _WX_RADIOBOX_H_