]>
git.saurik.com Git - wxWidgets.git/blob - src/qt/radiobox.cpp
758e70f76ea6db44f73e338183a753fa7ae4bb2d
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "radiobox.h"
16 #include "wx/radiobox.h"
17 #include "wx/dialog.h"
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 extern bool g_blockEventsOnDrag
;
26 //-----------------------------------------------------------------------------
28 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
,wxControl
)
30 wxRadioBox::wxRadioBox(void)
34 wxRadioBox::wxRadioBox( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
35 const wxPoint
&pos
, const wxSize
&size
,
36 int n
, const wxString choices
[],
37 int majorDim
, long style
,
38 const wxString
&name
)
40 Create( parent
, id
, title
, pos
, size
, n
, choices
, majorDim
, style
, name
);
43 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
44 const wxPoint
&pos
, const wxSize
&size
,
45 int n
, const wxString choices
[],
46 int WXUNUSED(majorDim
), long style
,
47 const wxString
&name
)
52 bool wxRadioBox::Show( bool show
)
54 wxWindow::Show( show
);
58 int wxRadioBox::FindString( const wxString
&s
) const
63 void wxRadioBox::SetSelection( int n
)
67 int wxRadioBox::GetSelection(void) const
72 wxString
wxRadioBox::GetString( int n
) const
76 wxString
wxRadioBox::GetLabel(void) const
78 return wxControl::GetLabel();
81 void wxRadioBox::SetLabel( const wxString
& WXUNUSED(label
) )
85 void wxRadioBox::SetLabel( int WXUNUSED(item
), const wxString
& WXUNUSED(label
) )
89 void wxRadioBox::SetLabel( int WXUNUSED(item
), wxBitmap
*WXUNUSED(bitmap
) )
93 wxString
wxRadioBox::GetLabel( int WXUNUSED(item
) ) const
98 void wxRadioBox::Enable( bool WXUNUSED(enable
) )
102 void wxRadioBox::Enable( int WXUNUSED(item
), bool WXUNUSED(enable
) )
106 void wxRadioBox::Show( int WXUNUSED(item
), bool WXUNUSED(show
) )
110 wxString
wxRadioBox::GetStringSelection(void) const
115 bool wxRadioBox::SetStringSelection( const wxString
&s
)
120 int wxRadioBox::Number(void) const
125 int wxRadioBox::GetNumberOfRowsOrCols(void) const
130 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n
) )