1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/font.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_FWD_CORE wxDC
;
20 class WXDLLIMPEXP_FWD_CORE wxPaintDC
;
21 class WXDLLIMPEXP_FWD_CORE wxWindow
;
23 class WXDLLIMPEXP_FWD_CORE wxFont
;
25 // ----------------------------------------------------------------------------
27 // ----------------------------------------------------------------------------
29 class WXDLLIMPEXP_CORE wxFont
: public wxFontBase
36 wxFont(const wxString
& fontname
)
41 wxFont(const wxNativeFontInfo
& info
);
43 #if FUTURE_WXWIN_COMPATIBILITY_3_0
48 bool underlined
= false,
49 const wxString
& face
= wxEmptyString
,
50 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
52 (void)Create(size
, (wxFontFamily
)family
, (wxFontStyle
)style
, (wxFontWeight
)weight
, underlined
, face
, encoding
);
60 bool underlined
= false,
61 const wxString
& face
= wxEmptyString
,
62 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
64 Create(size
, family
, style
, weight
, underlined
, face
, encoding
);
67 wxFont(const wxSize
& pixelSize
,
71 bool underlined
= false,
72 const wxString
& face
= wxEmptyString
,
73 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
)
75 Create(10, family
, style
, weight
, underlined
, face
, encoding
);
76 SetPixelSize(pixelSize
);
83 bool underlined
= false,
84 const wxString
& face
= wxEmptyString
,
85 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
89 bool Create(const wxString
& fontname
);
93 // implement base class pure virtuals
94 virtual int GetPointSize() const;
95 virtual wxFontFamily
GetFamily() const;
96 virtual wxFontStyle
GetStyle() const;
97 virtual wxFontWeight
GetWeight() const;
98 virtual wxString
GetFaceName() const;
99 virtual bool GetUnderlined() const;
100 virtual wxFontEncoding
GetEncoding() const;
101 virtual const wxNativeFontInfo
*GetNativeFontInfo() const;
102 virtual bool IsFixedWidth() const;
104 virtual void SetPointSize( int pointSize
);
105 virtual void SetFamily(wxFontFamily family
);
106 virtual void SetStyle(wxFontStyle style
);
107 virtual void SetWeight(wxFontWeight weight
);
108 virtual bool SetFaceName( const wxString
& faceName
);
109 virtual void SetUnderlined( bool underlined
);
110 virtual void SetEncoding(wxFontEncoding encoding
);
112 wxDECLARE_COMMON_FONT_METHODS();
114 // implementation from now on
117 GdkFont
* GetInternalFont(float scale
= 1.0) const;
120 virtual wxGDIRefData
*CreateGDIRefData() const;
121 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
123 virtual void DoSetNativeFontInfo( const wxNativeFontInfo
& info
);
126 DECLARE_DYNAMIC_CLASS(wxFont
)
129 #endif // __GTKFONTH__