]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcsvg.h
Add support for wxAuiNotebook to XRC.
[wxWidgets.git] / include / wx / dcsvg.h
index cae6308db4f3f2ec9dc2085cc51efa1c55c76a19..dc541ae799f30304aee316772dbeeabe82f034fd 100644 (file)
@@ -186,16 +186,18 @@ private:
 
    void Init (const wxString &filename, int width, int height, double dpi);
 
-   void NewGraphics();
-
    void write( const wxString &s );
 
 private:
+   // If m_graphics_changed is true, close the current <g> element and start a
+   // new one for the last pen/brush change.
+   void NewGraphicsIfNeeded();
+
    wxFileOutputStream *m_outfile;
    wxString            m_filename;
    int                 m_sub_images; // number of png format images we have
    bool                m_OK;
-   bool                m_graphics_changed;
+   bool                m_graphics_changed;  // set by Set{Brush,Pen}()
    int                 m_width, m_height;
    double              m_dpi;