| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: stattext.cpp |
| 3 | // Purpose: wxStaticText |
| 4 | // Author: Stefan Csomor |
| 5 | // Modified by: |
| 6 | // Created: 04/01/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Stefan Csomor |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifdef __GNUG__ |
| 13 | #pragma implementation "stattext.h" |
| 14 | #endif |
| 15 | |
| 16 | #include "wx/app.h" |
| 17 | #include "wx/stattext.h" |
| 18 | #include "wx/notebook.h" |
| 19 | #include "wx/tabctrl.h" |
| 20 | #include "wx/dc.h" |
| 21 | #include "wx/dcclient.h" |
| 22 | #include "wx/utils.h" |
| 23 | #include "wx/settings.h" |
| 24 | |
| 25 | #include <stdio.h> |
| 26 | |
| 27 | #if !USE_SHARED_LIBRARY |
| 28 | IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) |
| 29 | #endif |
| 30 | |
| 31 | #include "wx/mac/uma.h" |
| 32 | |
| 33 | bool 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 | { |
| 40 | m_macIsUserPane = FALSE ; |
| 41 | |
| 42 | m_label = wxStripMenuCodes(label) ; |
| 43 | |
| 44 | if ( !wxControl::Create( parent, id, pos, size, style, |
| 45 | wxDefaultValidator , name ) ) |
| 46 | { |
| 47 | return false; |
| 48 | } |
| 49 | |
| 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 ) ) ; |
| 54 | |
| 55 | MacPostControlCreate(pos,size) ; |
| 56 | |
| 57 | return true; |
| 58 | } |
| 59 | |
| 60 | wxSize wxStaticText::DoGetBestSize() const |
| 61 | { |
| 62 | ControlFontStyleRec controlFont ; |
| 63 | Size outSize ; |
| 64 | verify_noerr( GetControlData( (ControlRef) m_macControl , kControlEntireControl , kControlFontStyleTag , sizeof(controlFont) , &controlFont , &outSize ) ) ; |
| 65 | |
| 66 | Point bounds ; |
| 67 | SInt16 baseline ; |
| 68 | wxMacCFStringHolder str(m_label , m_font.GetEncoding() ) ; |
| 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 | } |
| 79 | if ( m_label.Length() == 0 ) |
| 80 | bounds.h = 0 ; |
| 81 | return wxSize(bounds.h, bounds.v); |
| 82 | } |
| 83 | |
| 84 | void wxStaticText::SetLabel(const wxString& st ) |
| 85 | { |
| 86 | |
| 87 | m_label = wxStripMenuCodes(st) ; |
| 88 | |
| 89 | wxMacCFStringHolder str(m_label,m_font.GetEncoding() ) ; |
| 90 | CFStringRef ref = str ; |
| 91 | SetControlData( (ControlRef) m_macControl, kControlEntireControl , kControlStaticTextCFStringTag, sizeof( CFStringRef ), |
| 92 | &ref ); |
| 93 | |
| 94 | if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) ) |
| 95 | SetSize( GetBestSize() ) ; |
| 96 | |
| 97 | Update() ; |
| 98 | } |
| 99 | |
| 100 | bool wxStaticText::SetFont(const wxFont& font) |
| 101 | { |
| 102 | bool ret = wxControl::SetFont(font); |
| 103 | |
| 104 | if ( ret ) |
| 105 | { |
| 106 | if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) ) |
| 107 | SetSize( GetBestSize() ); |
| 108 | } |
| 109 | |
| 110 | return ret; |
| 111 | } |