]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/font.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/font.h
3 // Purpose: wxFont class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 DECLARE_WXCOCOA_OBJC_CLASS(NSFont
);
21 // Internal class that bridges us with code like wxSystemSettings
22 class wxCocoaFontFactory
;
23 // We have c-tors/methods taking pointers of these
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.
31 See the documentation in src/cocoa/font.mm for more implementatoin details.
33 class WXDLLIMPEXP_CORE wxFont
: public wxFontBase
35 friend class wxCocoaFontFactory
;
37 /*! @abstract Default construction of invalid font for 2-step construct then Create process.
41 /*! @abstract Platform-independent construction with individual properties
43 #if FUTURE_WXWIN_COMPATIBILITY_3_0
48 bool underlined
= FALSE
,
49 const wxString
& face
= wxEmptyString
,
50 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
52 (void)Create(size
, (wxFontFamily
)family
, (wxFontStyle
)style
, (wxFontWeight
)weight
, underlined
, face
, encoding
);
59 bool underlined
= FALSE
,
60 const wxString
& face
= wxEmptyString
,
61 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
63 (void)Create(size
, family
, style
, weight
, underlined
, face
, encoding
);
66 wxFont(const wxSize
& pixelSize
,
70 bool underlined
= false,
71 const wxString
& face
= wxEmptyString
,
72 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
74 Create(10, family
, style
, weight
, underlined
, face
, encoding
);
75 SetPixelSize(pixelSize
);
80 int flags
= wxFONTFLAG_DEFAULT
,
81 const wxString
& face
= wxEmptyString
,
82 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
84 Create(pointSize
, family
,
85 GetStyleFromFlags(flags
),
86 GetWeightFromFlags(flags
),
87 GetUnderlinedFromFlags(flags
),
91 /*! @abstract Construction with opaque wxNativeFontInfo
93 wxFont(const wxNativeFontInfo
& info
)
98 /*! @abstract Construction with platform-dependent font descriptor string.
99 @param fontDesc Usually the result of wxNativeFontInfo::ToUserString()
101 wxFont(const wxString
& fontDesc
);
103 // NOTE: Copy c-tor and assignment from wxObject is fine
105 bool Create(int size
,
109 bool underlined
= FALSE
,
110 const wxString
& face
= wxEmptyString
,
111 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
113 bool Create(const wxNativeFontInfo
& info
);
117 // implement base class pure virtuals
118 virtual int GetPointSize() const;
119 virtual wxFontStyle
GetStyle() const;
120 virtual wxFontWeight
GetWeight() const;
121 virtual bool GetUnderlined() const;
122 virtual wxString
GetFaceName() const;
123 virtual wxFontEncoding
GetEncoding() const;
124 virtual const wxNativeFontInfo
*GetNativeFontInfo() const;
126 virtual void SetPointSize(int pointSize
);
127 virtual void SetFamily(wxFontFamily family
);
128 virtual void SetStyle(wxFontStyle style
);
129 virtual void SetWeight(wxFontWeight weight
);
130 virtual bool SetFaceName(const wxString
& faceName
);
131 virtual void SetUnderlined(bool underlined
);
132 virtual void SetEncoding(wxFontEncoding encoding
);
134 wxDECLARE_COMMON_FONT_METHODS();
136 // implementation only from now on
137 // -------------------------------
139 /*! @abstract Defined on some ports (not including this one) in wxGDIObject
141 The intention here I suppose is to allow one to create a wxFont without yet
142 creating the underlying native object. There's no point not to create the
143 NSFont immediately in wxCocoa so this is useless.
144 This method came from the stub code copied in the early days of wxCocoa.
145 FIXME(1): Remove this in trunk. FIXME(2): Is it really a good idea for this to
146 be part of the public API for wxGDIObject?
148 virtual bool RealizeResource();
151 /*! @abstract Internal constructor with ref data
153 Takes ownership of @a refData. That is, it is assumed that refData has either just been
154 created using new (which initializes its m_refCount to 1) or if you are sharing a ref that
155 you have called IncRef on it before passing it to this method.
157 explicit wxFont(wxFontRefData
*refData
)
159 bool Create(wxFontRefData
*refData
);
161 virtual wxGDIRefData
*CreateGDIRefData() const;
162 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
164 virtual wxFontFamily
DoGetFamily() const;
167 DECLARE_DYNAMIC_CLASS(wxFont
)