]>
git.saurik.com Git - wxWidgets.git/blob - src/univ/stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: univ/stattext.cpp
3 // Purpose: wxStaticText
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
29 #include "wx/dcclient.h"
30 #include "wx/stattext.h"
31 #include "wx/validate.h"
34 #include "wx/univ/renderer.h"
35 #include "wx/univ/theme.h"
37 // ============================================================================
39 // ============================================================================
41 IMPLEMENT_ABSTRACT_CLASS(wxStaticText
, wxControl
)
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 bool wxStaticText::Create(wxWindow
*parent
,
49 const wxString
&label
,
55 if ( !wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 void wxStaticText::SetLabel(const wxString
& label
)
70 wxControl::SetLabel(label
);
73 wxSize
wxStaticText::DoGetBestClientSize() const
75 wxStaticText
*self
= wxConstCast(this, wxStaticText
);
77 dc
.SetFont(GetFont());
78 wxCoord width
, height
;
79 dc
.GetMultiLineTextExtent(GetLabel(), &width
, &height
);
81 return wxSize(width
, height
);
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 void wxStaticText::DoDraw(wxControlRenderer
*renderer
)
90 renderer
->DrawLabel();
93 #endif // wxUSE_STATTEXT