]>
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 Vadim Zeitlin
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "univstattext.h"
24 #include "wx/wxprec.h"
33 #include "wx/dcclient.h"
34 #include "wx/stattext.h"
35 #include "wx/validate.h"
38 #include "wx/univ/renderer.h"
39 #include "wx/univ/theme.h"
41 // ============================================================================
43 // ============================================================================
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 bool wxStaticText::Create(wxWindow
*parent
,
51 const wxString
&label
,
57 if ( !wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 void wxStaticText::SetLabel(const wxString
& label
)
72 wxControl::SetLabel(label
);
75 wxSize
wxStaticText::DoGetBestClientSize() const
77 wxStaticText
*self
= wxConstCast(this, wxStaticText
);
79 dc
.SetFont(GetFont());
80 wxCoord width
, height
;
81 dc
.GetMultiLineTextExtent(GetLabel(), &width
, &height
);
83 return wxSize(width
, height
);
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 void wxStaticText::DoDraw(wxControlRenderer
*renderer
)
92 renderer
->DrawLabel();
95 #endif // wxUSE_STATTEXT