]>
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 | ||
071a2d78 | 16 | #include <gtk/gtk.h> |
034be888 | 17 | |
c801d85f KB |
18 | //----------------------------------------------------------------------------- |
19 | // wxControl | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
9abe166a | 22 | IMPLEMENT_DYNAMIC_CLASS(wxControl, wxWindow) |
c801d85f | 23 | |
31528cd3 | 24 | wxControl::wxControl() |
c801d85f | 25 | { |
b292e2f5 | 26 | m_needParent = TRUE; |
6de97a3b | 27 | } |
c801d85f | 28 | |
04165bec | 29 | bool wxControl::Create( wxWindow *parent, |
31528cd3 VZ |
30 | wxWindowID id, |
31 | const wxPoint &pos, | |
32 | const wxSize &size, | |
33 | long style, | |
8d772832 | 34 | const wxValidator& validator, |
04165bec | 35 | const wxString &name ) |
8d772832 | 36 | { |
04165bec RR |
37 | bool ret = wxWindow::Create(parent, id, pos, size, style, name); |
38 | ||
39 | #if wxUSE_VALIDATORS | |
8d772832 | 40 | SetValidator(validator); |
8d772832 RD |
41 | #endif |
42 | ||
04165bec RR |
43 | return ret; |
44 | } | |
45 | ||
c801d85f KB |
46 | void wxControl::SetLabel( const wxString &label ) |
47 | { | |
d9ea011f | 48 | m_label.Empty(); |
223d09f6 | 49 | for ( const wxChar *pc = label; *pc != wxT('\0'); pc++ ) |
b292e2f5 | 50 | { |
223d09f6 | 51 | if ( *pc == wxT('&') ) |
31528cd3 | 52 | { |
b292e2f5 | 53 | pc++; // skip it |
32c77a71 | 54 | #if 0 // it would be unused anyhow for now - kbd interface not done yet |
223d09f6 | 55 | if ( *pc != wxT('&') ) m_chAccel = *pc; |
32c77a71 | 56 | #endif |
b292e2f5 RR |
57 | } |
58 | m_label << *pc; | |
32c77a71 | 59 | } |
6de97a3b | 60 | } |
c801d85f | 61 | |
9abe166a | 62 | wxString wxControl::GetLabel() const |
c801d85f | 63 | { |
b292e2f5 | 64 | return m_label; |
6de97a3b | 65 | } |
c801d85f KB |
66 | |
67 | ||
f68586e5 VZ |
68 | wxSize wxControl::DoGetBestSize() const |
69 | { | |
0279e844 RR |
70 | // Do not return any arbitrary default value... |
71 | wxASSERT_MSG( m_widget, wxT("DoGetBestSize called before creation") ); | |
72 | ||
f68586e5 | 73 | GtkRequisition req; |
33720b2d RR |
74 | req.width = 2; |
75 | req.height = 2; | |
2afa14f2 | 76 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request ) |
f68586e5 VZ |
77 | (m_widget, &req ); |
78 | ||
79 | return wxSize(req.width, req.height); | |
80 | } | |
81 |