// Purpose:
// Author: Robert Roebling
// Id: $Id$
-// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Copyright: (c) 1998 Robert Roebling and Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "font.h"
#endif
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
#include "wx/font.h"
#include "wx/fontutil.h"
#include "wx/cmndata.h"
#endif // GTK 2.0/1.x
}
+#ifndef __WXGTK20__
+ // reinitilize the font with the gived XFLD
+ void ReInit(const wxString& fontname);
+#endif
+
// setters: all of them also take care to modify m_nativeFontInfo if we
// have it so as to not lose the information not carried by our fields
void SetPointSize(int pointSize);
void SetFaceName(const wxString& facename);
void SetEncoding(wxFontEncoding encoding);
+ void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
+ bool GetNoAntiAliasing() { return m_noAA; }
+
// and this one also modifies all the other font data fields
void SetNativeFontInfo(const wxNativeFontInfo& info);
void InitFromNative();
private:
-#ifdef __WXGTK20__
- void ClearGdkFonts() { }
-#else // GTK 1.x
- // clear m_scaled_xfonts
+ // clear m_scaled_xfonts if any
void ClearGdkFonts();
+#ifndef __WXGTK20__
// the map of font sizes to "GdkFont *"
wxScaledFontList m_scaled_xfonts;
#endif // GTK 2.0/1.x
- // the broken down font parameters
int m_pointSize;
int m_family,
m_style,
bool m_underlined;
wxString m_faceName;
wxFontEncoding m_encoding; // Unused under GTK 2.0
+ bool m_noAA; // No anti-aliasing
// The native font info, basicly an XFLD under GTK 1.2 and
// the pango font description under GTK 2.0.
friend class wxFont;
};
-// ============================================================================
-// wxFontRefData implementation
-// ============================================================================
-
// ----------------------------------------------------------------------------
-// wxFontRefData creation
+// wxFontRefData
// ----------------------------------------------------------------------------
void wxFontRefData::Init(int pointSize,
m_underlined = underlined;
m_encoding = encoding;
+ m_noAA = FALSE;
+
#ifdef __WXGTK20__
// Create native font info
m_nativeFontInfo.description = pango_font_description_new();
// And set its values
- switch (m_family)
- {
- case wxFONTFAMILY_MODERN:
- case wxFONTFAMILY_TELETYPE:
- pango_font_description_set_family( m_nativeFontInfo.description, "monospace" );
- break;
- case wxFONTFAMILY_SWISS:
- pango_font_description_set_family( m_nativeFontInfo.description, "serif" );
- break;
- default:
- pango_font_description_set_family( m_nativeFontInfo.description, "sans" );
- break;
+ if (!m_faceName.empty())
+ {
+ pango_font_description_set_family( m_nativeFontInfo.description, wxGTK_CONV(m_faceName) );
}
+ else
+ {
+ switch (m_family)
+ {
+ case wxFONTFAMILY_MODERN:
+ case wxFONTFAMILY_TELETYPE:
+ pango_font_description_set_family( m_nativeFontInfo.description, "monospace" );
+ break;
+ case wxFONTFAMILY_ROMAN:
+ pango_font_description_set_family( m_nativeFontInfo.description, "serif" );
+ break;
+ case wxFONTFAMILY_SWISS:
+ // SWISS = sans serif
+ default:
+ pango_font_description_set_family( m_nativeFontInfo.description, "sans" );
+ break;
+ }
+ }
+
SetStyle( m_style );
SetPointSize( m_pointSize );
SetWeight( m_weight );
void wxFontRefData::InitFromNative()
{
+ m_noAA = FALSE;
+
#ifdef __WXGTK20__
// Get native info
PangoFontDescription *desc = m_nativeFontInfo.description;
{
m_family = wxFONTFAMILY_SWISS;
}
+ else if (m_faceName == wxT("serif"))
+ {
+ m_family = wxFONTFAMILY_ROMAN;
+ }
else
{
m_family = wxFONTFAMILY_UNKNOWN;
m_faceName = data.m_faceName;
m_encoding = data.m_encoding;
- m_nativeFontInfo = data.m_nativeFontInfo;
+ m_noAA = data.m_noAA;
+
+ // Forces a copy of the internal data. wxNativeFontInfo should probably
+ // have a copy ctor and assignment operator to fix this properly but that
+ // would break binary compatibility...
+ m_nativeFontInfo.FromString(data.m_nativeFontInfo.ToString());
}
wxFontRefData::wxFontRefData(int size, int family, int style,
}
#ifndef __WXGTK20__
+void wxFontRefData::ReInit(const wxString& fontname)
+{
+ m_nativeFontInfo.SetXFontName(fontname);
+
+ InitFromNative();
+}
+#endif
+
void wxFontRefData::ClearGdkFonts()
{
+#ifndef __WXGTK20__
for ( wxScaledFontList::iterator i = m_scaled_xfonts.begin();
i != m_scaled_xfonts.end();
++i )
}
m_scaled_xfonts.clear();
-}
#endif // GTK 1.x
+}
wxFontRefData::~wxFontRefData()
{
{
m_weight = weight;
-#ifndef __WXGTK20__
+#ifdef __WXGTK20__
+ PangoFontDescription *desc = m_nativeFontInfo.description;
+ switch ( weight )
+ {
+ case wxFONTWEIGHT_BOLD:
+ pango_font_description_set_weight(desc, PANGO_WEIGHT_BOLD);
+ break;
+
+ case wxFONTWEIGHT_LIGHT:
+ pango_font_description_set_weight(desc, PANGO_WEIGHT_LIGHT);
+ break;
+
+ default:
+ wxFAIL_MSG( _T("unknown font weight") );
+ // fall through
+
+ case wxFONTWEIGHT_NORMAL:
+ // unspecified
+ pango_font_description_set_weight(desc, PANGO_WEIGHT_NORMAL);
+ }
+#else //!__WXGTK20__
if ( HasNativeFont() )
{
wxString boldness;
InitFromNative();
}
-// ============================================================================
-// wxFont implementation
-// ============================================================================
-
// ----------------------------------------------------------------------------
// wxFont creation
// ----------------------------------------------------------------------------
info.GetFaceName(),
info.GetEncoding() );
#else
- Create(info.GetXFontName());
+ (void) Create(info.GetXFontName());
#endif
}
const wxString& face,
wxFontEncoding encoding)
{
+ UnRef();
+
m_refData = new wxFontRefData(pointSize, family, style, weight,
underlined, face, encoding);
// accessors
// ----------------------------------------------------------------------------
-// all accessors are just forwarded to wxFontRefData which has everything we
-// need
-
int wxFont::GetPointSize() const
{
wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
return M_FONTDATA->m_encoding;
}
-wxNativeFontInfo *wxFont::GetNativeFontInfo() const
+bool wxFont::GetNoAntiAliasing()
+{
+ wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
+
+ return M_FONTDATA->m_noAA;
+}
+
+const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
{
wxCHECK_MSG( Ok(), (wxNativeFontInfo *)NULL, wxT("invalid font") );
-#ifndef __WXGTK20__ // ???
+#ifndef __WXGTK20__
if ( M_FONTDATA->m_nativeFontInfo.GetXFontName().empty() )
GetInternalFont();
#endif
- return new wxNativeFontInfo(M_FONTDATA->m_nativeFontInfo);
+ return &(M_FONTDATA->m_nativeFontInfo);
}
bool wxFont::IsFixedWidth() const
M_FONTDATA->SetEncoding(encoding);
}
-void wxFont::SetNativeFontInfo(const wxNativeFontInfo& info)
+void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo& info )
+{
+ Unshare();
+
+ M_FONTDATA->SetNativeFontInfo( info );
+}
+
+void wxFont::SetNoAntiAliasing( bool no )
{
Unshare();
- M_FONTDATA->SetNativeFontInfo(info);
+ M_FONTDATA->SetNoAntiAliasing( no );
}
// ----------------------------------------------------------------------------
// get internal representation of font
// ----------------------------------------------------------------------------
+#ifndef __WXGTK20__
static GdkFont *g_systemDefaultGuiFont = (GdkFont*) NULL;
// this is also used from tbargtk.cpp and tooltip.cpp, hence extern
GtkStyle *def = gtk_rc_get_style( widget );
if (def)
{
- g_systemDefaultGuiFont = gdk_font_ref( GET_STYLE_FONT(def) );
+ g_systemDefaultGuiFont = gdk_font_ref( def->font );
}
else
{
def = gtk_widget_get_default_style();
if (def)
- g_systemDefaultGuiFont = gdk_font_ref( GET_STYLE_FONT(def) );
+ g_systemDefaultGuiFont = gdk_font_ref( def->font );
}
gtk_widget_destroy( widget );
}
wxCHECK_MSG( Ok(), font, wxT("invalid font") )
-#ifdef __WXGTK20__
- if (*this == wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT))
- {
- font = GtkGetDefaultGuiFont();
- }
- else
- {
- PangoFontDescription *
- font_description = GetNativeFontInfo()->description;
-
- font = gdk_font_from_description( font_description );
- }
-#else // GTK 1.x
long int_scale = long(scale * 100.0 + 0.5); // key for fontlist
int point_scale = (int)((M_FONTDATA->m_pointSize * 10 * int_scale) / 100);
&xfontname);
if ( font )
{
- M_FONTDATA->m_nativeFontInfo.SetXFontName(xfontname);
+ M_FONTDATA->ReInit(xfontname);
}
}
}
list[int_scale] = font;
}
}
-#endif // GTK 2.0/1.x
// it's quite useless to make it a wxCHECK because we're going to crash
// anyhow...
return font;
}
+#endif // not GTK 2.0