]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/statbox.cpp
Add some "USE" defs that were missing.
[wxWidgets.git] / src / gtk / statbox.cpp
... / ...
CommitLineData
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
25IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
26
27wxStaticBox::wxStaticBox(void)
28{
29}
30
31wxStaticBox::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
38bool 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 if (label.IsEmpty())
54 m_widget = gtk_frame_new( (char*) NULL );
55 else
56 m_widget = gtk_frame_new( m_label.mbc_str() );
57
58 m_parent->DoAddChild( this );
59
60 PostCreation();
61
62 SetLabel(label);
63
64 ApplyWidgetStyle();
65
66 SetFont( parent->GetFont() );
67
68
69 SetBackgroundColour( parent->GetBackgroundColour() );
70 SetForegroundColour( parent->GetForegroundColour() );
71
72 Show( TRUE );
73
74 return TRUE;
75}
76
77void wxStaticBox::SetLabel( const wxString &label )
78{
79 wxControl::SetLabel( label );
80 GtkFrame *frame = GTK_FRAME( m_widget );
81 gtk_frame_set_label( frame, GetLabel().mbc_str() );
82}
83
84void wxStaticBox::ApplyWidgetStyle()
85{
86 SetWidgetStyle();
87 gtk_widget_set_style( m_widget, m_widgetStyle );
88}
89
90#endif