replaced T() makro with wxT() due to namespace probs, _T() exists, too
[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 if (!PreCreation( parent, pos, size ) ||
45 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
46 {
47 wxFAIL_MSG( wxT("wxStaticBox creation failed") );
48 return FALSE;
49 }
50
51 m_isStaticBox = TRUE;
52
53 m_widget = gtk_frame_new(m_label.mbc_str());
54
55 m_parent->DoAddChild( this );
56
57 PostCreation();
58
59 SetLabel(label);
60
61 SetBackgroundColour( parent->GetBackgroundColour() );
62 SetForegroundColour( parent->GetForegroundColour() );
63 SetFont( parent->GetFont() );
64
65 Show( TRUE );
66
67 return TRUE;
68 }
69
70 void wxStaticBox::SetLabel( const wxString &label )
71 {
72 wxControl::SetLabel( label );
73 GtkFrame *frame = GTK_FRAME( m_widget );
74 gtk_frame_set_label( frame, GetLabel().mbc_str() );
75 }
76
77 void wxStaticBox::ApplyWidgetStyle()
78 {
79 SetWidgetStyle();
80 gtk_widget_set_style( m_widget, m_widgetStyle );
81 }
82
83 #endif