removes "&" from wxControl's label (also for buttons and stattext)
[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 for ( const char *pc = label; *pc != '\0'; pc++ ) {
42 if ( *pc == '&' ) {
43 pc++; // skip it
44 #if 0 // it would be unused anyhow for now - kbd interface not done yet
45 if ( *pc != '&' )
46 m_chAccel = *pc;
47 #endif
48 }
49
50 m_label << *pc;
51 }
52 };
53
54 wxString wxControl::GetLabel(void) const
55 {
56 return m_label;
57 };
58
59
60