Added zillions of #if wxUSE_XXX
[wxWidgets.git] / src / gtk / statbox.cpp
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 #if wxUSE_STATBOX
17
18 #include "gdk/gdk.h"
19 #include "gtk/gtk.h"
20
21 //-----------------------------------------------------------------------------
22 // wxStaticBox
23 //-----------------------------------------------------------------------------
24
25 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
26
27 wxStaticBox::wxStaticBox(void)
28 {
29 }
30
31 wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
32 const wxPoint &pos, const wxSize &size,
33 long style, const wxString &name )
34 {
35 Create( parent, id, label, pos, size, style, name );
36 }
37
38 bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
39 const wxPoint &pos, const wxSize &size,
40 long style, const wxString &name )
41 {
42 m_needParent = TRUE;
43
44 PreCreation( parent, id, pos, size, style, name );
45
46 m_isStaticBox = TRUE;
47
48 m_widget = gtk_frame_new(m_label.mbc_str());
49
50 m_parent->DoAddChild( this );
51
52 PostCreation();
53
54 SetLabel(label);
55
56 SetBackgroundColour( parent->GetBackgroundColour() );
57 SetForegroundColour( parent->GetForegroundColour() );
58 SetFont( parent->GetFont() );
59
60 Show( TRUE );
61
62 return TRUE;
63 }
64
65 void wxStaticBox::SetLabel( const wxString &label )
66 {
67 wxControl::SetLabel( label );
68 GtkFrame *frame = GTK_FRAME( m_widget );
69 gtk_frame_set_label( frame, GetLabel().mbc_str() );
70 }
71
72 void wxStaticBox::ApplyWidgetStyle()
73 {
74 SetWidgetStyle();
75 gtk_widget_set_style( m_widget, m_widgetStyle );
76 }
77
78 #endif