]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: control.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Vadim Zeitlin |
32c77a71 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "control.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/control.h" | |
15 | ||
16 | //----------------------------------------------------------------------------- | |
17 | // wxControl | |
18 | //----------------------------------------------------------------------------- | |
19 | ||
20 | IMPLEMENT_DYNAMIC_CLASS(wxControl,wxWindow) | |
21 | ||
22 | wxControl::wxControl(void) | |
23 | { | |
b292e2f5 | 24 | m_needParent = TRUE; |
6de97a3b | 25 | } |
c801d85f | 26 | |
32c77a71 VZ |
27 | wxControl::wxControl( wxWindow *parent, wxWindowID id, |
28 | const wxPoint &pos, const wxSize &size, | |
debe6624 | 29 | long style, const wxString &name ) : |
c801d85f KB |
30 | wxWindow( parent, id, pos, size, style, name ) |
31 | { | |
6de97a3b | 32 | } |
c801d85f KB |
33 | |
34 | void wxControl::Command( wxCommandEvent &WXUNUSED(event) ) | |
35 | { | |
6de97a3b | 36 | } |
c801d85f KB |
37 | |
38 | void wxControl::SetLabel( const wxString &label ) | |
39 | { | |
b292e2f5 RR |
40 | m_label = ""; |
41 | for ( const char *pc = label; *pc != '\0'; pc++ ) | |
42 | { | |
43 | if ( *pc == '&' ) | |
44 | { | |
45 | pc++; // skip it | |
32c77a71 | 46 | #if 0 // it would be unused anyhow for now - kbd interface not done yet |
b292e2f5 | 47 | if ( *pc != '&' ) m_chAccel = *pc; |
32c77a71 | 48 | #endif |
b292e2f5 RR |
49 | } |
50 | m_label << *pc; | |
32c77a71 | 51 | } |
6de97a3b | 52 | } |
c801d85f KB |
53 | |
54 | wxString wxControl::GetLabel(void) const | |
55 | { | |
b292e2f5 | 56 | return m_label; |
6de97a3b | 57 | } |
c801d85f KB |
58 | |
59 |