// wxCairoFont implementation
//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxCairoFont,wxGraphicsFont)
+
wxCairoFont::wxCairoFont() : wxGraphicsFont(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
// wxCairoPath implementation
//-----------------------------------------------------------------------------
+IMPLEMENT_DYNAMIC_CLASS(wxCairoPath,wxGraphicsPath)
+
wxCairoPath::wxCairoPath() : wxGraphicsPath(NULL)
{
wxLogDebug(wxT("Illegal Constructor called"));
cairo_line_to(m_pathContext,x,y);
}
+void wxCairoPath::AddPath( const wxGraphicsPath* path )
+{
+ // TODO
+}
+
void wxCairoPath::CloseSubpath()
{
cairo_close_path(m_pathContext);