]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/statbox.cpp
1. more warnings fixes in gtk/region.cpp and common/tbarsmpl.cpp
[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
4dcaf11a
RR
44 if (!PreCreation( parent, pos, size ) ||
45 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
46 {
223d09f6 47 wxFAIL_MSG( wxT("wxStaticBox creation failed") );
db434467 48 return FALSE;
4dcaf11a 49 }
c801d85f 50
1ecc4d80
RR
51 m_isStaticBox = TRUE;
52
2e0e025e
RR
53 if (label.IsEmpty())
54 m_widget = gtk_frame_new( (char*) NULL );
55 else
56 m_widget = gtk_frame_new( m_label.mbc_str() );
904f68c7 57
f03fc89f 58 m_parent->DoAddChild( this );
6ca41e57 59
1ecc4d80 60 PostCreation();
904f68c7 61
1ecc4d80 62 SetLabel(label);
b4071e91 63
db434467
RR
64 ApplyWidgetStyle();
65
66 SetFont( parent->GetFont() );
67
68
1ecc4d80
RR
69 SetBackgroundColour( parent->GetBackgroundColour() );
70 SetForegroundColour( parent->GetForegroundColour() );
58614078 71
1ecc4d80 72 Show( TRUE );
904f68c7 73
1ecc4d80 74 return TRUE;
3f659fd6 75}
d3904ceb
RR
76
77void wxStaticBox::SetLabel( const wxString &label )
78{
1ecc4d80
RR
79 wxControl::SetLabel( label );
80 GtkFrame *frame = GTK_FRAME( m_widget );
9f15c5fe 81 gtk_frame_set_label( frame, GetLabel().mbc_str() );
d3904ceb 82}
58614078
RR
83
84void wxStaticBox::ApplyWidgetStyle()
85{
1ecc4d80
RR
86 SetWidgetStyle();
87 gtk_widget_set_style( m_widget, m_widgetStyle );
58614078 88}
dcf924a3
RR
89
90#endif