]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: font.h | |
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 |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FONT_H_ | |
13 | #define _WX_FONT_H_ | |
14 | ||
8cf73271 SC |
15 | // ---------------------------------------------------------------------------- |
16 | // wxFont | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxFont : public wxFontBase | |
20 | { | |
21 | public: | |
22 | // ctors and such | |
f8855e47 | 23 | wxFont() { } |
8cf73271 SC |
24 | |
25 | wxFont(int size, | |
26 | int family, | |
27 | int style, | |
28 | int weight, | |
29 | bool underlined = FALSE, | |
30 | const wxString& face = wxEmptyString, | |
31 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
32 | { | |
8cf73271 SC |
33 | (void)Create(size, family, style, weight, underlined, face, encoding); |
34 | } | |
35 | ||
36 | wxFont(const wxNativeFontInfo& info) | |
37 | { | |
8cf73271 SC |
38 | (void)Create(info); |
39 | } | |
40 | ||
41 | wxFont(const wxString& fontDesc); | |
42 | ||
43 | bool Create(int size, | |
44 | int family, | |
45 | int style, | |
46 | int weight, | |
47 | bool underlined = FALSE, | |
48 | const wxString& face = wxEmptyString, | |
49 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
50 | ||
51 | bool Create(const wxNativeFontInfo& info); | |
52 | ||
4f305456 SC |
53 | bool MacCreateThemeFont( wxUint16 themeFontID ) ; |
54 | ||
8cf73271 SC |
55 | virtual ~wxFont(); |
56 | ||
8cf73271 SC |
57 | // implement base class pure virtuals |
58 | virtual int GetPointSize() const; | |
ccd67a6a | 59 | virtual wxSize GetPixelSize() const; |
8cf73271 SC |
60 | virtual int GetFamily() const; |
61 | virtual int GetStyle() const; | |
62 | virtual int GetWeight() const; | |
63 | virtual bool GetUnderlined() const; | |
64 | virtual wxString GetFaceName() const; | |
65 | virtual wxFontEncoding GetEncoding() const; | |
66 | virtual const wxNativeFontInfo *GetNativeFontInfo() const; | |
67 | ||
68 | virtual void SetPointSize(int pointSize); | |
69 | virtual void SetFamily(int family); | |
70 | virtual void SetStyle(int style); | |
71 | virtual void SetWeight(int weight); | |
85ab460e | 72 | virtual bool SetFaceName(const wxString& faceName); |
8cf73271 SC |
73 | virtual void SetUnderlined(bool underlined); |
74 | virtual void SetEncoding(wxFontEncoding encoding); | |
75 | ||
76 | // implementation only from now on | |
77 | // ------------------------------- | |
78 | ||
79 | virtual bool RealizeResource(); | |
80 | ||
81 | // Unofficial API, don't use | |
82 | virtual void SetNoAntiAliasing( bool noAA = TRUE ) ; | |
5ac2e80c | 83 | virtual bool GetNoAntiAliasing() const ; |
8cf73271 SC |
84 | |
85 | // Mac-specific, risks to change, don't use in portable code | |
7bca6cef SC |
86 | |
87 | // 'old' Quickdraw accessors | |
88 | ||
4f305456 SC |
89 | short MacGetFontNum() const; |
90 | short MacGetFontSize() const; | |
91 | wxByte MacGetFontStyle() const; | |
7bca6cef SC |
92 | |
93 | // 'new' ATSUI accessors | |
94 | ||
4f305456 SC |
95 | wxUint32 MacGetATSUFontID() const; |
96 | wxUint32 MacGetATSUAdditionalQDStyles() const; | |
97 | wxUint16 MacGetThemeFontID() const ; | |
7bca6cef SC |
98 | // Returns an ATSUStyle not ATSUStyle* |
99 | void* MacGetATSUStyle() const ; | |
100 | ||
8cf73271 | 101 | protected: |
f08b7bec PC |
102 | virtual wxObjectRefData* CreateRefData() const; |
103 | virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const; | |
8cf73271 | 104 | |
8cf73271 SC |
105 | DECLARE_DYNAMIC_CLASS(wxFont) |
106 | }; | |
107 | ||
108 | #endif | |
109 | // _WX_FONT_H_ |