1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: font.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
1998-05-20 14:01:55 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
|
1998-12-09 17:30:17 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKFONTH__
|
|
|
|
#define __GTKFONTH__
|
|
|
|
|
2002-09-07 12:28:46 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-09-29 19:02:07 +00:00
|
|
|
#pragma interface
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/hash.h"
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// classes
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class wxDC;
|
|
|
|
class wxPaintDC;
|
|
|
|
class wxWindow;
|
|
|
|
|
|
|
|
class wxFont;
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// wxFont
|
1999-09-29 19:02:07 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
class wxFont : public wxFontBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-12-18 13:35:58 +00:00
|
|
|
public:
|
1999-09-29 19:02:07 +00:00
|
|
|
// ctors and such
|
|
|
|
wxFont() { Init(); }
|
2001-08-01 15:00:33 +00:00
|
|
|
wxFont(const wxFont& font) : wxFontBase() { Init(); Ref(font); }
|
2002-01-18 20:01:49 +00:00
|
|
|
|
|
|
|
// wxGTK-specific
|
|
|
|
wxFont(const wxString& fontname)
|
2000-12-18 21:15:16 +00:00
|
|
|
{
|
|
|
|
Init();
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2002-01-18 20:01:49 +00:00
|
|
|
Create(fontname);
|
2000-12-18 21:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxFont(const wxNativeFontInfo& info);
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
wxFont(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = FALSE,
|
|
|
|
const wxString& face = wxEmptyString,
|
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
(void)Create(size, family, style, weight, underlined, face, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(int size,
|
|
|
|
int family,
|
|
|
|
int style,
|
|
|
|
int weight,
|
|
|
|
bool underlined = FALSE,
|
|
|
|
const wxString& face = wxEmptyString,
|
2000-12-18 21:15:16 +00:00
|
|
|
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
|
2000-12-18 01:00:25 +00:00
|
|
|
|
2000-12-18 21:15:16 +00:00
|
|
|
// wxGTK-specific
|
2002-01-18 20:01:49 +00:00
|
|
|
bool Create(const wxString& fontname);
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
~wxFont();
|
|
|
|
|
2000-12-18 21:15:16 +00:00
|
|
|
// assignment
|
|
|
|
wxFont& operator=(const wxFont& font);
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual int GetPointSize() const;
|
|
|
|
virtual int GetFamily() const;
|
|
|
|
virtual int GetStyle() const;
|
|
|
|
virtual int GetWeight() const;
|
|
|
|
virtual wxString GetFaceName() const;
|
|
|
|
virtual bool GetUnderlined() const;
|
|
|
|
virtual wxFontEncoding GetEncoding() const;
|
2000-12-18 21:15:16 +00:00
|
|
|
virtual wxNativeFontInfo *GetNativeFontInfo() const;
|
2002-01-14 19:04:35 +00:00
|
|
|
virtual bool IsFixedWidth() const;
|
1999-09-29 19:02:07 +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);
|
2000-12-18 01:00:25 +00:00
|
|
|
virtual void SetNativeFontInfo( const wxNativeFontInfo& info );
|
1999-09-29 19:02:07 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual void SetNoAntiAliasing( bool no = TRUE );
|
|
|
|
virtual bool GetNoAntiAliasing();
|
|
|
|
|
1999-09-29 19:02:07 +00:00
|
|
|
// implementation from now on
|
|
|
|
void Unshare();
|
|
|
|
|
2003-01-26 12:39:51 +00:00
|
|
|
#ifndef __WXGTK20__
|
1999-09-29 19:02:07 +00:00
|
|
|
GdkFont* GetInternalFont(float scale = 1.0) const;
|
2003-01-26 12:39:51 +00:00
|
|
|
#endif
|
1999-09-29 19:02:07 +00:00
|
|
|
|
|
|
|
// no data :-)
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFont)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKFONTH__
|