]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/control.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "control.h"
14 #include "wx/control.h"
16 #include "gtk/gtkfeatures.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_DYNAMIC_CLASS(wxControl
,wxWindow
)
24 wxControl::wxControl(void)
29 wxControl::wxControl( wxWindow
*parent
, wxWindowID id
,
30 const wxPoint
&pos
, const wxSize
&size
,
31 long style
, const wxString
&name
) :
32 wxWindow( parent
, id
, pos
, size
, style
, name
)
36 void wxControl::Command( wxCommandEvent
&WXUNUSED(event
) )
40 void wxControl::SetLabel( const wxString
&label
)
43 for ( const char *pc
= label
; *pc
!= '\0'; pc
++ )
48 #if 0 // it would be unused anyhow for now - kbd interface not done yet
49 if ( *pc
!= '&' ) m_chAccel
= *pc
;
56 wxString
wxControl::GetLabel(void) const