]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/stattext.cpp
* Corrected #include "thread.h" => #include "wx/thread.h"
[wxWidgets.git] / src / gtk1 / stattext.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.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
12#ifdef __GNUG__
13#pragma implementation "stattext.h"
14#endif
15
16#include "wx/stattext.h"
17
18//-----------------------------------------------------------------------------
19// wxStaticText
20//-----------------------------------------------------------------------------
21
22IMPLEMENT_DYNAMIC_CLASS(wxStaticText,wxControl)
23
24wxStaticText::wxStaticText(void)
25{
26};
27
28wxStaticText::wxStaticText( wxWindow *parent, wxWindowID id, const wxString &label,
29 const wxPoint &pos, const wxSize &size,
30 const long style, const wxString &name )
31{
32 Create( parent, id, label, pos, size, style, name );
33};
34
35bool wxStaticText::Create( wxWindow *parent, wxWindowID id, const wxString &label,
36 const wxPoint &pos, const wxSize &size,
37 const long style, const wxString &name )
38{
39 m_needParent = TRUE;
40
41 wxSize newSize = size;
42
43 PreCreation( parent, id, pos, size, style, name );
44
45 m_widget = gtk_label_new( label );
46
47 if (newSize.x == -1) newSize.x = gdk_string_measure( m_widget->style->font, label );
48 if (newSize.y == -1) newSize.y = 26;
49 SetSize( newSize.x, newSize.y );
50
51 PostCreation();
52
53 Show( TRUE );
54
55 return TRUE;
56};
57
58wxString wxStaticText::GetLabel(void) const
59{
60 char *str = NULL;
61 gtk_label_get( GTK_LABEL(m_widget), &str );
62 wxString tmp( str );
63 return tmp;
64};
65
66void wxStaticText::SetLabel( const wxString &label )
67{
68 gtk_label_set( GTK_LABEL(m_widget), label );
69};