]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/font.h
Minor fixes to wxDateTime documentation.
[wxWidgets.git] / include / wx / msw / font.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
c0089c96 2// Name: wx/msw/font.h
2bda0e17
KB
3// Purpose: wxFont class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_FONT_H_
13#define _WX_FONT_H_
2bda0e17 14
c0089c96 15#include "wx/gdicmn.h"
88899f6b 16
0c5d3e1c
VZ
17// ----------------------------------------------------------------------------
18// wxFont
19// ----------------------------------------------------------------------------
20
53a2db12 21class WXDLLIMPEXP_CORE wxFont : public wxFontBase
2bda0e17 22{
2bda0e17 23public:
0c5d3e1c 24 // ctors and such
f8855e47 25 wxFont() { }
0c5d3e1c 26
0c14b6c3 27#if FUTURE_WXWIN_COMPATIBILITY_3_0
0c5d3e1c
VZ
28 wxFont(int size,
29 int family,
30 int style,
31 int weight,
dabbc6a5 32 bool underlined = false,
0c5d3e1c
VZ
33 const wxString& face = wxEmptyString,
34 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
35 {
0c14b6c3 36 (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
544229d1 37 }
0c14b6c3 38#endif
544229d1 39
0c14b6c3
FM
40 wxFont(int size,
41 wxFontFamily family,
42 wxFontStyle style,
43 wxFontWeight weight,
44 bool underlined = false,
45 const wxString& face = wxEmptyString,
46 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
47 {
48 Create(size, family, style, weight, underlined, face, encoding);
49 }
03647350 50
0c14b6c3
FM
51 bool Create(int size,
52 wxFontFamily family,
53 wxFontStyle style,
54 wxFontWeight weight,
55 bool underlined = false,
56 const wxString& face = wxEmptyString,
57 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
58 {
59 return DoCreate(size, wxDefaultSize, false, family, style,
60 weight, underlined, face, encoding);
61 }
62
63#if FUTURE_WXWIN_COMPATIBILITY_3_0
544229d1
VZ
64 wxFont(const wxSize& pixelSize,
65 int family,
66 int style,
67 int weight,
68 bool underlined = false,
69 const wxString& face = wxEmptyString,
70 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
0c14b6c3
FM
71 {
72 (void)Create(pixelSize, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight,
73 underlined, face, encoding);
74 }
75#endif
76
77 wxFont(const wxSize& pixelSize,
78 wxFontFamily family,
79 wxFontStyle style,
80 wxFontWeight weight,
81 bool underlined = false,
82 const wxString& face = wxEmptyString,
83 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
544229d1 84 {
df455719
VZ
85 (void)Create(pixelSize, family, style, weight,
86 underlined, face, encoding);
0c5d3e1c
VZ
87 }
88
04ef50df 89 wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0)
30764ab5 90 {
04ef50df 91 Create(info, hFont);
30764ab5
VZ
92 }
93
0634700a
VZ
94 wxFont(int pointSize,
95 wxFontFamily family,
96 int flags = wxFONTFLAG_DEFAULT,
97 const wxString& face = wxEmptyString,
98 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
99
76e23cdb
VZ
100 wxFont(const wxString& fontDesc);
101
df455719
VZ
102
103 bool Create(const wxSize& pixelSize,
0c14b6c3
FM
104 wxFontFamily family,
105 wxFontStyle style,
106 wxFontWeight weight,
df455719
VZ
107 bool underlined = false,
108 const wxString& face = wxEmptyString,
109 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
110 {
111 return DoCreate(-1, pixelSize, true, family, style,
112 weight, underlined, face, encoding);
113 }
0c5d3e1c 114
04ef50df 115 bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0);
76e23cdb 116
0c5d3e1c
VZ
117 virtual ~wxFont();
118
119 // implement base class pure virtuals
120 virtual int GetPointSize() const;
544229d1
VZ
121 virtual wxSize GetPixelSize() const;
122 virtual bool IsUsingSizeInPixels() const;
0c14b6c3
FM
123 virtual wxFontStyle GetStyle() const;
124 virtual wxFontWeight GetWeight() const;
0c5d3e1c 125 virtual bool GetUnderlined() const;
c7a49742 126 virtual bool GetStrikethrough() const;
0c5d3e1c
VZ
127 virtual wxString GetFaceName() const;
128 virtual wxFontEncoding GetEncoding() const;
3bf5a59b 129 virtual const wxNativeFontInfo *GetNativeFontInfo() const;
0c5d3e1c
VZ
130
131 virtual void SetPointSize(int pointSize);
544229d1 132 virtual void SetPixelSize(const wxSize& pixelSize);
0c14b6c3
FM
133 virtual void SetFamily(wxFontFamily family);
134 virtual void SetStyle(wxFontStyle style);
135 virtual void SetWeight(wxFontWeight weight);
85ab460e 136 virtual bool SetFaceName(const wxString& faceName);
0c5d3e1c 137 virtual void SetUnderlined(bool underlined);
c7a49742 138 virtual void SetStrikethrough(bool strikethrough);
0c5d3e1c
VZ
139 virtual void SetEncoding(wxFontEncoding encoding);
140
f76c0758 141 wxDECLARE_COMMON_FONT_METHODS();
0c14b6c3 142
9cf8de4c
VZ
143 virtual bool IsFixedWidth() const;
144
0c5d3e1c
VZ
145 // implementation only from now on
146 // -------------------------------
147
0c5d3e1c
VZ
148 virtual bool IsFree() const;
149 virtual bool RealizeResource();
2b5f62a0 150 virtual WXHANDLE GetResourceHandle() const;
dabbc6a5 151 virtual bool FreeResource(bool force = false);
f6bcfd97 152
2b5f62a0 153 // for consistency with other wxMSW classes
f6bcfd97
BP
154 WXHFONT GetHFONT() const;
155
b823f5a1 156protected:
df455719
VZ
157 // real font creation function, used in all cases
158 bool DoCreate(int size,
159 const wxSize& pixelSize,
160 bool sizeUsingPixels,
9817be8a
FM
161 wxFontFamily family,
162 wxFontStyle style,
163 wxFontWeight weight,
df455719
VZ
164 bool underlined = false,
165 const wxString& face = wxEmptyString,
166 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
167
9045ad9d 168 virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
59b7da02 169 virtual wxFontFamily DoGetFamily() const;
9045ad9d 170
f030b28c 171 // implement wxObject virtuals which are used by AllocExclusive()
8f884a0d
VZ
172 virtual wxGDIRefData *CreateGDIRefData() const;
173 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
0c5d3e1c
VZ
174
175private:
176 DECLARE_DYNAMIC_CLASS(wxFont)
2bda0e17
KB
177};
178
c0089c96 179#endif // _WX_FONT_H_