]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/control.cpp
Version 0.4 of wxPython for MSW.
[wxWidgets.git] / src / gtk1 / control.cpp
... / ...
CommitLineData
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
21IMPLEMENT_DYNAMIC_CLASS(wxControl,wxWindow)
22
23wxControl::wxControl(void)
24{
25 m_needParent = TRUE;
26}
27
28wxControl::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
35void wxControl::Command( wxCommandEvent &WXUNUSED(event) )
36{
37}
38
39void 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
55wxString wxControl::GetLabel(void) const
56{
57 return m_label;
58}
59
60
61