]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/stattext.cpp
Some typos fixed
[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() );
97d7bfb8 64
33720b2d 65 wxControl::SetFont( parent->GetFont() );
454e2a22 66
a93109d5
RR
67 GtkJustification justify;
68 if ( style & wxALIGN_CENTER )
69 justify = GTK_JUSTIFY_CENTER;
70 else if ( style & wxALIGN_RIGHT )
71 justify = GTK_JUSTIFY_RIGHT;
72 else // wxALIGN_LEFT is 0
73 justify = GTK_JUSTIFY_LEFT;
74 gtk_label_set_justify(GTK_LABEL(m_widget), justify);
1a5594b8 75
1a5594b8
VZ
76 // GTK_JUSTIFY_LEFT is 0, RIGHT 1 and CENTER 2
77 static const float labelAlignments[] = { 0.0, 1.0, 0.5 };
78 gtk_misc_set_alignment(GTK_MISC(m_widget), labelAlignments[justify], 0.0);
185fa6bf 79
33720b2d
RR
80 // do not move this call elsewhere
81 gtk_label_set_line_wrap( GTK_LABEL(m_widget), FALSE );
82
f68586e5 83 SetSizeOrDefault( size );
b58197f2 84
f03fc89f 85 m_parent->DoAddChild( this );
b58197f2 86
a93109d5 87 PostCreation();
b58197f2 88
a93109d5
RR
89 SetBackgroundColour( parent->GetBackgroundColour() );
90 SetForegroundColour( parent->GetForegroundColour() );
a93109d5 91 Show( TRUE );
b58197f2 92
a93109d5 93 return TRUE;
3f659fd6 94}
c801d85f 95
ed58dbea 96wxString wxStaticText::GetLabel() const
c801d85f 97{
a93109d5
RR
98 char *str = (char *) NULL;
99 gtk_label_get( GTK_LABEL(m_widget), &str );
b58197f2
VZ
100
101 return wxString(str);
3f659fd6 102}
c801d85f
KB
103
104void wxStaticText::SetLabel( const wxString &label )
105{
a93109d5 106 wxControl::SetLabel(label);
32c77a71 107
9f15c5fe 108 gtk_label_set( GTK_LABEL(m_widget), m_label.mbc_str() );
b58197f2 109
185fa6bf 110 // adjust the label size to the new label unless disabled
33720b2d 111 if (!HasFlag(wxST_NO_AUTORESIZE))
f68586e5 112 SetSize( GetBestSize() );
33720b2d
RR
113}
114
115bool wxStaticText::SetFont( const wxFont &font )
116{
117 bool ret = wxControl::SetFont(font);
118
119 // adjust the label size to the new label unless disabled
120 if (!HasFlag(wxST_NO_AUTORESIZE))
121 SetSize( GetBestSize() );
122
123 return ret;
b58197f2 124}
58614078
RR
125
126void wxStaticText::ApplyWidgetStyle()
127{
a93109d5
RR
128 SetWidgetStyle();
129 gtk_widget_set_style( m_widget, m_widgetStyle );
58614078 130}
33720b2d
RR
131
132wxSize wxStaticText::DoGetBestSize() const
133{
134 // Do not return any arbitrary default value...
135 wxASSERT_MSG( m_widget, wxT("wxStaticText::DoGetBestSize called before creation") );
136
137 // this invalidates the size request
138 gtk_label_set_line_wrap( GTK_LABEL(m_widget), TRUE );
139 gtk_label_set_line_wrap( GTK_LABEL(m_widget), FALSE );
140
141 GtkRequisition req;
142 req.width = 2;
143 req.height = 2;
144 (* GTK_WIDGET_CLASS( GTK_OBJECT(m_widget)->klass )->size_request )
145 (m_widget, &req );
146
147 return wxSize(req.width, req.height);
148}
149