]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/statbox.cpp
Fixed wxOVERWRITE_PROMPT bug in gtk file selector
[wxWidgets.git] / src / gtk1 / statbox.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.cpp
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "statbox.h"
13#endif
14
15#include "wx/statbox.h"
16
17//-----------------------------------------------------------------------------
18// wxStaticBox
19//-----------------------------------------------------------------------------
20
21IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
22
23wxStaticBox::wxStaticBox(void)
24{
25};
26
27wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
28 const wxPoint &pos, const wxSize &size,
29 long style, const wxString &name )
30{
31 Create( parent, id, label, pos, size, style, name );
32};
33
34bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
35 const wxPoint &pos, const wxSize &size,
36 long style, const wxString &name )
37{
38 m_needParent = TRUE;
39
40 PreCreation( parent, id, pos, size, style, name );
41
42 SetLabel(label);
43 m_widget = gtk_frame_new(m_label);
44
45 PostCreation();
46
47 Show( TRUE );
48
49 return TRUE;
50};