git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44788
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
const wxString& face = wxEmptyString,
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
const wxString& face = wxEmptyString,
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
+ // this is the same as FreeResource() followed by RealizeResource()
+ bool Recreate();
+
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
// implement wxObject virtuals which are used by AllocExclusive()
virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
// implement wxObject virtuals which are used by AllocExclusive()
m_refData = new wxFontRefData(info, hFont);
m_refData = new wxFontRefData(info, hFont);
- RealizeResource();
-
- return true;
+ return RealizeResource();
}
wxFont::wxFont(const wxString& fontdesc)
}
wxFont::wxFont(const wxString& fontdesc)
-/* Constructor for a font. Note that the real construction is done
- * in wxDC::SetFont, when information is available about scaling etc.
- */
bool wxFont::DoCreate(int pointSize,
const wxSize& pixelSize,
bool sizeUsingPixels,
bool wxFont::DoCreate(int pointSize,
const wxSize& pixelSize,
bool sizeUsingPixels,
family, style, weight,
underlined, faceName, encoding);
family, style, weight,
underlined, faceName, encoding);
- RealizeResource();
-
- return true;
+ return RealizeResource();
bool wxFont::RealizeResource()
{
bool wxFont::RealizeResource()
{
- if ( GetResourceHandle() )
- {
- // VZ: the old code returned false in this case, but it doesn't seem
- // to make sense because the font _was_ created
+ // don't do anything if we already have a valid font
+ if ( GetHFONT() )
return M_FONTDATA->Alloc(this);
}
bool wxFont::FreeResource(bool WXUNUSED(force))
{
return M_FONTDATA->Alloc(this);
}
bool wxFont::FreeResource(bool WXUNUSED(force))
{
- if ( GetResourceHandle() )
- {
- M_FONTDATA->Free();
+ if ( !GetHFONT() )
+ return false;
}
WXHANDLE wxFont::GetResourceHandle() const
}
WXHANDLE wxFont::GetResourceHandle() const
return M_FONTDATA && (M_FONTDATA->GetHFONT() == 0);
}
return M_FONTDATA && (M_FONTDATA->GetHFONT() == 0);
}
+bool wxFont::Recreate()
+{
+ // this function can be used to recreate the font after its wxFontRefData
+ // changes and does it unconditionally, i.e. even if already had a valid
+ // font before
+ wxCHECK_MSG( M_FONTDATA, false, _T("no font to recreate") );
+
+ M_FONTDATA->Free();
+ return M_FONTDATA->Alloc(this);
+}
+
// ----------------------------------------------------------------------------
// change font attribute: we recreate font when doing it
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// change font attribute: we recreate font when doing it
// ----------------------------------------------------------------------------
M_FONTDATA->SetPointSize(pointSize);
M_FONTDATA->SetPointSize(pointSize);
}
void wxFont::SetPixelSize(const wxSize& pixelSize)
}
void wxFont::SetPixelSize(const wxSize& pixelSize)
M_FONTDATA->SetPixelSize(pixelSize);
M_FONTDATA->SetPixelSize(pixelSize);
}
void wxFont::SetFamily(int family)
}
void wxFont::SetFamily(int family)
M_FONTDATA->SetFamily(family);
M_FONTDATA->SetFamily(family);
}
void wxFont::SetStyle(int style)
}
void wxFont::SetStyle(int style)
M_FONTDATA->SetStyle(style);
M_FONTDATA->SetStyle(style);
}
void wxFont::SetWeight(int weight)
}
void wxFont::SetWeight(int weight)
M_FONTDATA->SetWeight(weight);
M_FONTDATA->SetWeight(weight);
}
bool wxFont::SetFaceName(const wxString& faceName)
}
bool wxFont::SetFaceName(const wxString& faceName)
bool refdataok = M_FONTDATA->SetFaceName(faceName);
bool refdataok = M_FONTDATA->SetFaceName(faceName);
// NB: using win32's GetObject() API on M_FONTDATA->GetHFONT()
// to retrieve a LOGFONT and then compare lf.lfFaceName
// NB: using win32's GetObject() API on M_FONTDATA->GetHFONT()
// to retrieve a LOGFONT and then compare lf.lfFaceName
M_FONTDATA->SetUnderlined(underlined);
M_FONTDATA->SetUnderlined(underlined);
}
void wxFont::SetEncoding(wxFontEncoding encoding)
}
void wxFont::SetEncoding(wxFontEncoding encoding)
M_FONTDATA->SetEncoding(encoding);
M_FONTDATA->SetEncoding(encoding);
}
void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo& info)
}
void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo& info)
*M_FONTDATA = wxFontRefData(info);
*M_FONTDATA = wxFontRefData(info);
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------