]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/font.h
Make wxGCDC::GetGraphicsContext() const.
[wxWidgets.git] / include / wx / cocoa / font.h
CommitLineData
a24aff65 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/cocoa/font.h
a24aff65
DE
3// Purpose: wxFont class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
a24aff65
DE
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FONT_H_
13#define _WX_FONT_H_
14
a24aff65
DE
15// ----------------------------------------------------------------------------
16// wxFont
17// ----------------------------------------------------------------------------
18
51146826
DE
19DECLARE_WXCOCOA_OBJC_CLASS(NSFont);
20
21// Internal class that bridges us with code like wxSystemSettings
22class wxCocoaFontFactory;
23// We have c-tors/methods taking pointers of these
24class wxFontRefData;
25
26/*! @discussion
27 wxCocoa's implementation of wxFont is very incomplete. In particular,
28 a lot of work needs to be done on wxNativeFontInfo which is currently
29 using the totally generic implementation.
30
31 See the documentation in src/cocoa/font.mm for more implementatoin details.
32 */
53a2db12 33class WXDLLIMPEXP_CORE wxFont : public wxFontBase
a24aff65 34{
51146826 35 friend class wxCocoaFontFactory;
a24aff65 36public:
51146826
DE
37 /*! @abstract Default construction of invalid font for 2-step construct then Create process.
38 */
f8855e47 39 wxFont() { }
a24aff65 40
51146826
DE
41 /*! @abstract Platform-independent construction with individual properties
42 */
0c14b6c3 43#if FUTURE_WXWIN_COMPATIBILITY_3_0
a24aff65
DE
44 wxFont(int size,
45 int family,
46 int style,
47 int weight,
48 bool underlined = FALSE,
49 const wxString& face = wxEmptyString,
50 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
0c14b6c3
FM
51 {
52 (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
53 }
54#endif
55 wxFont(int size,
56 wxFontFamily family,
57 wxFontStyle style,
58 wxFontWeight weight,
59 bool underlined = FALSE,
60 const wxString& face = wxEmptyString,
61 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
a24aff65 62 {
a24aff65
DE
63 (void)Create(size, family, style, weight, underlined, face, encoding);
64 }
03647350 65
b5791cc7
FM
66 wxFont(const wxSize& pixelSize,
67 wxFontFamily family,
68 wxFontStyle style,
69 wxFontWeight weight,
70 bool underlined = false,
71 const wxString& face = wxEmptyString,
72 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
73 {
74 Create(10, family, style, weight, underlined, face, encoding);
75 SetPixelSize(pixelSize);
76 }
03647350 77
51146826
DE
78 /*! @abstract Construction with opaque wxNativeFontInfo
79 */
a24aff65
DE
80 wxFont(const wxNativeFontInfo& info)
81 {
a24aff65
DE
82 (void)Create(info);
83 }
84
51146826
DE
85 /*! @abstract Construction with platform-dependent font descriptor string.
86 @param fontDesc Usually the result of wxNativeFontInfo::ToUserString()
87 */
a24aff65
DE
88 wxFont(const wxString& fontDesc);
89
51146826
DE
90 // NOTE: Copy c-tor and assignment from wxObject is fine
91
a24aff65 92 bool Create(int size,
0c14b6c3
FM
93 wxFontFamily family,
94 wxFontStyle style,
95 wxFontWeight weight,
a24aff65
DE
96 bool underlined = FALSE,
97 const wxString& face = wxEmptyString,
98 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
99
100 bool Create(const wxNativeFontInfo& info);
101
102 virtual ~wxFont();
103
a24aff65
DE
104 // implement base class pure virtuals
105 virtual int GetPointSize() const;
0c14b6c3
FM
106 virtual wxFontStyle GetStyle() const;
107 virtual wxFontWeight GetWeight() const;
a24aff65
DE
108 virtual bool GetUnderlined() const;
109 virtual wxString GetFaceName() const;
110 virtual wxFontEncoding GetEncoding() const;
3bf5a59b 111 virtual const wxNativeFontInfo *GetNativeFontInfo() const;
a24aff65
DE
112
113 virtual void SetPointSize(int pointSize);
0c14b6c3
FM
114 virtual void SetFamily(wxFontFamily family);
115 virtual void SetStyle(wxFontStyle style);
116 virtual void SetWeight(wxFontWeight weight);
85ab460e 117 virtual bool SetFaceName(const wxString& faceName);
a24aff65
DE
118 virtual void SetUnderlined(bool underlined);
119 virtual void SetEncoding(wxFontEncoding encoding);
120
f76c0758 121 wxDECLARE_COMMON_FONT_METHODS();
0c14b6c3 122
a24aff65
DE
123 // implementation only from now on
124 // -------------------------------
125
51146826
DE
126 /*! @abstract Defined on some ports (not including this one) in wxGDIObject
127 @discussion
128 The intention here I suppose is to allow one to create a wxFont without yet
129 creating the underlying native object. There's no point not to create the
130 NSFont immediately in wxCocoa so this is useless.
131 This method came from the stub code copied in the early days of wxCocoa.
132 FIXME(1): Remove this in trunk. FIXME(2): Is it really a good idea for this to
133 be part of the public API for wxGDIObject?
134 */
a24aff65
DE
135 virtual bool RealizeResource();
136
137protected:
51146826
DE
138 /*! @abstract Internal constructor with ref data
139 @discussion
140 Takes ownership of @a refData. That is, it is assumed that refData has either just been
141 created using new (which initializes its m_refCount to 1) or if you are sharing a ref that
142 you have called IncRef on it before passing it to this method.
143 */
144 explicit wxFont(wxFontRefData *refData)
145 { Create(refData); }
146 bool Create(wxFontRefData *refData);
8f884a0d
VZ
147
148 virtual wxGDIRefData *CreateGDIRefData() const;
149 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
150
59b7da02
VZ
151 virtual wxFontFamily DoGetFamily() const;
152
a24aff65
DE
153private:
154 DECLARE_DYNAMIC_CLASS(wxFont)
155};
156
157#endif
158 // _WX_FONT_H_