Added wxRadioButton (not tested)
[wxWidgets.git] / src / gtk1 / control.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: control.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 #ifdef __GNUG__
12 #pragma implementation "control.h"
13 #endif
14
15 #include "wx/control.h"
16
17 //-----------------------------------------------------------------------------
18 // wxControl
19 //-----------------------------------------------------------------------------
20
21 IMPLEMENT_DYNAMIC_CLASS(wxControl,wxWindow)
22
23 wxControl::wxControl(void)
24 {
25 m_needParent = TRUE;
26 }
27
28 wxControl::wxControl( wxWindow *parent, wxWindowID id,
29 const wxPoint &pos, const wxSize &size,
30 long style, const wxString &name ) :
31 wxWindow( parent, id, pos, size, style, name )
32 {
33 }
34
35 void wxControl::Command( wxCommandEvent &WXUNUSED(event) )
36 {
37 }
38
39 void wxControl::SetLabel( const wxString &label )
40 {
41 m_label = "";
42 for ( const char *pc = label; *pc != '\0'; pc++ ) {
43 if ( *pc == '&' ) {
44 pc++; // skip it
45 #if 0 // it would be unused anyhow for now - kbd interface not done yet
46 if ( *pc != '&' )
47 m_chAccel = *pc;
48 #endif
49 }
50
51 m_label << *pc;
52 }
53 }
54
55 wxString wxControl::GetLabel(void) const
56 {
57 return m_label;
58 }
59
60
61