]> git.saurik.com Git - wxWidgets.git/blame - src/msw/stattext.cpp
Replaced some images
[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
14f355c2 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
2bda0e17
KB
13#pragma implementation "stattext.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
1e6feb95
VZ
23#if wxUSE_STATTEXT
24
2bda0e17 25#ifndef WX_PRECOMP
ac10c957
VZ
26 #include "wx/event.h"
27 #include "wx/app.h"
28 #include "wx/brush.h"
29 #include "wx/dcclient.h"
30 #include "wx/settings.h"
2bda0e17
KB
31#endif
32
33#include "wx/stattext.h"
34#include "wx/msw/private.h"
2bda0e17 35
51741307 36#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
37WX_DEFINE_FLAGS( wxStaticTextStyle )
38
3ff066a4 39wxBEGIN_FLAGS( wxStaticTextStyle )
bc9fb572
JS
40 // new style border flags, we put them first to
41 // use them for streaming out
3ff066a4
SC
42 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
43 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
44 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
45 wxFLAGS_MEMBER(wxBORDER_RAISED)
46 wxFLAGS_MEMBER(wxBORDER_STATIC)
47 wxFLAGS_MEMBER(wxBORDER_NONE)
57f4f925 48
bc9fb572 49 // old style border flags
3ff066a4
SC
50 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
51 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
52 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
53 wxFLAGS_MEMBER(wxRAISED_BORDER)
54 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 55 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
56
57 // standard window styles
3ff066a4
SC
58 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
59 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
60 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
61 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 62 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
63 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
64 wxFLAGS_MEMBER(wxVSCROLL)
65 wxFLAGS_MEMBER(wxHSCROLL)
66
67 wxFLAGS_MEMBER(wxST_NO_AUTORESIZE)
68 wxFLAGS_MEMBER(wxALIGN_LEFT)
69 wxFLAGS_MEMBER(wxALIGN_RIGHT)
70 wxFLAGS_MEMBER(wxALIGN_CENTRE)
71
72wxEND_FLAGS( wxStaticTextStyle )
bc9fb572 73
51741307
SC
74IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticText, wxControl,"wx/stattext.h")
75
3ff066a4 76wxBEGIN_PROPERTIES_TABLE(wxStaticText)
57f4f925 77 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
af498247 78 wxPROPERTY_FLAGS( WindowStyle , wxStaticTextStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 79wxEND_PROPERTIES_TABLE()
51741307 80
3ff066a4
SC
81wxBEGIN_HANDLERS_TABLE(wxStaticText)
82wxEND_HANDLERS_TABLE()
51741307 83
57f4f925 84wxCONSTRUCTOR_6( wxStaticText , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
51741307 85#else
2bda0e17 86IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl)
51741307 87#endif
2bda0e17 88
6dd16e4f
VZ
89bool wxStaticText::Create(wxWindow *parent,
90 wxWindowID id,
91 const wxString& label,
92 const wxPoint& pos,
93 const wxSize& size,
94 long style,
95 const wxString& name)
2bda0e17 96{
6dd16e4f 97 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
57f4f925 98 return false;
2bda0e17 99
6dd16e4f 100 if ( !MSWCreateControl(wxT("STATIC"), label, pos, size) )
57f4f925 101 return false;
2bda0e17 102
57f4f925 103 return true;
6dd16e4f 104}
c085e333 105
65bc172c
VZ
106wxBorder wxStaticText::GetDefaultBorder() const
107{
108 return wxBORDER_NONE;
109}
110
6dd16e4f
VZ
111WXDWORD wxStaticText::MSWGetStyle(long style, WXDWORD *exstyle) const
112{
113 WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
114
115 // translate the alignment flags to the Windows ones
116 //
117 // note that both wxALIGN_LEFT and SS_LEFT are equal to 0 so we shouldn't
118 // test for them using & operator
119 if ( style & wxALIGN_CENTRE )
120 msStyle |= SS_CENTER;
121 else if ( style & wxALIGN_RIGHT )
122 msStyle |= SS_RIGHT;
123 else
124 msStyle |= SS_LEFT;
125
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);
135
136 dc.SetFont(font);
8812e098
VZ
137
138 wxCoord widthTextMax, heightTextTotal;
139 dc.GetMultiLineTextExtent(GetLabel(), &widthTextMax, &heightTextTotal);
140
37b53d2a 141#ifdef __WXWINCE__
8812e098
VZ
142 if ( widthTextMax )
143 widthTextMax += 2;
144#endif // __WXWINCE__
145
31582e4e
RD
146 wxSize best(widthTextMax, heightTextTotal);
147 CacheBestSize(best);
148 return best;
2bda0e17
KB
149}
150
1e3a888e
VZ
151void wxStaticText::DoSetSize(int x, int y, int w, int h, int sizeFlags)
152{
153 // we need to refresh the window after changing its size as the standard
154 // control doesn't always update itself properly
155 wxStaticTextBase::DoSetSize(x, y, w, h, sizeFlags);
156
157 Refresh();
158}
159
c0e6c051
RD
160void wxStaticText::SetLabel(const wxString& label)
161{
162 wxStaticTextBase::SetLabel(label);
163
164 // adjust the size of the window to fit to the label unless autoresizing is
165 // disabled
166 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
167 {
9f884528 168 InvalidateBestSize();
57f4f925
WS
169 DoSetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDefaultCoord,
170 wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
c0e6c051
RD
171 }
172}
173
174
175bool wxStaticText::SetFont(const wxFont& font)
176{
177 bool ret = wxControl::SetFont(font);
178
179 // adjust the size of the window to fit to the label unless autoresizing is
180 // disabled
181 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
182 {
9f884528 183 InvalidateBestSize();
57f4f925
WS
184 DoSetSize(wxDefaultCoord, wxDefaultCoord, wxDefaultCoord, wxDefaultCoord,
185 wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT);
c0e6c051
RD
186 }
187
188 return ret;
189}
486fd225 190
1e6feb95 191#endif // wxUSE_STATTEXT