]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/mgl/font.h |
32b8ec41 VZ |
3 | // Author: Vaclav Slavik |
4 | // Id: $Id$ | |
52750c2e | 5 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 6 | // Licence: wxWindows licence |
32b8ec41 VZ |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
9 | #ifndef __WX_FONT_H__ | |
10 | #define __WX_FONT_H__ | |
11 | ||
32b8ec41 VZ |
12 | #include "wx/hash.h" |
13 | ||
14 | // ---------------------------------------------------------------------------- | |
15 | // classes | |
16 | // ---------------------------------------------------------------------------- | |
17 | ||
b5dbe15d VS |
18 | class WXDLLIMPEXP_FWD_CORE wxDC; |
19 | class WXDLLIMPEXP_FWD_CORE wxPaintDC; | |
20 | class WXDLLIMPEXP_FWD_CORE wxWindow; | |
21 | class WXDLLIMPEXP_FWD_CORE wxFont; | |
32b8ec41 VZ |
22 | |
23 | struct font_t; | |
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // wxFont | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
53a2db12 | 29 | class WXDLLIMPEXP_CORE wxFont : public wxFontBase |
32b8ec41 VZ |
30 | { |
31 | public: | |
32 | // ctors and such | |
f8855e47 | 33 | wxFont() { } |
32b8ec41 VZ |
34 | |
35 | wxFont(const wxNativeFontInfo& info) | |
36 | { | |
0c14b6c3 | 37 | (void)Create(info); |
32b8ec41 VZ |
38 | } |
39 | ||
0c14b6c3 | 40 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 |
32b8ec41 VZ |
41 | wxFont(int size, |
42 | int family, | |
43 | int style, | |
44 | int weight, | |
0c14b6c3 | 45 | bool underlined = false, |
32b8ec41 VZ |
46 | const wxString& face = wxEmptyString, |
47 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
48 | { | |
0c14b6c3 FM |
49 | (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding); |
50 | } | |
51 | #endif | |
52 | ||
53 | wxFont(int size, | |
54 | wxFontFamily family, | |
55 | wxFontStyle style, | |
56 | wxFontWeight weight, | |
57 | bool underlined = false, | |
58 | const wxString& face = wxEmptyString, | |
59 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
60 | { | |
61 | Create(size, family, style, weight, underlined, face, encoding); | |
32b8ec41 | 62 | } |
03647350 | 63 | |
b5791cc7 FM |
64 | wxFont(const wxSize& pixelSize, |
65 | wxFontFamily family, | |
66 | wxFontStyle style, | |
67 | wxFontWeight weight, | |
68 | bool underlined = false, | |
69 | const wxString& face = wxEmptyString, | |
70 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
71 | { | |
72 | Create(10, family, style, weight, underlined, face, encoding); | |
73 | SetPixelSize(pixelSize); | |
74 | } | |
03647350 | 75 | |
32b8ec41 | 76 | bool Create(int size, |
0c14b6c3 FM |
77 | wxFontFamily family, |
78 | wxFontStyle style, | |
79 | wxFontWeight weight, | |
80 | bool underlined = false, | |
32b8ec41 VZ |
81 | const wxString& face = wxEmptyString, |
82 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
83 | ||
84 | bool Create(const wxNativeFontInfo& fontinfo); | |
85 | ||
d3c7fc99 | 86 | virtual ~wxFont() {} |
32b8ec41 | 87 | |
32b8ec41 VZ |
88 | // implement base class pure virtuals |
89 | virtual int GetPointSize() const; | |
0c14b6c3 FM |
90 | virtual wxFontStyle GetStyle() const; |
91 | virtual wxFontWeight GetWeight() const; | |
32b8ec41 VZ |
92 | virtual wxString GetFaceName() const; |
93 | virtual bool GetUnderlined() const; | |
94 | virtual wxFontEncoding GetEncoding() const; | |
f3437beb | 95 | virtual bool IsFixedWidth() const; |
3bf5a59b | 96 | virtual const wxNativeFontInfo *GetNativeFontInfo() const; |
32b8ec41 VZ |
97 | |
98 | virtual void SetPointSize(int pointSize); | |
0c14b6c3 FM |
99 | virtual void SetFamily(wxFontFamily family); |
100 | virtual void SetStyle(wxFontStyle style); | |
101 | virtual void SetWeight(wxFontWeight weight); | |
85ab460e | 102 | virtual bool SetFaceName(const wxString& faceName); |
32b8ec41 VZ |
103 | virtual void SetUnderlined(bool underlined); |
104 | virtual void SetEncoding(wxFontEncoding encoding); | |
105 | ||
f76c0758 | 106 | wxDECLARE_COMMON_FONT_METHODS(); |
0c14b6c3 | 107 | |
32b8ec41 VZ |
108 | struct font_t *GetMGLfont_t(float scale, bool antialiased); |
109 | ||
32b8ec41 | 110 | protected: |
6d7ee9e8 | 111 | // ref counting code |
8f884a0d VZ |
112 | virtual wxGDIRefData *CreateGDIRefData() const; |
113 | virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; | |
6d7ee9e8 | 114 | |
59b7da02 VZ |
115 | virtual wxFontFamily DoGetFamily() const; |
116 | ||
32b8ec41 VZ |
117 | private: |
118 | DECLARE_DYNAMIC_CLASS(wxFont) | |
119 | }; | |
120 | ||
121 | #endif // __WX_FONT_H__ |