1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-25 20:35:11 +00:00
|
|
|
// Name: wx/motif/font.h
|
1998-09-18 10:19:10 +00:00
|
|
|
// Purpose: wxFont class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2005-09-25 20:35:11 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FONT_H_
|
|
|
|
#define _WX_FONT_H_
|
|
|
|
|
2005-08-18 00:41:18 +00:00
|
|
|
#if __WXMOTIF20__ && !__WXLESSTIF__
|
2005-09-25 20:35:11 +00:00
|
|
|
#define wxMOTIF_NEW_FONT_HANDLING 1
|
2005-09-30 09:12:58 +00:00
|
|
|
#define wxMOTIF_USE_RENDER_TABLE 1
|
2005-08-18 00:41:18 +00:00
|
|
|
#else
|
|
|
|
#define wxMOTIF_NEW_FONT_HANDLING 0
|
2005-09-30 09:12:58 +00:00
|
|
|
#define wxMOTIF_USE_RENDER_TABLE 0
|
2005-07-31 09:42:16 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-21 18:31:43 +00:00
|
|
|
class wxXFont;
|
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// Font
|
2005-08-03 00:53:09 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
|
1998-09-28 15:42:54 +00:00
|
|
|
{
|
|
|
|
public:
|
1999-10-01 14:59:52 +00:00
|
|
|
// ctors and such
|
|
|
|
wxFont() { Init(); }
|
|
|
|
wxFont(const wxFont& font) { Init(); Ref(font); }
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
wxFont(int size,
|
2002-02-05 16:34:33 +00:00
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
2005-02-06 17:38:33 +00:00
|
|
|
bool underlined = false,
|
2002-02-05 16:34:33 +00:00
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
1999-10-01 14:59:52 +00:00
|
|
|
{
|
|
|
|
Init();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
(void)Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2000-12-20 18:26:35 +00:00
|
|
|
wxFont(const wxNativeFontInfo& info);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
bool Create(int size,
|
2002-02-05 16:34:33 +00:00
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
2005-02-06 17:38:33 +00:00
|
|
|
bool underlined = false,
|
2002-02-05 16:34:33 +00:00
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
2002-01-01 17:27:49 +00:00
|
|
|
// wxMOTIF-specific
|
|
|
|
bool Create(const wxString& fontname,
|
2002-02-05 16:34:33 +00:00
|
|
|
wxFontEncoding fontenc = wxFONTENCODING_DEFAULT);
|
2002-01-01 17:27:49 +00:00
|
|
|
bool Create(const wxNativeFontInfo& fontinfo);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
virtual ~wxFont();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// assignment
|
|
|
|
wxFont& operator=(const wxFont& font);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
|
|
|
virtual int GetFamily() const;
|
|
|
|
virtual int GetStyle() const;
|
|
|
|
virtual int GetWeight() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2003-09-24 01:23:37 +00:00
|
|
|
virtual const wxNativeFontInfo *GetNativeFontInfo() const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
virtual void SetPointSize(int pointSize);
|
|
|
|
virtual void SetFamily(int family);
|
|
|
|
virtual void SetStyle(int style);
|
|
|
|
virtual void SetWeight(int weight);
|
|
|
|
virtual void SetFaceName(const wxString& faceName);
|
|
|
|
virtual void SetUnderlined(bool underlined);
|
|
|
|
virtual void SetEncoding(wxFontEncoding encoding);
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// Implementation
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// Find an existing, or create a new, XFontStruct
|
|
|
|
// based on this wxFont and the given scale. Append the
|
|
|
|
// font to list in the private data for future reference.
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// TODO This is a fairly basic implementation, that doesn't
|
|
|
|
// allow for different facenames, and also doesn't do a mapping
|
|
|
|
// between 'standard' facenames (e.g. Arial, Helvetica, Times Roman etc.)
|
|
|
|
// and the fonts that are available on a particular system.
|
|
|
|
// Maybe we need to scan the user's machine to build up a profile
|
|
|
|
// of the fonts and a mapping file.
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// Return font struct, and optionally the Motif font list
|
2001-06-21 18:31:43 +00:00
|
|
|
wxXFont *GetInternalFont(double scale = 1.0,
|
2002-02-05 16:34:33 +00:00
|
|
|
WXDisplay* display = NULL) const;
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// These two are helper functions for convenient access of the above.
|
2005-09-30 09:12:58 +00:00
|
|
|
#if wxMOTIF_NEW_FONT_HANDLING
|
|
|
|
WXFontSet GetFontSet(double scale, WXDisplay* display = NULL) const;
|
|
|
|
#else // if !wxMOTIF_NEW_FONT_HANDLING
|
1999-10-01 14:59:52 +00:00
|
|
|
WXFontStructPtr GetFontStruct(double scale = 1.0,
|
2002-02-05 16:34:33 +00:00
|
|
|
WXDisplay* display = NULL) const;
|
2005-09-30 09:12:58 +00:00
|
|
|
#endif // wxMOTIF_NEW_FONT_HANDLING
|
|
|
|
#if wxMOTIF_USE_RENDER_TABLE
|
|
|
|
WXRenderTable GetRenderTable(WXDisplay* display) const;
|
|
|
|
#else // if !wxMOTIF_USE_RENDER_TABLE
|
1999-10-01 14:59:52 +00:00
|
|
|
WXFontList GetFontList(double scale = 1.0,
|
2002-02-05 16:34:33 +00:00
|
|
|
WXDisplay* display = NULL) const;
|
2005-09-30 09:12:58 +00:00
|
|
|
#endif // wxMOTIF_USE_RENDER_TABLE
|
2005-07-31 09:42:16 +00:00
|
|
|
// returns either a XmFontList or XmRenderTable, depending
|
2003-03-05 20:15:35 +00:00
|
|
|
// on Motif version
|
|
|
|
WXFontType GetFontType(WXDisplay* display) const;
|
2005-06-19 19:11:21 +00:00
|
|
|
// like the function above but does a copy for XmFontList
|
|
|
|
WXFontType GetFontTypeC(WXDisplay* display) const;
|
2003-03-05 20:15:35 +00:00
|
|
|
static WXString GetFontTag();
|
1998-09-18 10:19:10 +00:00
|
|
|
protected:
|
2003-02-12 15:42:27 +00:00
|
|
|
virtual void DoSetNativeFontInfo( const wxNativeFontInfo& info );
|
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
void Unshare();
|
2003-02-12 15:42:27 +00:00
|
|
|
|
1999-10-01 14:59:52 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 16:34:33 +00:00
|
|
|
// _WX_FONT_H_
|