1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/radiobox.cpp
3 // Purpose: wxRadioBox implementation
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native wxRadioBox implementation
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "radiobox.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/bitmap.h"
36 #include "wx/radiobox.h"
37 #include "wx/settings.h"
42 #include "wx/tooltip.h"
43 #endif // wxUSE_TOOLTIPS
45 #include "wx/radiobut.h"
47 // TODO: wxCONSTRUCTOR
48 #if 0 // wxUSE_EXTENDED_RTTI
49 WX_DEFINE_FLAGS( wxRadioBoxStyle
)
51 wxBEGIN_FLAGS( wxRadioBoxStyle
)
52 // new style border flags, we put them first to
53 // use them for streaming out
54 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
55 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
56 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
57 wxFLAGS_MEMBER(wxBORDER_RAISED
)
58 wxFLAGS_MEMBER(wxBORDER_STATIC
)
59 wxFLAGS_MEMBER(wxBORDER_NONE
)
61 // old style border flags
62 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
63 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
64 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
65 wxFLAGS_MEMBER(wxRAISED_BORDER
)
66 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
67 wxFLAGS_MEMBER(wxBORDER
)
69 // standard window styles
70 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
71 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
72 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
73 wxFLAGS_MEMBER(wxWANTS_CHARS
)
74 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
75 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
76 wxFLAGS_MEMBER(wxVSCROLL
)
77 wxFLAGS_MEMBER(wxHSCROLL
)
79 wxFLAGS_MEMBER(wxRA_SPECIFY_COLS
)
80 wxFLAGS_MEMBER(wxRA_HORIZONTAL
)
81 wxFLAGS_MEMBER(wxRA_SPECIFY_ROWS
)
82 wxFLAGS_MEMBER(wxRA_VERTICAL
)
84 wxEND_FLAGS( wxRadioBoxStyle
)
86 IMPLEMENT_DYNAMIC_CLASS_XTI(wxRadioBox
, wxControl
,"wx/radiobox.h")
88 wxBEGIN_PROPERTIES_TABLE(wxRadioBox
)
89 wxEVENT_PROPERTY( Select
, wxEVT_COMMAND_RADIOBOX_SELECTED
, wxCommandEvent
)
90 wxPROPERTY_FLAGS( WindowStyle
, wxRadioBoxStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
91 wxEND_PROPERTIES_TABLE()
94 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
, wxControl
)
105 // ===========================================================================
107 // ===========================================================================
109 // ---------------------------------------------------------------------------
111 // ---------------------------------------------------------------------------
113 int wxRadioBox::GetCount() const
118 int wxRadioBox::GetColumnCount() const
123 int wxRadioBox::GetRowCount() const
128 // returns the number of rows
129 int wxRadioBox::GetNumVer() const
134 // returns the number of columns
135 int wxRadioBox::GetNumHor() const
141 wxRadioBox::wxRadioBox()
145 bool wxRadioBox::Create(wxWindow
*parent
,
147 const wxString
& title
,
151 const wxString choices
[],
154 const wxValidator
& val
,
155 const wxString
& name
)
157 // initialize members
158 m_majorDim
= majorDim
== 0 ? n
: majorDim
;
160 if(!wxControl::Create(parent
, id
, pos
, size
, style
, val
, name
))
163 for(int i
=0; i
<n
; i
++)
165 wxRadioButton
* rb
= new wxRadioButton();
173 ( n
== 0 ? wxRB_GROUP
: 0 ) |
174 ( style
& wxRA_USE_CHECKBOX
) ? wxRB_USE_CHECKBOX
: 0
181 bool wxRadioBox::Create(wxWindow
*parent
,
183 const wxString
& title
,
186 const wxArrayString
& choices
,
189 const wxValidator
& val
,
190 const wxString
& name
)
192 wxCArrayString
chs(choices
);
194 return Create( parent
, id
, title
, pos
, size
, chs
.GetCount(),
195 chs
.GetStrings(), majorDim
, style
, val
, name
);
198 wxRadioBox::~wxRadioBox()
202 void wxRadioBox::SetString(int item
, const wxString
& label
)
206 void wxRadioBox::SetSelection(int N
)
210 // Get single selection, for single choice list items
211 int wxRadioBox::GetSelection() const
216 // Find string for position
217 wxString
wxRadioBox::GetString(int item
) const
224 // ----------------------------------------------------------------------------
226 // ----------------------------------------------------------------------------
228 wxSize
wxRadioBox::GetMaxButtonSize() const
233 wxSize
wxRadioBox::GetTotalButtonSize(const wxSize
& sizeBtn
) const
238 wxSize
wxRadioBox::DoGetBestSize() const
243 // Restored old code.
244 void wxRadioBox::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
248 void wxRadioBox::SetFocus()
252 bool wxRadioBox::Show(bool show
)
257 // Enable a specific button
258 void wxRadioBox::Enable(int item
, bool enable
)
262 // Enable all controls
263 bool wxRadioBox::Enable(bool enable
)
268 // Show a specific button
269 void wxRadioBox::Show(int item
, bool show
)
273 void wxRadioBox::Command(wxCommandEvent
& event
)
277 void wxRadioBox::SendNotificationEvent()
281 bool wxRadioBox::SetFont(const wxFont
& font
)
286 #endif // wxUSE_RADIOBOX