]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/os2/font.h | |
3 | // Purpose: wxFont class | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/06/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_FONT_H_ | |
13 | #define _WX_FONT_H_ | |
14 | ||
15 | #include "wx/gdiobj.h" | |
16 | #include "wx/os2/private.h" | |
17 | ||
18 | WXDLLIMPEXP_DATA_CORE(extern const wxChar*) wxEmptyString; | |
19 | ||
20 | // ---------------------------------------------------------------------------- | |
21 | // wxFont | |
22 | // ---------------------------------------------------------------------------- | |
23 | ||
24 | class WXDLLIMPEXP_CORE wxFont : public wxFontBase | |
25 | { | |
26 | public: | |
27 | // ctors and such | |
28 | wxFont() { } | |
29 | ||
30 | #if FUTURE_WXWIN_COMPATIBILITY_3_0 | |
31 | wxFont(int size, | |
32 | int family, | |
33 | int style, | |
34 | int weight, | |
35 | bool underlined = false, | |
36 | const wxString& face = wxEmptyString, | |
37 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
38 | { | |
39 | (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding); | |
40 | } | |
41 | #endif | |
42 | ||
43 | wxFont(int size, | |
44 | wxFontFamily family, | |
45 | wxFontStyle style, | |
46 | wxFontWeight weight, | |
47 | bool underlined = false, | |
48 | const wxString& face = wxEmptyString, | |
49 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
50 | { | |
51 | Create(size, family, style, weight, underlined, face, encoding); | |
52 | } | |
53 | ||
54 | wxFont(const wxSize& pixelSize, | |
55 | wxFontFamily family, | |
56 | wxFontStyle style, | |
57 | wxFontWeight weight, | |
58 | bool underlined = false, | |
59 | const wxString& face = wxEmptyString, | |
60 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT) | |
61 | { | |
62 | Create(10, family, style, weight, underlined, face, encoding); | |
63 | SetPixelSize(pixelSize); | |
64 | } | |
65 | ||
66 | bool Create(int size, | |
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 | wxFont( const wxNativeFontInfo& rInfo | |
75 | ,WXHFONT hFont = 0 | |
76 | ) | |
77 | ||
78 | { | |
79 | (void)Create( rInfo | |
80 | ,hFont | |
81 | ); | |
82 | } | |
83 | ||
84 | wxFont(const wxString& rsFontDesc); | |
85 | ||
86 | bool Create( const wxNativeFontInfo& rInfo | |
87 | ,WXHFONT hFont = 0 | |
88 | ); | |
89 | ||
90 | virtual ~wxFont(); | |
91 | ||
92 | // | |
93 | // Implement base class pure virtuals | |
94 | // | |
95 | virtual int GetPointSize(void) const; | |
96 | virtual wxFontFamily GetFamily() const; | |
97 | virtual wxFontStyle GetStyle() const; | |
98 | virtual wxFontWeight GetWeight() const; | |
99 | virtual bool GetUnderlined(void) const; | |
100 | virtual wxString GetFaceName(void) const; | |
101 | virtual wxFontEncoding GetEncoding(void) const; | |
102 | virtual const wxNativeFontInfo* GetNativeFontInfo() const; | |
103 | ||
104 | virtual void SetPointSize(int nPointSize); | |
105 | virtual void SetFamily(wxFontFamily family); | |
106 | virtual void SetStyle(wxFontStyle style); | |
107 | virtual void SetWeight(wxFontWeight weight); | |
108 | virtual bool SetFaceName(const wxString& rsFaceName); | |
109 | virtual void SetUnderlined(bool bUnderlined); | |
110 | virtual void SetEncoding(wxFontEncoding vEncoding); | |
111 | ||
112 | wxDECLARE_COMMON_FONT_METHODS(); | |
113 | ||
114 | // | |
115 | // For internal use only! | |
116 | // | |
117 | void SetPS(HPS hPS); | |
118 | void SetFM( PFONTMETRICS pFM | |
119 | ,int nNumFonts | |
120 | ); | |
121 | // | |
122 | // Implementation only from now on | |
123 | // ------------------------------- | |
124 | // | |
125 | virtual bool IsFree(void) const; | |
126 | virtual bool RealizeResource(void); | |
127 | virtual WXHANDLE GetResourceHandle(void) const; | |
128 | virtual bool FreeResource(bool bForce = false); | |
129 | ||
130 | WXHFONT GetHFONT(void) const; | |
131 | ||
132 | protected: | |
133 | virtual void DoSetNativeFontInfo(const wxNativeFontInfo& rInfo); | |
134 | ||
135 | // implement wxObject virtuals which are used by AllocExclusive() | |
136 | virtual wxGDIRefData *CreateGDIRefData() const; | |
137 | virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; | |
138 | ||
139 | private: | |
140 | DECLARE_DYNAMIC_CLASS(wxFont) | |
141 | }; // end of wxFont | |
142 | ||
143 | #endif // _WX_FONT_H_ |