]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/statbox.cpp
Called autoconf to update configure.
[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
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") );
4dcaf11a
RR
48 return FALSE;
49 }
c801d85f 50
1ecc4d80
RR
51 m_isStaticBox = TRUE;
52
9f15c5fe 53 m_widget = gtk_frame_new(m_label.mbc_str());
904f68c7 54
f03fc89f 55 m_parent->DoAddChild( this );
6ca41e57 56
1ecc4d80 57 PostCreation();
904f68c7 58
1ecc4d80 59 SetLabel(label);
b4071e91 60
1ecc4d80
RR
61 SetBackgroundColour( parent->GetBackgroundColour() );
62 SetForegroundColour( parent->GetForegroundColour() );
a7ac4461 63 SetFont( parent->GetFont() );
58614078 64
1ecc4d80 65 Show( TRUE );
904f68c7 66
1ecc4d80 67 return TRUE;
3f659fd6 68}
d3904ceb
RR
69
70void wxStaticBox::SetLabel( const wxString &label )
71{
1ecc4d80
RR
72 wxControl::SetLabel( label );
73 GtkFrame *frame = GTK_FRAME( m_widget );
9f15c5fe 74 gtk_frame_set_label( frame, GetLabel().mbc_str() );
d3904ceb 75}
58614078
RR
76
77void wxStaticBox::ApplyWidgetStyle()
78{
1ecc4d80
RR
79 SetWidgetStyle();
80 gtk_widget_set_style( m_widget, m_widgetStyle );
58614078 81}
dcf924a3
RR
82
83#endif