]>
git.saurik.com Git - wxWidgets.git/blob - src/stubs/stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticText
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "stattext.h"
17 #include "wx/stattext.h"
21 #if !USE_SHARED_LIBRARY
22 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
25 bool wxStaticText::Create(wxWindow
*parent
, wxWindowID id
,
26 const wxString
& label
,
33 if (parent
) parent
->AddChild(this);
35 SetBackgroundColour(parent
->GetBackgroundColour()) ;
36 SetForegroundColour(parent
->GetForegroundColour()) ;
39 m_windowId
= (int)NewControlId();
43 m_windowStyle
= style
;
45 SetFont(parent
->GetFont());
51 void wxStaticText::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
56 void wxStaticText::SetLabel(const wxString
& label
)