]> git.saurik.com Git - wxWidgets.git/blob - src/qt/radiobox.cpp
758e70f76ea6db44f73e338183a753fa7ae4bb2d
[wxWidgets.git] / src / qt / radiobox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: radiobox.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id:
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11
12 #ifdef __GNUG__
13 #pragma implementation "radiobox.h"
14 #endif
15
16 #include "wx/radiobox.h"
17 #include "wx/dialog.h"
18 #include "wx/frame.h"
19
20 //-----------------------------------------------------------------------------
21 // data
22 //-----------------------------------------------------------------------------
23
24 extern bool g_blockEventsOnDrag;
25
26 //-----------------------------------------------------------------------------
27
28 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox,wxControl)
29
30 wxRadioBox::wxRadioBox(void)
31 {
32 };
33
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 )
39 {
40 Create( parent, id, title, pos, size, n, choices, majorDim, style, name );
41 };
42
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 )
48 {
49 return TRUE;
50 };
51
52 bool wxRadioBox::Show( bool show )
53 {
54 wxWindow::Show( show );
55 return TRUE;
56 };
57
58 int wxRadioBox::FindString( const wxString &s ) const
59 {
60 return -1;
61 };
62
63 void wxRadioBox::SetSelection( int n )
64 {
65 };
66
67 int wxRadioBox::GetSelection(void) const
68 {
69 return -1;
70 };
71
72 wxString wxRadioBox::GetString( int n ) const
73 {
74 };
75
76 wxString wxRadioBox::GetLabel(void) const
77 {
78 return wxControl::GetLabel();
79 };
80
81 void wxRadioBox::SetLabel( const wxString& WXUNUSED(label) )
82 {
83 };
84
85 void wxRadioBox::SetLabel( int WXUNUSED(item), const wxString& WXUNUSED(label) )
86 {
87 };
88
89 void wxRadioBox::SetLabel( int WXUNUSED(item), wxBitmap *WXUNUSED(bitmap) )
90 {
91 };
92
93 wxString wxRadioBox::GetLabel( int WXUNUSED(item) ) const
94 {
95 return "";
96 };
97
98 void wxRadioBox::Enable( bool WXUNUSED(enable) )
99 {
100 };
101
102 void wxRadioBox::Enable( int WXUNUSED(item), bool WXUNUSED(enable) )
103 {
104 };
105
106 void wxRadioBox::Show( int WXUNUSED(item), bool WXUNUSED(show) )
107 {
108 };
109
110 wxString wxRadioBox::GetStringSelection(void) const
111 {
112 return "";
113 };
114
115 bool wxRadioBox::SetStringSelection( const wxString&s )
116 {
117 return TRUE;
118 };
119
120 int wxRadioBox::Number(void) const
121 {
122 return 0;
123 };
124
125 int wxRadioBox::GetNumberOfRowsOrCols(void) const
126 {
127 return 1;
128 };
129
130 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n) )
131 {
132 };
133