1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticText
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "stattext.h"
17 #include "wx/stattext.h"
18 #include "wx/notebook.h"
19 #include "wx/tabctrl.h"
21 #include "wx/dcclient.h"
23 #include "wx/settings.h"
27 #if !USE_SHARED_LIBRARY
28 IMPLEMENT_DYNAMIC_CLASS(wxStaticText
, wxControl
)
31 #include "wx/mac/uma.h"
33 bool wxStaticText::Create(wxWindow
*parent
, wxWindowID id
,
34 const wxString
& label
,
40 m_macIsUserPane
= FALSE
;
42 m_label
= wxStripMenuCodes(label
) ;
44 if ( !wxControl::Create( parent
, id
, pos
, size
, style
,
45 wxDefaultValidator
, name
) )
50 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
51 wxMacCFStringHolder
str(m_label
,m_font
.GetEncoding() ) ;
52 verify_noerr(CreateStaticTextControl(MAC_WXHWND(parent
->MacGetTopLevelWindowRef()),&bounds
, str
,
53 NULL
, (ControlRef
*)&m_macControl
) ) ;
55 MacPostControlCreate(pos
,size
) ;
60 wxSize
wxStaticText::DoGetBestSize() const
62 ControlFontStyleRec controlFont
;
64 verify_noerr( GetControlData( (ControlRef
) m_macControl
, kControlEntireControl
, kControlFontStyleTag
, sizeof(controlFont
) , &controlFont
, &outSize
) ) ;
68 wxMacCFStringHolder
str(m_label
, m_font
.GetEncoding() ) ;
69 verify_noerr( GetThemeTextDimensions( str
, m_font
.MacGetThemeFontID() , kThemeStateActive
, false , &bounds
, &baseline
) ) ;
71 return wxSize(bounds
.h
, bounds
.v
);
74 void wxStaticText::SetLabel(const wxString
& st
)
77 m_label
= wxStripMenuCodes(st
) ;
79 wxMacCFStringHolder
str(m_label
,m_font
.GetEncoding() ) ;
80 CFStringRef ref
= str
;
81 SetControlData( (ControlRef
) m_macControl
, kControlEntireControl
, kControlStaticTextCFStringTag
, sizeof( CFStringRef
),
84 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
85 SetSize( GetBestSize() ) ;
90 bool wxStaticText::SetFont(const wxFont
& font
)
92 bool ret
= wxControl::SetFont(font
);
96 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
97 SetSize( GetBestSize() );