]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/font.h
add more flexible and safer template Connect() overloads (#10000)
[wxWidgets.git] / include / wx / motif / font.h
CommitLineData
9b6dbb09 1/////////////////////////////////////////////////////////////////////////////
53c5fb20 2// Name: wx/motif/font.h
9b6dbb09
JS
3// Purpose: wxFont class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
53c5fb20 9// Licence: wxWindows licence
9b6dbb09
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FONT_H_
13#define _WX_FONT_H_
14
b0b2263b 15#if __WXMOTIF20__ && !__WXLESSTIF__
eb9d223a 16 #define wxMOTIF_USE_RENDER_TABLE 1
b0b2263b 17#else
eb9d223a 18 #define wxMOTIF_USE_RENDER_TABLE 0
996994c7 19#endif
105fbe1f 20#define wxMOTIF_NEW_FONT_HANDLING wxMOTIF_USE_RENDER_TABLE
996994c7 21
a2e91a93
VZ
22class wxXFont;
23
93ccaed8 24// Font
94c7b088 25class WXDLLIMPEXP_CORE wxFont : public wxFontBase
f97c9854
JS
26{
27public:
93ccaed8 28 // ctors and such
f8855e47 29 wxFont() { }
9045ad9d 30
0c14b6c3
FM
31 wxFont(const wxNativeFontInfo& info);
32
33#if FUTURE_WXWIN_COMPATIBILITY_3_0
93ccaed8 34 wxFont(int size,
0c14b6c3
FM
35 int family,
36 int style,
37 int weight,
38 bool underlined = false,
39 const wxString& face = wxEmptyString,
40 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
93ccaed8 41 {
0c14b6c3 42 (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
93ccaed8 43 }
0c14b6c3 44#endif
9045ad9d 45
0c14b6c3
FM
46 wxFont(int size,
47 wxFontFamily family,
48 wxFontStyle style,
49 wxFontWeight weight,
50 bool underlined = false,
51 const wxString& face = wxEmptyString,
52 wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
53 {
54 Create(size, family, style, weight, underlined, face, encoding);
55 }
9045ad9d 56
93ccaed8 57 bool Create(int size,
0c14b6c3
FM
58 wxFontFamily family,
59 wxFontStyle style,
60 wxFontWeight weight,
61 bool underlined = false,
62 const wxString& face = wxEmptyString,
63 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
9045ad9d 64
563f868d
GD
65 // wxMOTIF-specific
66 bool Create(const wxString& fontname,
83df96d6 67 wxFontEncoding fontenc = wxFONTENCODING_DEFAULT);
563f868d 68 bool Create(const wxNativeFontInfo& fontinfo);
9045ad9d 69
93ccaed8 70 virtual ~wxFont();
9045ad9d 71
93ccaed8
VZ
72 // implement base class pure virtuals
73 virtual int GetPointSize() const;
0c14b6c3
FM
74 virtual wxFontFamily GetFamily() const;
75 virtual wxFontStyle GetStyle() const;
76 virtual wxFontWeight GetWeight() const;
93ccaed8
VZ
77 virtual bool GetUnderlined() const;
78 virtual wxString GetFaceName() const;
79 virtual wxFontEncoding GetEncoding() const;
3bf5a59b 80 virtual const wxNativeFontInfo *GetNativeFontInfo() const;
9045ad9d 81
93ccaed8 82 virtual void SetPointSize(int pointSize);
0c14b6c3
FM
83 virtual void SetFamily(wxFontFamily family);
84 virtual void SetStyle(wxFontStyle style);
85 virtual void SetWeight(wxFontWeight weight);
85ab460e 86 virtual bool SetFaceName(const wxString& faceName);
93ccaed8
VZ
87 virtual void SetUnderlined(bool underlined);
88 virtual void SetEncoding(wxFontEncoding encoding);
9045ad9d 89
0c14b6c3
FM
90 WXDECLARE_COMPAT_SETTERS
91
93ccaed8 92 // Implementation
9045ad9d 93
93ccaed8
VZ
94 // Find an existing, or create a new, XFontStruct
95 // based on this wxFont and the given scale. Append the
96 // font to list in the private data for future reference.
9045ad9d 97
93ccaed8
VZ
98 // TODO This is a fairly basic implementation, that doesn't
99 // allow for different facenames, and also doesn't do a mapping
100 // between 'standard' facenames (e.g. Arial, Helvetica, Times Roman etc.)
101 // and the fonts that are available on a particular system.
102 // Maybe we need to scan the user's machine to build up a profile
103 // of the fonts and a mapping file.
9045ad9d 104
93ccaed8 105 // Return font struct, and optionally the Motif font list
a2e91a93 106 wxXFont *GetInternalFont(double scale = 1.0,
83df96d6 107 WXDisplay* display = NULL) const;
9045ad9d 108
93ccaed8 109 // These two are helper functions for convenient access of the above.
eb9d223a 110#if wxMOTIF_USE_RENDER_TABLE
105fbe1f 111 WXFontSet GetFontSet(double scale, WXDisplay* display = NULL) const;
eb9d223a
MB
112 WXRenderTable GetRenderTable(WXDisplay* display) const;
113#else // if !wxMOTIF_USE_RENDER_TABLE
105fbe1f
MB
114 WXFontStructPtr GetFontStruct(double scale = 1.0,
115 WXDisplay* display = NULL) const;
93ccaed8 116 WXFontList GetFontList(double scale = 1.0,
83df96d6 117 WXDisplay* display = NULL) const;
105fbe1f 118#endif // !wxMOTIF_USE_RENDER_TABLE
996994c7 119 // returns either a XmFontList or XmRenderTable, depending
da494b40
MB
120 // on Motif version
121 WXFontType GetFontType(WXDisplay* display) const;
73608949
MB
122 // like the function above but does a copy for XmFontList
123 WXFontType GetFontTypeC(WXDisplay* display) const;
da494b40 124 static WXString GetFontTag();
8f884a0d 125
9b6dbb09 126protected:
8f884a0d
VZ
127 virtual wxGDIRefData *CreateGDIRefData() const;
128 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
129
9045ad9d
VZ
130 virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
131
93ccaed8 132 void Unshare();
9045ad9d 133
93ccaed8
VZ
134private:
135 DECLARE_DYNAMIC_CLASS(wxFont)
9b6dbb09
JS
136};
137
8f884a0d 138#endif // _WX_FONT_H_