]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/statbox.cpp
wxMotif fixes and common fixes for socket compilation
[wxWidgets.git] / src / gtk1 / 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
dcf924a3
RR
16#if wxUSE_STATBOX
17
83624f79
RR
18#include "gdk/gdk.h"
19#include "gtk/gtk.h"
20
c801d85f
KB
21//-----------------------------------------------------------------------------
22// wxStaticBox
23//-----------------------------------------------------------------------------
24
25IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
26
27wxStaticBox::wxStaticBox(void)
28{
3f659fd6 29}
c801d85f 30
904f68c7
VZ
31wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
32 const wxPoint &pos, const wxSize &size,
debe6624 33 long style, const wxString &name )
c801d85f 34{
1ecc4d80 35 Create( parent, id, label, pos, size, style, name );
3f659fd6 36}
c801d85f 37
904f68c7
VZ
38bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
39 const wxPoint &pos, const wxSize &size,
debe6624 40 long style, const wxString &name )
c801d85f 41{
1ecc4d80 42 m_needParent = TRUE;
904f68c7 43
1ecc4d80 44 PreCreation( parent, id, pos, size, style, name );
c801d85f 45
1ecc4d80
RR
46 m_isStaticBox = TRUE;
47
9f15c5fe 48 m_widget = gtk_frame_new(m_label.mbc_str());
904f68c7 49
f03fc89f 50 m_parent->DoAddChild( 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}
dcf924a3
RR
77
78#endif