]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/stattext.cpp
3 // Purpose: wxStaticText
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/stattext.h"
27 #include "wx/dcclient.h"
28 #include "wx/settings.h"
31 #include "wx/msw/private.h"
33 #if wxUSE_EXTENDED_RTTI
34 WX_DEFINE_FLAGS( wxStaticTextStyle
)
36 wxBEGIN_FLAGS( wxStaticTextStyle
)
37 // new style border flags, we put them first to
38 // use them for streaming out
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
)
46 // old style border flags
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
)
52 wxFLAGS_MEMBER(wxBORDER
)
54 // standard window styles
55 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
56 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
57 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
58 wxFLAGS_MEMBER(wxWANTS_CHARS
)
59 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
60 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
61 wxFLAGS_MEMBER(wxVSCROLL
)
62 wxFLAGS_MEMBER(wxHSCROLL
)
64 wxFLAGS_MEMBER(wxST_NO_AUTORESIZE
)
65 wxFLAGS_MEMBER(wxALIGN_LEFT
)
66 wxFLAGS_MEMBER(wxALIGN_RIGHT
)
67 wxFLAGS_MEMBER(wxALIGN_CENTRE
)
69 wxEND_FLAGS( wxStaticTextStyle
)
71 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticText
, wxControl
,"wx/stattext.h")
73 wxBEGIN_PROPERTIES_TABLE(wxStaticText
)
74 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
75 wxPROPERTY_FLAGS( WindowStyle
, wxStaticTextStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
76 wxEND_PROPERTIES_TABLE()
78 wxBEGIN_HANDLERS_TABLE(wxStaticText
)
79 wxEND_HANDLERS_TABLE()
81 wxCONSTRUCTOR_6( wxStaticText
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Label
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
83 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
86 bool wxStaticText::Create(wxWindow
*parent
,
88 const wxString
& label
,
94 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
97 if ( !MSWCreateControl(wxT("STATIC"), label
, pos
, size
) )
103 wxBorder
wxStaticText::GetDefaultBorder() const
105 return wxBORDER_NONE
;
108 WXDWORD
wxStaticText::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
110 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
112 // translate the alignment flags to the Windows ones
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
)
123 // this style is necessary to receive mouse events
124 // Win NT and later have the SS_ENDELLIPSIS style which is useful to us:
125 if (wxGetOsVersion() == wxOS_WINDOWS_NT
)
127 // for now, add the SS_ENDELLIPSIS style if wxST_ELLIPSIZE_END is given;
128 // we may need to remove it later in ::SetLabel() if the given label
130 if ( style
& wxST_ELLIPSIZE_END
)
131 msStyle
|= SS_ENDELLIPSIS
;
134 msStyle
|= SS_NOTIFY
;
139 wxSize
wxStaticText::DoGetBestSize() const
141 wxClientDC
dc(wx_const_cast(wxStaticText
*, this));
142 wxFont
font(GetFont());
144 font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
148 wxCoord widthTextMax
, heightTextTotal
;
149 dc
.GetMultiLineTextExtent(GetLabelText(), &widthTextMax
, &heightTextTotal
);
154 #endif // __WXWINCE__
156 // border takes extra space
158 // TODO: this is probably not wxStaticText-specific and should be moved
160 switch ( GetBorder() )
162 case wxBORDER_STATIC
:
163 case wxBORDER_SIMPLE
:
167 case wxBORDER_SUNKEN
:
171 case wxBORDER_RAISED
:
172 case wxBORDER_DOUBLE
:
177 wxFAIL_MSG( _T("unknown border style") );
184 widthTextMax
+= 2*border
;
185 heightTextTotal
+= 2*border
;
187 wxSize
best(widthTextMax
, heightTextTotal
);
192 void wxStaticText::DoSetSize(int x
, int y
, int w
, int h
, int sizeFlags
)
194 // note: we first need to set the size and _then_ call UpdateLabel
195 wxStaticTextBase::DoSetSize(x
, y
, w
, h
, sizeFlags
);
197 // do we need to ellipsize the contents?
198 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
199 if ( !(styleReal
& SS_ENDELLIPSIS
) )
201 // we don't have SS_ENDELLIPSIS style:
202 // we need to (eventually) do ellipsization ourselves
205 //else: we don't or the OS will do it for us
207 // we need to refresh the window after changing its size as the standard
208 // control doesn't always update itself properly
212 void wxStaticText::SetLabel(const wxString
& label
)
214 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
215 if ( HasFlag(wxST_ELLIPSIZE_END
) &&
216 wxGetOsVersion() == wxOS_WINDOWS_NT
)
218 // adding SS_ENDELLIPSIS or SS_ENDELLIPSIS "disables" the correct
219 // newline handling in static texts: the newlines in the labels are
220 // shown as square. Thus we don't use it even on newer OS when
221 // the static label contains a newline.
222 if ( label
.Contains(wxT('\n')) )
223 styleReal
&= ~SS_ENDELLIPSIS
;
225 styleReal
|= SS_ENDELLIPSIS
;
227 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
229 else // style not supported natively
231 styleReal
&= ~SS_ENDELLIPSIS
;
232 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
235 // this call will save the label in m_labelOrig and set it into this window
236 // (through wxWindow::SetLabel)
239 if ((styleReal
& SS_ENDELLIPSIS
) == 0)
240 DoSetLabel(GetEllipsizedLabelWithoutMarkup());
242 DoSetLabel(RemoveMarkup(label
));
244 // adjust the size of the window to fit to the label unless autoresizing is
246 if ( !HasFlag(wxST_NO_AUTORESIZE
) &&
247 !IsEllipsized() ) // if ellipsize is ON, then we don't want to get resized!
249 InvalidateBestSize();
250 DoSetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
,
251 wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
255 bool wxStaticText::SetFont(const wxFont
& font
)
257 bool ret
= wxControl::SetFont(font
);
259 // adjust the size of the window to fit to the label unless autoresizing is
261 if ( !HasFlag(wxST_NO_AUTORESIZE
) )
263 InvalidateBestSize();
264 DoSetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
,
265 wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
271 // for wxST_ELLIPSIZE_* support:
273 wxString
wxStaticText::DoGetLabel() const
275 return wxGetWindowText(GetHwnd());
278 void wxStaticText::DoSetLabel(const wxString
& str
)
280 SetWindowText(GetHwnd(), str
.c_str());
284 #endif // wxUSE_STATTEXT