]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/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"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_DYNAMIC_CLASS(wxControl
, wxWindow
)
24 wxControl::wxControl()
29 bool wxControl::Create( wxWindow
*parent
,
34 const wxValidator
& validator
,
35 const wxString
&name
)
37 bool ret
= wxWindow::Create(parent
, id
, pos
, size
, style
, name
);
40 SetValidator(validator
);
46 void wxControl::SetLabel( const wxString
&label
)
49 for ( const wxChar
*pc
= label
; *pc
!= wxT('\0'); pc
++ )
51 if ( *pc
== wxT('&') )
54 #if 0 // it would be unused anyhow for now - kbd interface not done yet
55 if ( *pc
!= wxT('&') ) m_chAccel
= *pc
;
62 wxString
wxControl::GetLabel() const
68 wxSize
wxControl::DoGetBestSize() const
70 // Do not return any arbitrary default value...
71 wxASSERT_MSG( m_widget
, wxT("DoGetBestSize called before creation") );
76 (* GTK_WIDGET_CLASS( GTK_OBJECT(m_widget
)->klass
)->size_request
)
79 return wxSize(req
.width
, req
.height
);