]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/statbox.cpp
* Fixed a compilation problem on Windows
[wxWidgets.git] / src / gtk / statbox.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.cpp
3// Purpose:
4// Author: Robert Roebling
a81258be
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
904f68c7 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11#pragma implementation "statbox.h"
12#endif
13
14#include "wx/statbox.h"
15
83624f79
RR
16#include "gdk/gdk.h"
17#include "gtk/gtk.h"
18
c801d85f
KB
19//-----------------------------------------------------------------------------
20// wxStaticBox
21//-----------------------------------------------------------------------------
22
23IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
24
25wxStaticBox::wxStaticBox(void)
26{
3f659fd6 27}
c801d85f 28
904f68c7
VZ
29wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
30 const wxPoint &pos, const wxSize &size,
debe6624 31 long style, const wxString &name )
c801d85f 32{
1ecc4d80 33 Create( parent, id, label, pos, size, style, name );
3f659fd6 34}
c801d85f 35
904f68c7
VZ
36bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
37 const wxPoint &pos, const wxSize &size,
debe6624 38 long style, const wxString &name )
c801d85f 39{
1ecc4d80 40 m_needParent = TRUE;
904f68c7 41
1ecc4d80 42 PreCreation( parent, id, pos, size, style, name );
c801d85f 43
1ecc4d80
RR
44 m_isStaticBox = TRUE;
45
9f15c5fe 46 m_widget = gtk_frame_new(m_label.mbc_str());
904f68c7 47
1ecc4d80 48 m_parent->AddChild( this );
6ca41e57 49
1ecc4d80 50 (m_parent->m_insertCallback)( m_parent, this );
6ca41e57 51
1ecc4d80 52 PostCreation();
904f68c7 53
1ecc4d80 54 SetLabel(label);
b4071e91 55
1ecc4d80
RR
56 SetBackgroundColour( parent->GetBackgroundColour() );
57 SetForegroundColour( parent->GetForegroundColour() );
a7ac4461 58 SetFont( parent->GetFont() );
58614078 59
1ecc4d80 60 Show( TRUE );
904f68c7 61
1ecc4d80 62 return TRUE;
3f659fd6 63}
d3904ceb
RR
64
65void wxStaticBox::SetLabel( const wxString &label )
66{
1ecc4d80
RR
67 wxControl::SetLabel( label );
68 GtkFrame *frame = GTK_FRAME( m_widget );
9f15c5fe 69 gtk_frame_set_label( frame, GetLabel().mbc_str() );
d3904ceb 70}
58614078
RR
71
72void wxStaticBox::ApplyWidgetStyle()
73{
1ecc4d80
RR
74 SetWidgetStyle();
75 gtk_widget_set_style( m_widget, m_widgetStyle );
58614078 76}