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 m_peer
= new wxMacControl() ;
53 verify_noerr(CreateStaticTextControl(MAC_WXHWND(parent
->MacGetTopLevelWindowRef()),&bounds
, str
,
56 MacPostControlCreate(pos
,size
) ;
61 wxSize
wxStaticText::DoGetBestSize() const
63 ControlFontStyleRec controlFont
;
65 verify_noerr( GetControlData( *m_peer
, kControlEntireControl
, kControlFontStyleTag
, sizeof(controlFont
) , &controlFont
, &outSize
) ) ;
69 wxMacCFStringHolder
str(m_label
, m_font
.GetEncoding() ) ;
70 if ( m_font
.MacGetThemeFontID() != kThemeCurrentPortFont
)
71 verify_noerr( GetThemeTextDimensions( (m_label
.Length() > 0 ? ((CFStringRef
) str
) : CFSTR(" ") ) , m_font
.MacGetThemeFontID() , kThemeStateActive
, false , &bounds
, &baseline
) ) ;
74 wxMacWindowStateSaver
sv( this ) ;
75 ::TextFont( m_font
.MacGetFontNum() ) ;
76 ::TextSize( (short)( m_font
.MacGetFontSize()) ) ;
77 ::TextFace( m_font
.MacGetFontStyle() ) ;
78 verify_noerr( GetThemeTextDimensions( (m_label
.Length() > 0 ? ((CFStringRef
) str
) : CFSTR(" ") ) , kThemeCurrentPortFont
, kThemeStateActive
, false , &bounds
, &baseline
) ) ;
80 if ( m_label
.Length() == 0 )
82 return wxSize(bounds
.h
, bounds
.v
);
85 void wxStaticText::SetLabel(const wxString
& st
)
88 m_label
= wxStripMenuCodes(st
) ;
90 wxMacCFStringHolder
str(m_label
,m_font
.GetEncoding() ) ;
91 CFStringRef ref
= str
;
92 SetControlData( *m_peer
, kControlEntireControl
, kControlStaticTextCFStringTag
, sizeof( CFStringRef
),
95 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
97 SetSize( GetBestSize() ) ;
98 SetSizeHints(GetSize());
104 bool wxStaticText::SetFont(const wxFont
& font
)
106 bool ret
= wxControl::SetFont(font
);
110 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE
) )
112 SetSize( GetBestSize() );
113 SetSizeHints(GetSize());