]>
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "stattext.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/dcclient.h"
30 #include "wx/settings.h"
33 #include "wx/stattext.h"
34 #include "wx/msw/private.h"
36 #if wxUSE_EXTENDED_RTTI
37 WX_DEFINE_FLAGS( wxStaticTextStyle
)
39 wxBEGIN_FLAGS( wxStaticTextStyle
)
40 // new style border flags, we put them first to
41 // use them for streaming out
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
)
49 // old style border flags
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
)
55 wxFLAGS_MEMBER(wxBORDER
)
57 // standard window styles
58 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
59 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
60 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
61 wxFLAGS_MEMBER(wxWANTS_CHARS
)
62 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
63 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
64 wxFLAGS_MEMBER(wxVSCROLL
)
65 wxFLAGS_MEMBER(wxHSCROLL
)
67 wxFLAGS_MEMBER(wxST_NO_AUTORESIZE
)
68 wxFLAGS_MEMBER(wxALIGN_LEFT
)
69 wxFLAGS_MEMBER(wxALIGN_RIGHT
)
70 wxFLAGS_MEMBER(wxALIGN_CENTRE
)
72 wxEND_FLAGS( wxStaticTextStyle
)
74 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticText
, wxControl
,"wx/stattext.h")
76 wxBEGIN_PROPERTIES_TABLE(wxStaticText
)
77 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
78 wxPROPERTY_FLAGS( WindowStyle
, wxStaticTextStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
79 wxEND_PROPERTIES_TABLE()
81 wxBEGIN_HANDLERS_TABLE(wxStaticText
)
82 wxEND_HANDLERS_TABLE()
84 wxCONSTRUCTOR_6( wxStaticText
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Label
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
86 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
89 bool wxStaticText::Create(wxWindow
*parent
,
91 const wxString
& label
,
97 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
100 if ( !MSWCreateControl(wxT("STATIC"), label
, pos
, size
) )
106 wxBorder
wxStaticText::GetDefaultBorder() const
108 return wxBORDER_NONE
;
111 WXDWORD
wxStaticText::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
113 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
115 // translate the alignment flags to the Windows ones
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
)
129 wxSize
wxStaticText::DoGetBestSize() const
131 wxClientDC
dc(wx_const_cast(wxStaticText
*, this));
132 wxFont
font(GetFont());
134 font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
138 wxCoord widthTextMax
, heightTextTotal
;
139 dc
.GetMultiLineTextExtent(GetLabel(), &widthTextMax
, &heightTextTotal
);
144 #endif // __WXWINCE__
146 wxSize
best(widthTextMax
, heightTextTotal
);
151 void wxStaticText::DoSetSize(int x
, int y
, int w
, int h
, int sizeFlags
)
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
);
160 void wxStaticText::SetLabel(const wxString
& label
)
162 wxStaticTextBase::SetLabel(label
);
164 // adjust the size of the window to fit to the label unless autoresizing is
166 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
168 InvalidateBestSize();
169 DoSetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
,
170 wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
175 bool wxStaticText::SetFont(const wxFont
& font
)
177 bool ret
= wxControl::SetFont(font
);
179 // adjust the size of the window to fit to the label unless autoresizing is
181 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
183 InvalidateBestSize();
184 DoSetSize(wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
, wxDefaultCoord
,
185 wxSIZE_AUTO_WIDTH
| wxSIZE_AUTO_HEIGHT
);
191 #endif // wxUSE_STATTEXT