]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/stattext.cpp
Applied patch [ 587450 ] Scoped Smart pointers and docs
[wxWidgets.git] / src / gtk1 / stattext.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
12 #pragma implementation "stattext.h"
13#endif
14
15#include "wx/defs.h"
16
17#if wxUSE_STATTEXT
18
19#include "wx/stattext.h"
20#include "wx/gtk/private.h"
21
22#include "gdk/gdk.h"
23#include "gtk/gtk.h"
24
25//-----------------------------------------------------------------------------
26// wxStaticText
27//-----------------------------------------------------------------------------
28
29IMPLEMENT_DYNAMIC_CLASS(wxStaticText,wxControl)
30
31wxStaticText::wxStaticText()
32{
33}
34
35wxStaticText::wxStaticText(wxWindow *parent,
36 wxWindowID id,
37 const wxString &label,
38 const wxPoint &pos,
39 const wxSize &size,
40 long style,
41 const wxString &name)
42{
43 Create( parent, id, label, pos, size, style, name );
44}
45
46bool wxStaticText::Create(wxWindow *parent,
47 wxWindowID id,
48 const wxString &label,
49 const wxPoint &pos,
50 const wxSize &size,
51 long style,
52 const wxString &name )
53{
54 m_needParent = TRUE;
55
56 if (!PreCreation( parent, pos, size ) ||
57 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
58 {
59 wxFAIL_MSG( wxT("wxXX creation failed") );
60 return FALSE;
61 }
62
63 // notice that we call the base class version which will just remove the
64 // '&' characters from the string, but not set the label's text to it
65 // because the label is not yet created and because SetLabel() has a side
66 // effect of changing the control size which might not be desirable
67 wxControl::SetLabel(label);
68 m_widget = gtk_label_new( m_label.mbc_str() );
69
70 GtkJustification justify;
71 if ( style & wxALIGN_CENTER )
72 justify = GTK_JUSTIFY_CENTER;
73 else if ( style & wxALIGN_RIGHT )
74 justify = GTK_JUSTIFY_RIGHT;
75 else // wxALIGN_LEFT is 0
76 justify = GTK_JUSTIFY_LEFT;
77 gtk_label_set_justify(GTK_LABEL(m_widget), justify);
78
79 // GTK_JUSTIFY_LEFT is 0, RIGHT 1 and CENTER 2
80 static const float labelAlignments[] = { 0.0, 1.0, 0.5 };
81 gtk_misc_set_alignment(GTK_MISC(m_widget), labelAlignments[justify], 0.0);
82
83 // do not move this call elsewhere
84 gtk_label_set_line_wrap( GTK_LABEL(m_widget), FALSE );
85
86 m_parent->DoAddChild( this );
87
88 PostCreation();
89
90 ApplyWidgetStyle();
91
92 wxControl::SetFont( parent->GetFont() );
93
94 wxSize size_best( DoGetBestSize() );
95 wxSize new_size( size );
96 if (new_size.x == -1)
97 new_size.x = size_best.x;
98 if (new_size.y == -1)
99 new_size.y = size_best.y;
100 if ((new_size.x != size.x) || (new_size.y != size.y))
101 SetSize( new_size.x, new_size.y );
102
103 SetBackgroundColour( parent->GetBackgroundColour() );
104 SetForegroundColour( parent->GetForegroundColour() );
105 Show( TRUE );
106
107 return TRUE;
108}
109
110wxString wxStaticText::GetLabel() const
111{
112 char *str = (char *) NULL;
113 gtk_label_get( GTK_LABEL(m_widget), &str );
114
115 return wxString(str);
116}
117
118void wxStaticText::SetLabel( const wxString &label )
119{
120 wxControl::SetLabel(label);
121
122 gtk_label_set( GTK_LABEL(m_widget), m_label.mbc_str() );
123
124 // adjust the label size to the new label unless disabled
125 if (!HasFlag(wxST_NO_AUTORESIZE))
126 SetSize( GetBestSize() );
127}
128
129bool wxStaticText::SetFont( const wxFont &font )
130{
131 bool ret = wxControl::SetFont(font);
132
133 // adjust the label size to the new label unless disabled
134 if (!HasFlag(wxST_NO_AUTORESIZE))
135 SetSize( GetBestSize() );
136
137 return ret;
138}
139
140void wxStaticText::ApplyWidgetStyle()
141{
142 SetWidgetStyle();
143 gtk_widget_set_style( m_widget, m_widgetStyle );
144}
145
146wxSize wxStaticText::DoGetBestSize() const
147{
148 // Do not return any arbitrary default value...
149 wxASSERT_MSG( m_widget, wxT("wxStaticText::DoGetBestSize called before creation") );
150
151 // this invalidates the size request
152 gtk_label_set_line_wrap( GTK_LABEL(m_widget), TRUE );
153 gtk_label_set_line_wrap( GTK_LABEL(m_widget), FALSE );
154
155 GtkRequisition req;
156 req.width = 2;
157 req.height = 2;
158 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request )
159 (m_widget, &req );
160
161 return wxSize(req.width, req.height);
162}
163
164#endif // wxUSE_STATTEXT