// ----------------------------------------------------------------------------
#ifdef __GNUG__
- #pragma implementation "fontbase.h"
+#pragma implementation "fontbase.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+#pragma hdrstop
#endif
#ifndef WX_PRECOMP
- #include "wx/font.h"
+#include "wx/font.h"
+#include "wx/intl.h"
#endif // WX_PRECOMP
#include "wx/gdicmn.h"
wxNativeFontInfo *fontInfo = new wxNativeFontInfo();
fontInfo->SetPointSize(GetPointSize());
- fontInfo->SetFamily(GetFamily());
+ fontInfo->SetFamily((wxFontFamily)GetFamily());
fontInfo->SetStyle((wxFontStyle)GetStyle());
fontInfo->SetWeight((wxFontWeight)GetWeight());
fontInfo->SetUnderlined(GetUnderlined());
token = tokenizer.GetNextToken();
if ( !token.ToLong(&l) )
return FALSE;
- family = (int)l;
+ family = (wxFontFamily)l;
token = tokenizer.GetNextToken();
if ( !token.ToLong(&l) )
return faceName;
}
+wxFontFamily wxNativeFontInfo::GetFamily() const
+{
+ return family;
+}
+
wxFontEncoding wxNativeFontInfo::GetEncoding() const
{
return encoding;
void wxNativeFontInfo::SetFaceName(wxString facename_)
{
- facename = facename_;
+ faceName = facename_;
+}
+
+void wxNativeFontInfo::SetFamily(wxFontFamily family_)
+{
+ family = family_;
}
void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding_)
// we don't distinguish between the two for now anyhow...
case wxFONTSTYLE_ITALIC:
case wxFONTSTYLE_SLANT:
- desc << _("italic ");
+ desc << _("italic");
break;
}
- if ( !facename.empty() )
+ wxString face = GetFaceName();
+ if ( !face.empty() )
{
- desc << facename << _T(' ');
+ desc << _T(' ') << face;
}
- if ( pointsize != wxNORMAL_FONT->GetPointSize() )
+ int size = GetPointSize();
+ if ( size != wxNORMAL_FONT->GetPointSize() )
{
- desc << pointsize;
+ desc << _T(' ') << size;
}
+
+ wxFontEncoding enc = GetEncoding();
+ if ( enc != wxFONTENCODING_DEFAULT && enc != wxFONTENCODING_SYSTEM )
+ {
+ desc << _T(' ') << wxTheFontMapper->GetEncodingName(enc);
+ }
+
+ return desc;
}
bool wxNativeFontInfo::FromUserString(const wxString& s)
}
else if ( token.ToULong(&size) )
{
- pointsize = (int)size;
+ SetPointSize(size);
}
else if ( (encoding = wxTheFontMapper->CharsetToEncoding(token, FALSE))
!= wxFONTENCODING_DEFAULT )