]>
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 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 IMPLEMENT_ABSTRACT_CLASS(wxStaticText
, wxControl
)
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 bool wxStaticText::Create(wxWindow
*parent
,
53 const wxString
&label
,
59 if ( !wxControl::Create(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 void wxStaticText::SetLabel(const wxString
& label
)
74 wxControl::SetLabel(label
);
77 wxSize
wxStaticText::DoGetBestClientSize() const
79 wxStaticText
*self
= wxConstCast(this, wxStaticText
);
81 dc
.SetFont(GetFont());
82 wxCoord width
, height
;
83 dc
.GetMultiLineTextExtent(GetLabel(), &width
, &height
);
85 return wxSize(width
, height
);
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 void wxStaticText::DoDraw(wxControlRenderer
*renderer
)
94 renderer
->DrawLabel();
97 #endif // wxUSE_STATTEXT