]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: statbox.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "statbox.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/statbox.h" | |
15 | ||
16 | #include "gdk/gdk.h" | |
17 | #include "gtk/gtk.h" | |
18 | ||
19 | //----------------------------------------------------------------------------- | |
20 | // wxStaticBox | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl) | |
24 | ||
25 | wxStaticBox::wxStaticBox(void) | |
26 | { | |
27 | } | |
28 | ||
29 | wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label, | |
30 | const wxPoint &pos, const wxSize &size, | |
31 | long style, const wxString &name ) | |
32 | { | |
33 | Create( parent, id, label, pos, size, style, name ); | |
34 | } | |
35 | ||
36 | bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label, | |
37 | const wxPoint &pos, const wxSize &size, | |
38 | long style, const wxString &name ) | |
39 | { | |
40 | m_needParent = TRUE; | |
41 | ||
42 | PreCreation( parent, id, pos, size, style, name ); | |
43 | ||
44 | m_isStaticBox = TRUE; | |
45 | ||
46 | m_widget = gtk_frame_new(m_label.mbc_str()); | |
47 | ||
48 | m_parent->DoAddChild( this ); | |
49 | ||
50 | PostCreation(); | |
51 | ||
52 | SetLabel(label); | |
53 | ||
54 | SetBackgroundColour( parent->GetBackgroundColour() ); | |
55 | SetForegroundColour( parent->GetForegroundColour() ); | |
56 | SetFont( parent->GetFont() ); | |
57 | ||
58 | Show( TRUE ); | |
59 | ||
60 | return TRUE; | |
61 | } | |
62 | ||
63 | void wxStaticBox::SetLabel( const wxString &label ) | |
64 | { | |
65 | wxControl::SetLabel( label ); | |
66 | GtkFrame *frame = GTK_FRAME( m_widget ); | |
67 | gtk_frame_set_label( frame, GetLabel().mbc_str() ); | |
68 | } | |
69 | ||
70 | void wxStaticBox::ApplyWidgetStyle() | |
71 | { | |
72 | SetWidgetStyle(); | |
73 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
74 | } |