]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcgraph.h
support SDK < 10.6, fixes #14902
[wxWidgets.git] / include / wx / dcgraph.h
index afe88c83d829030f67575e24c3c9896da56fae0f..d010b63ae405804ebf4c11102a3f0aa1ada049cf 100644 (file)
@@ -109,6 +109,8 @@ public:
     wxGraphicsContext* GetGraphicsContext() const { return m_graphicContext; }
     virtual void SetGraphicsContext( wxGraphicsContext* ctx );
 
+    virtual void* GetHandle() const;
+
     // the true implementations
     virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
                              wxFloodFillStyle style = wxFLOOD_SURFACE);
@@ -201,6 +203,10 @@ public:
 #endif // __WXMSW__
 
 protected:
+    // unused int parameter distinguishes this version, which does not create a
+    // wxGraphicsContext, in the expectation that the derived class will do it
+    wxGCDCImpl(wxDC* owner, int);
+
     // scaling variables
     bool m_logicalFunctionSupported;
     wxGraphicsMatrix m_matrixOriginal;