]> git.saurik.com Git - wxWidgets.git/blame - src/msw/stattext.cpp
set anti-aliasing ON by default
[wxWidgets.git] / src / msw / stattext.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
1e3a888e 2// Name: src/msw/stattext.cpp
2bda0e17
KB
3// Purpose: wxStaticText
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
2bda0e17
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
1e6feb95
VZ
19#if wxUSE_STATTEXT
20
ccdc11bb
WS
21#include "wx/stattext.h"
22
2bda0e17 23#ifndef WX_PRECOMP
ac10c957
VZ
24 #include "wx/event.h"
25 #include "wx/app.h"
26 #include "wx/brush.h"
27 #include "wx/dcclient.h"
28 #include "wx/settings.h"
2bda0e17
KB
29#endif
30
2bda0e17 31#include "wx/msw/private.h"
2bda0e17 32
51741307 33#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
34WX_DEFINE_FLAGS( wxStaticTextStyle )
35
3ff066a4 36wxBEGIN_FLAGS( wxStaticTextStyle )
bc9fb572
JS
37 // new style border flags, we put them first to
38 // use them for streaming out
3ff066a4
SC
39 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
40 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
41 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
42 wxFLAGS_MEMBER(wxBORDER_RAISED)
43 wxFLAGS_MEMBER(wxBORDER_STATIC)
44 wxFLAGS_MEMBER(wxBORDER_NONE)
57f4f925 45
bc9fb572 46 // old style border flags
3ff066a4
SC
47 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
48 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
49 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
50 wxFLAGS_MEMBER(wxRAISED_BORDER)
51 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 52 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
53
54 // standard window styles
3ff066a4
SC
55 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
56 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
57 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
58 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 59 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
60 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
61 wxFLAGS_MEMBER(wxVSCROLL)
62 wxFLAGS_MEMBER(wxHSCROLL)
63
64 wxFLAGS_MEMBER(wxST_NO_AUTORESIZE)
65 wxFLAGS_MEMBER(wxALIGN_LEFT)
66 wxFLAGS_MEMBER(wxALIGN_RIGHT)
67 wxFLAGS_MEMBER(wxALIGN_CENTRE)
68
69wxEND_FLAGS( wxStaticTextStyle )
bc9fb572 70
51741307
SC
71IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticText, wxControl,"wx/stattext.h")
72
3ff066a4 73wxBEGIN_PROPERTIES_TABLE(wxStaticText)
57f4f925 74 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 75 wxPROPERTY_FLAGS( WindowStyle , wxStaticTextStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 76wxEND_PROPERTIES_TABLE()
51741307 77
3ff066a4
SC
78wxBEGIN_HANDLERS_TABLE(wxStaticText)
79wxEND_HANDLERS_TABLE()
51741307 80
57f4f925 81wxCONSTRUCTOR_6( wxStaticText , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
51741307 82#else
2bda0e17 83IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl)
51741307 84#endif
2bda0e17 85
6dd16e4f
VZ
86bool wxStaticText::Create(wxWindow *parent,
87 wxWindowID id,
88 const wxString& label,
89 const wxPoint& pos,
90 const wxSize& size,
91 long style,
92 const wxString& name)
2bda0e17 93{
6dd16e4f 94 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
57f4f925 95 return false;
2bda0e17 96
6dd16e4f 97 if ( !MSWCreateControl(wxT("STATIC"), label, pos, size) )
57f4f925 98 return false;
2bda0e17 99
57f4f925 100 return true;
6dd16e4f 101}
c085e333 102
65bc172c
VZ
103wxBorder wxStaticText::GetDefaultBorder() const
104{
105 return wxBORDER_NONE;
106}
107
6dd16e4f
VZ
108WXDWORD wxStaticText::MSWGetStyle(long style, WXDWORD *exstyle) const
109{
110 WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
111
112 // translate the alignment flags to the Windows ones
113 //
114 // note that both wxALIGN_LEFT and SS_LEFT are equal to 0 so we shouldn't
115 // test for them using & operator
116 if ( style & wxALIGN_CENTRE )
117 msStyle |= SS_CENTER;
118 else if ( style & wxALIGN_RIGHT )
119 msStyle |= SS_RIGHT;
120 else
121 msStyle |= SS_LEFT;
122
42b1fb63
VZ
123 // this style is necessary to receive mouse events
124 msStyle |= SS_NOTIFY;
125
6dd16e4f 126 return msStyle;
2bda0e17
KB
127}
128
f68586e5 129wxSize wxStaticText::DoGetBestSize() const
2bda0e17 130{
8812e098 131 wxClientDC dc(wx_const_cast(wxStaticText *, this));
008881c3
JS
132 wxFont font(GetFont());
133 if (!font.Ok())
134 font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
7a0e7e55 135
008881c3 136 dc.SetFont(font);
8812e098
VZ
137
138 wxCoord widthTextMax, heightTextTotal;
32cd189d 139 dc.GetMultiLineTextExtent(GetLabelText(), &widthTextMax, &heightTextTotal);
8812e098 140
37b53d2a 141#ifdef __WXWINCE__
8812e098
VZ
142 if ( widthTextMax )
143 widthTextMax += 2;
144#endif // __WXWINCE__
145
7a0e7e55
VZ
146 // border takes extra space
147 //
148 // TODO: this is probably not wxStaticText-specific and should be moved
149 wxCoord border;
150 switch ( GetBorder() )
151 {
152 case wxBORDER_STATIC:
153 case wxBORDER_SIMPLE:
154 border = 1;
155 break;
156
157 case wxBORDER_SUNKEN:
158 border = 2;
159 break;
160
161 case wxBORDER_RAISED:
162 case wxBORDER_DOUBLE:
163 border = 3;
164 break;
165
166 default:
167 wxFAIL_MSG( _T("unknown border style") );
168 // fall through
169
170 case wxBORDER_NONE:
171 border = 0;
172 }
173
174 widthTextMax += 2*border;
175 heightTextTotal += 2*border;
176
31582e4e
RD
177 wxSize best(widthTextMax, heightTextTotal);
178 CacheBestSize(best);
179 return best;
2bda0e17
KB
180}
181
1e3a888e
VZ
182void wxStaticText::DoSetSize(int x, int y, int w, int h, int sizeFlags)
183{
184 // we need to refresh the window after changing its size as the standard
185 // control doesn't always update itself properly
186 wxStaticTextBase::DoSetSize(x, y, w, h, sizeFlags);
187
188 Refresh();
189}
190
c0e6c051
RD
191void wxStaticText::SetLabel(const wxString& label)
192{
193 wxStaticTextBase::SetLabel(label);
194
195 // adjust the size of the window to fit to the label unless autoresizing is
196 // disabled
197 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
198 {
9f884528 199 InvalidateBestSize();
57f4f925
WS
200 DoSetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDefaultCoord,
201 wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
c0e6c051
RD
202 }
203}
204
205
206bool wxStaticText::SetFont(const wxFont& font)
207{
208 bool ret = wxControl::SetFont(font);
209
210 // adjust the size of the window to fit to the label unless autoresizing is
211 // disabled
212 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
213 {
9f884528 214 InvalidateBestSize();
57f4f925
WS
215 DoSetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDefaultCoord,
216 wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
c0e6c051
RD
217 }
218
219 return ret;
220}
486fd225 221
1e6feb95 222#endif // wxUSE_STATTEXT