]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/stattext.cpp
Fixed typos in frame and dialog,
[wxWidgets.git] / src / gtk / stattext.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.cpp
3// Purpose:
4// Author: Robert Roebling
a81258be
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
b58197f2 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
b58197f2 12 #pragma implementation "stattext.h"
c801d85f
KB
13#endif
14
15#include "wx/stattext.h"
16
83624f79
RR
17#include "gdk/gdk.h"
18#include "gtk/gtk.h"
19
c801d85f
KB
20//-----------------------------------------------------------------------------
21// wxStaticText
22//-----------------------------------------------------------------------------
23
24IMPLEMENT_DYNAMIC_CLASS(wxStaticText,wxControl)
25
b58197f2 26wxStaticText::wxStaticText()
c801d85f 27{
3f659fd6 28}
c801d85f 29
b58197f2
VZ
30wxStaticText::wxStaticText(wxWindow *parent,
31 wxWindowID id,
32 const wxString &label,
33 const wxPoint &pos,
34 const wxSize &size,
35 long style,
36 const wxString &name)
c801d85f
KB
37{
38 Create( parent, id, label, pos, size, style, name );
3f659fd6 39}
c801d85f 40
b58197f2
VZ
41bool wxStaticText::Create(wxWindow *parent,
42 wxWindowID id,
43 const wxString &label,
44 const wxPoint &pos,
45 const wxSize &size,
46 long style,
47 const wxString &name )
c801d85f 48{
a93109d5 49 m_needParent = TRUE;
b58197f2 50
4dcaf11a
RR
51 if (!PreCreation( parent, pos, size ) ||
52 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
53 {
223d09f6 54 wxFAIL_MSG( wxT("wxXX creation failed") );
185fa6bf 55 return FALSE;
4dcaf11a 56 }
b58197f2
VZ
57
58 // notice that we call the base class version which will just remove the
59 // '&' characters from the string, but not set the label's text to it
60 // because the label is not yet created and because SetLabel() has a side
61 // effect of changing the control size which might not be desirable
a93109d5 62 wxControl::SetLabel(label);
9f15c5fe 63 m_widget = gtk_label_new( m_label.mbc_str() );
a93109d5
RR
64
65 GtkJustification justify;
66 if ( style & wxALIGN_CENTER )
67 justify = GTK_JUSTIFY_CENTER;
68 else if ( style & wxALIGN_RIGHT )
69 justify = GTK_JUSTIFY_RIGHT;
70 else // wxALIGN_LEFT is 0
71 justify = GTK_JUSTIFY_LEFT;
72 gtk_label_set_justify(GTK_LABEL(m_widget), justify);
1a5594b8 73
1a5594b8
VZ
74 // GTK_JUSTIFY_LEFT is 0, RIGHT 1 and CENTER 2
75 static const float labelAlignments[] = { 0.0, 1.0, 0.5 };
76 gtk_misc_set_alignment(GTK_MISC(m_widget), labelAlignments[justify], 0.0);
185fa6bf 77
a93109d5
RR
78 GtkRequisition req;
79 (* GTK_WIDGET_CLASS( GTK_OBJECT(m_widget)->klass )->size_request ) (m_widget, &req );
b58197f2 80
4dcaf11a 81 wxSize newSize = size;
a93109d5
RR
82 if (newSize.x == -1) newSize.x = req.width;
83 if (newSize.y == -1) newSize.y = req.height;
a93109d5 84 SetSize( newSize.x, newSize.y );
b58197f2 85
f03fc89f 86 m_parent->DoAddChild( this );
b58197f2 87
a93109d5 88 PostCreation();
b58197f2 89
a93109d5
RR
90 SetBackgroundColour( parent->GetBackgroundColour() );
91 SetForegroundColour( parent->GetForegroundColour() );
a7ac4461 92 SetFont( parent->GetFont() );
58614078 93
a93109d5 94 Show( TRUE );
b58197f2 95
a93109d5 96 return TRUE;
3f659fd6 97}
c801d85f 98
ed58dbea 99wxString wxStaticText::GetLabel() const
c801d85f 100{
a93109d5
RR
101 char *str = (char *) NULL;
102 gtk_label_get( GTK_LABEL(m_widget), &str );
b58197f2
VZ
103
104 return wxString(str);
3f659fd6 105}
c801d85f
KB
106
107void wxStaticText::SetLabel( const wxString &label )
108{
a93109d5 109 wxControl::SetLabel(label);
32c77a71 110
9f15c5fe 111 gtk_label_set( GTK_LABEL(m_widget), m_label.mbc_str() );
b58197f2 112
185fa6bf
VZ
113 // adjust the label size to the new label unless disabled
114 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
115 {
116 GtkRequisition req;
117 (* GTK_WIDGET_CLASS( GTK_OBJECT(m_widget)->klass )->size_request )
118 (m_widget, &req );
b58197f2 119
185fa6bf
VZ
120 SetSize( req.width, req.height );
121 }
b58197f2 122}
58614078
RR
123
124void wxStaticText::ApplyWidgetStyle()
125{
a93109d5
RR
126 SetWidgetStyle();
127 gtk_widget_set_style( m_widget, m_widgetStyle );
58614078 128}
b58197f2 129