git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42485
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// wxCairoFont implementation
//-----------------------------------------------------------------------------
// wxCairoFont implementation
//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxCairoFont,wxGraphicsFont)
+
wxCairoFont::wxCairoFont() : wxGraphicsFont(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
wxCairoFont::wxCairoFont() : wxGraphicsFont(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
// wxCairoPath implementation
//-----------------------------------------------------------------------------
// wxCairoPath implementation
//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxCairoPath,wxGraphicsPath)
+
wxCairoPath::wxCairoPath() : wxGraphicsPath(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
wxCairoPath::wxCairoPath() : wxGraphicsPath(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
cairo_line_to(m_pathContext,x,y);
}
cairo_line_to(m_pathContext,x,y);
}
+void wxCairoPath::AddPath( const wxGraphicsPath* path )
+{
+ // TODO
+}
+
void wxCairoPath::CloseSubpath()
{
cairo_close_path(m_pathContext);
void wxCairoPath::CloseSubpath()
{
cairo_close_path(m_pathContext);