]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/stattext.cpp
undoing last change, widgets sample had slider label offset
[wxWidgets.git] / src / mac / carbon / stattext.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.cpp
3// Purpose: wxStaticText
a31a5f85 4// Author: Stefan Csomor
e9576ca5
SC
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "stattext.h"
14#endif
15
16#include "wx/app.h"
17#include "wx/stattext.h"
bedaf53e
SC
18#include "wx/notebook.h"
19#include "wx/tabctrl.h"
03e11df5
GD
20#include "wx/dc.h"
21#include "wx/dcclient.h"
00500f40 22#include "wx/utils.h"
f7035880 23#include "wx/settings.h"
e9576ca5
SC
24
25#include <stdio.h>
26
2f1ae414 27#if !USE_SHARED_LIBRARY
90b959ae 28IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl)
2f1ae414 29#endif
e9576ca5 30
d497dca4 31#include "wx/mac/uma.h"
519cb848 32
8208e181
SC
33bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
34 const wxString& label,
35 const wxPoint& pos,
36 const wxSize& size,
37 long style,
38 const wxString& name)
39{
facd6764
SC
40 m_macIsUserPane = FALSE ;
41
28c98a77 42 m_label = wxStripMenuCodes(label) ;
8208e181 43
b45ed7a2
VZ
44 if ( !wxControl::Create( parent, id, pos, size, style,
45 wxDefaultValidator , name ) )
46 {
47 return false;
48 }
49
facd6764
SC
50 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
51 wxMacCFStringHolder str(m_label,m_font.GetEncoding() ) ;
21fd5529 52 m_peer = new wxMacControl() ;
facd6764 53 verify_noerr(CreateStaticTextControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, str ,
5ca0d812 54 NULL , m_peer->GetControlRefAddr() ) ) ;
b8c140b8 55
facd6764 56 MacPostControlCreate(pos,size) ;
7595f381 57
facd6764 58 return true;
9714ffa0
SC
59}
60
facd6764 61wxSize wxStaticText::DoGetBestSize() const
8208e181 62{
facd6764 63 ControlFontStyleRec controlFont ;
5ca0d812 64 verify_noerr( m_peer->GetData<ControlFontStyleRec>(kControlEntireControl , kControlFontStyleTag , &controlFont ) ) ;
e40298d5 65
facd6764
SC
66 Point bounds ;
67 SInt16 baseline ;
68 wxMacCFStringHolder str(m_label , m_font.GetEncoding() ) ;
943b730f
SC
69 if ( m_font.MacGetThemeFontID() != kThemeCurrentPortFont )
70 verify_noerr( GetThemeTextDimensions( (m_label.Length() > 0 ? ((CFStringRef) str ) : CFSTR(" ") ) , m_font.MacGetThemeFontID() , kThemeStateActive , false , &bounds , &baseline ) ) ;
71 else
72 {
73 wxMacWindowStateSaver sv( this ) ;
74 ::TextFont( m_font.MacGetFontNum() ) ;
75 ::TextSize( (short)( m_font.MacGetFontSize()) ) ;
76 ::TextFace( m_font.MacGetFontStyle() ) ;
77 verify_noerr( GetThemeTextDimensions( (m_label.Length() > 0 ? ((CFStringRef) str ) : CFSTR(" ") ) , kThemeCurrentPortFont , kThemeStateActive , false , &bounds , &baseline ) ) ;
78 }
b1d7de5a
SC
79 if ( m_label.Length() == 0 )
80 bounds.h = 0 ;
d5375d25
SC
81
82 bounds.h += MacGetLeftBorderSize() + MacGetRightBorderSize() ;
83 bounds.v += MacGetTopBorderSize() + MacGetBottomBorderSize() ;
facd6764 84 return wxSize(bounds.h, bounds.v);
8208e181
SC
85}
86
facd6764 87void wxStaticText::SetLabel(const wxString& st )
e9576ca5 88{
2f1ae414 89
facd6764
SC
90 m_label = wxStripMenuCodes(st) ;
91
92 wxMacCFStringHolder str(m_label,m_font.GetEncoding() ) ;
93 CFStringRef ref = str ;
5ca0d812 94 verify_noerr( m_peer->SetData<CFStringRef>(kControlEntireControl , kControlStaticTextCFStringTag, ref ) ) ;
e9576ca5 95
c0e6c051
RD
96 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
97 {
9f884528 98 InvalidateBestSize();
c0e6c051 99 SetSize( GetBestSize() ) ;
c0e6c051 100 }
441b46ac 101 Refresh() ;
bb751cf9
RD
102 Update() ;
103}
104
c0e6c051
RD
105bool wxStaticText::SetFont(const wxFont& font)
106{
107 bool ret = wxControl::SetFont(font);
108
109 if ( ret )
110 {
111 if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
441b46ac
SC
112 {
113 InvalidateBestSize();
114 SetSize( GetBestSize() );
115 }
c0e6c051
RD
116 }
117
118 return ret;
119}