]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/statbox.cpp
Typos fixed.
[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#include "gdk/gdk.h"
17#include "gtk/gtk.h"
18
19//-----------------------------------------------------------------------------
20// wxStaticBox
21//-----------------------------------------------------------------------------
22
23IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
24
25wxStaticBox::wxStaticBox(void)
26{
27}
28
29wxStaticBox::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
36bool 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
63void 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
70void wxStaticBox::ApplyWidgetStyle()
71{
72 SetWidgetStyle();
73 gtk_widget_set_style( m_widget, m_widgetStyle );
74}