]>
Commit | Line | Data |
---|---|---|
0c5d3e1c VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/font.h | |
3 | // Purpose: wxFontBase class: the interface of wxFont | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 20.09.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_FONT_H_BASE_ |
13 | #define _WX_FONT_H_BASE_ | |
c801d85f | 14 | |
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
1b68e0b5 RR |
16 | #pragma interface "fontbase.h" |
17 | #endif | |
18 | ||
0c5d3e1c VZ |
19 | // ---------------------------------------------------------------------------- |
20 | // headers | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | #include "wx/defs.h" // for wxDEFAULT &c | |
f6bcfd97 | 24 | #include "wx/fontenc.h" // the font encoding constants |
0c5d3e1c VZ |
25 | #include "wx/gdiobj.h" // the base class |
26 | ||
27 | // ---------------------------------------------------------------------------- | |
28 | // forward declarations | |
29 | // ---------------------------------------------------------------------------- | |
30 | ||
7beba2fc | 31 | class WXDLLEXPORT wxFontData; |
0c5d3e1c VZ |
32 | class WXDLLEXPORT wxFontBase; |
33 | class WXDLLEXPORT wxFont; | |
34 | ||
35 | // ---------------------------------------------------------------------------- | |
36 | // font constants | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
409d5a58 VZ |
39 | // standard font families: these may be used only for the font creation, it |
40 | // doesn't make sense to query an existing font for its font family as, | |
41 | // especially if the font had been created from a native font description, it | |
42 | // may be unknown | |
0c5d3e1c VZ |
43 | enum wxFontFamily |
44 | { | |
45 | wxFONTFAMILY_DEFAULT = wxDEFAULT, | |
46 | wxFONTFAMILY_DECORATIVE = wxDECORATIVE, | |
47 | wxFONTFAMILY_ROMAN = wxROMAN, | |
48 | wxFONTFAMILY_SCRIPT = wxSCRIPT, | |
49 | wxFONTFAMILY_SWISS = wxSWISS, | |
50 | wxFONTFAMILY_MODERN = wxMODERN, | |
51 | wxFONTFAMILY_TELETYPE = wxTELETYPE, | |
409d5a58 VZ |
52 | wxFONTFAMILY_MAX, |
53 | wxFONTFAMILY_UNKNOWN = wxFONTFAMILY_MAX | |
0c5d3e1c VZ |
54 | }; |
55 | ||
56 | // font styles | |
57 | enum wxFontStyle | |
58 | { | |
59 | wxFONTSTYLE_NORMAL = wxNORMAL, | |
60 | wxFONTSTYLE_ITALIC = wxITALIC, | |
61 | wxFONTSTYLE_SLANT = wxSLANT, | |
62 | wxFONTSTYLE_MAX | |
63 | }; | |
64 | ||
65 | // font weights | |
66 | enum wxFontWeight | |
67 | { | |
68 | wxFONTWEIGHT_NORMAL = wxNORMAL, | |
69 | wxFONTWEIGHT_LIGHT = wxLIGHT, | |
70 | wxFONTWEIGHT_BOLD = wxBOLD, | |
71 | wxFONTWEIGHT_MAX | |
72 | }; | |
73 | ||
01cb1c26 VZ |
74 | // the font flag bits for the new font ctor accepting one combined flags word |
75 | enum | |
76 | { | |
77 | // no special flags: font with default weight/slant/anti-aliasing | |
78 | wxFONTFLAG_DEFAULT = 0, | |
79 | ||
80 | // slant flags (default: no slant) | |
81 | wxFONTFLAG_ITALIC = 1 << 0, | |
82 | wxFONTFLAG_SLANT = 1 << 1, | |
83 | ||
84 | // weight flags (default: medium) | |
85 | wxFONTFLAG_LIGHT = 1 << 2, | |
86 | wxFONTFLAG_BOLD = 1 << 3, | |
87 | ||
88 | // anti-aliasing flag: force on or off (default: the current system default) | |
89 | wxFONTFLAG_ANTIALIASED = 1 << 4, | |
90 | wxFONTFLAG_NOT_ANTIALIASED = 1 << 5, | |
91 | ||
92 | // underlined/strikethrough flags (default: no lines) | |
93 | wxFONTFLAG_UNDERLINED = 1 << 6, | |
94 | wxFONTFLAG_STRIKETHROUGH = 1 << 7, | |
95 | ||
96 | // the mask of all currently used flags | |
97 | wxFONTFLAG_MASK = wxFONTFLAG_ITALIC | | |
98 | wxFONTFLAG_SLANT | | |
99 | wxFONTFLAG_LIGHT | | |
100 | wxFONTFLAG_BOLD | | |
101 | wxFONTFLAG_ANTIALIASED | | |
102 | wxFONTFLAG_NOT_ANTIALIASED | | |
103 | wxFONTFLAG_UNDERLINED | | |
104 | wxFONTFLAG_STRIKETHROUGH | |
105 | }; | |
106 | ||
0c5d3e1c VZ |
107 | // ---------------------------------------------------------------------------- |
108 | // wxFontBase represents a font object | |
109 | // ---------------------------------------------------------------------------- | |
110 | ||
4d85bcd1 | 111 | class WXDLLEXPORT wxFontRefData; |
76e23cdb | 112 | struct WXDLLEXPORT wxNativeFontInfo; |
4d85bcd1 | 113 | |
6f4968e2 | 114 | class WXDLLEXPORT wxFontBase : public wxGDIObject |
0c5d3e1c VZ |
115 | { |
116 | public: | |
117 | // creator function | |
799ea011 | 118 | virtual ~wxFontBase(); |
7826e2dd VZ |
119 | |
120 | // from the font components | |
0c5d3e1c VZ |
121 | static wxFont *New( |
122 | int pointSize, // size of the font in points | |
123 | int family, // see wxFontFamily enum | |
124 | int style, // see wxFontStyle enum | |
125 | int weight, // see wxFontWeight enum | |
126 | bool underlined = FALSE, // not underlined by default | |
127 | const wxString& face = wxEmptyString, // facename | |
128 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); // ISO8859-X, ... | |
7826e2dd | 129 | |
01cb1c26 VZ |
130 | // from the font components but using the font flags instead of separate |
131 | // parameters for each flag | |
132 | static wxFont *New(int pointSize, | |
133 | wxFontFamily family, | |
134 | int flags = wxFONTFLAG_DEFAULT, | |
135 | const wxString& face = wxEmptyString, | |
136 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
137 | ||
7826e2dd VZ |
138 | // from the (opaque) native font description object |
139 | static wxFont *New(const wxNativeFontInfo& nativeFontDesc); | |
140 | ||
141 | // from the string representation of wxNativeFontInfo | |
142 | static wxFont *New(const wxString& strNativeFontDesc); | |
0c5d3e1c VZ |
143 | |
144 | // was the font successfully created? | |
145 | bool Ok() const { return m_refData != NULL; } | |
146 | ||
147 | // comparison | |
148 | bool operator == (const wxFont& font) const; | |
149 | bool operator != (const wxFont& font) const; | |
150 | ||
151 | // accessors: get the font characteristics | |
152 | virtual int GetPointSize() const = 0; | |
153 | virtual int GetFamily() const = 0; | |
154 | virtual int GetStyle() const = 0; | |
155 | virtual int GetWeight() const = 0; | |
156 | virtual bool GetUnderlined() const = 0; | |
157 | virtual wxString GetFaceName() const = 0; | |
158 | virtual wxFontEncoding GetEncoding() const = 0; | |
7826e2dd | 159 | virtual wxNativeFontInfo *GetNativeFontInfo() const; |
ab5fe833 | 160 | |
53f6aab7 VZ |
161 | virtual bool IsFixedWidth() const; |
162 | ||
7826e2dd | 163 | wxString GetNativeFontInfoDesc() const; |
ab5fe833 | 164 | wxString GetNativeFontInfoUserDesc() const; |
0c5d3e1c VZ |
165 | |
166 | // change the font characteristics | |
167 | virtual void SetPointSize( int pointSize ) = 0; | |
168 | virtual void SetFamily( int family ) = 0; | |
169 | virtual void SetStyle( int style ) = 0; | |
170 | virtual void SetWeight( int weight ) = 0; | |
171 | virtual void SetFaceName( const wxString& faceName ) = 0; | |
172 | virtual void SetUnderlined( bool underlined ) = 0; | |
173 | virtual void SetEncoding(wxFontEncoding encoding) = 0; | |
9045ad9d VZ |
174 | void SetNativeFontInfo(const wxNativeFontInfo& info) |
175 | { DoSetNativeFontInfo(info); } | |
ab5fe833 | 176 | |
dccb75b6 | 177 | void SetNativeFontInfo(const wxString& info); |
ab5fe833 | 178 | void SetNativeFontInfoUserDesc(const wxString& info); |
7826e2dd | 179 | |
0c5d3e1c VZ |
180 | // translate the fonts into human-readable string (i.e. GetStyleString() |
181 | // will return "wxITALIC" for an italic font, ...) | |
182 | wxString GetFamilyString() const; | |
183 | wxString GetStyleString() const; | |
184 | wxString GetWeightString() const; | |
185 | ||
2b5f62a0 | 186 | // Unofficial API, don't use |
23d2edff | 187 | virtual void SetNoAntiAliasing( bool WXUNUSED(no) = TRUE ) { } |
2b5f62a0 VZ |
188 | virtual bool GetNoAntiAliasing() { return FALSE; } |
189 | ||
0c5d3e1c VZ |
190 | // the default encoding is used for creating all fonts with default |
191 | // encoding parameter | |
cafbf6fb VZ |
192 | static wxFontEncoding GetDefaultEncoding() { return ms_encodingDefault; } |
193 | static void SetDefaultEncoding(wxFontEncoding encoding); | |
0c5d3e1c VZ |
194 | |
195 | protected: | |
196 | // get the internal data | |
4d85bcd1 | 197 | wxFontRefData *GetFontData() const |
0c5d3e1c | 198 | { return (wxFontRefData *)m_refData; } |
9045ad9d VZ |
199 | |
200 | // the function called by both overloads of SetNativeFontInfo() | |
201 | virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info); | |
202 | ||
0c5d3e1c VZ |
203 | private: |
204 | // the currently default encoding: by default, it's the default system | |
205 | // encoding, but may be changed by the application using | |
206 | // SetDefaultEncoding() to make all subsequent fonts created without | |
207 | // specifing encoding parameter using this encoding | |
208 | static wxFontEncoding ms_encodingDefault; | |
209 | }; | |
210 | ||
211 | // include the real class declaration | |
2049ba38 | 212 | #if defined(__WXMSW__) |
0c5d3e1c | 213 | #include "wx/msw/font.h" |
2049ba38 | 214 | #elif defined(__WXMOTIF__) |
0c5d3e1c | 215 | #include "wx/motif/font.h" |
2049ba38 | 216 | #elif defined(__WXGTK__) |
0c5d3e1c | 217 | #include "wx/gtk/font.h" |
83df96d6 JS |
218 | #elif defined(__WXX11__) |
219 | #include "wx/x11/font.h" | |
1e6feb95 VZ |
220 | #elif defined(__WXMGL__) |
221 | #include "wx/mgl/font.h" | |
34138703 | 222 | #elif defined(__WXMAC__) |
0c5d3e1c | 223 | #include "wx/mac/font.h" |
1777b9bb | 224 | #elif defined(__WXPM__) |
0c5d3e1c | 225 | #include "wx/os2/font.h" |
c801d85f KB |
226 | #endif |
227 | ||
0c5d3e1c VZ |
228 | // ---------------------------------------------------------------------------- |
229 | // macros | |
230 | // ---------------------------------------------------------------------------- | |
231 | ||
0c5d3e1c VZ |
232 | #define M_FONTDATA GetFontData() |
233 | ||
c801d85f | 234 | #endif |
34138703 | 235 | // _WX_FONT_H_BASE_ |