]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dfb/dc.h
removed spaces; added WXDLLEXPORTs; make overlay classes non copiable
[wxWidgets.git] / include / wx / dfb / dc.h
index e8690c12eadcc4193ace39fc2e078e9c5224825e..e48c20fbce6dfa788f7dc6dfdf0c72116ef76af3 100644 (file)
@@ -13,7 +13,7 @@
 
 #include "wx/defs.h"
 #include "wx/region.h"
-#include "wx/dfb/ifacehelpers.h"
+#include "wx/dfb/dfbptr.h"
 
 wxDFB_DECLARE_INTERFACE(IDirectFBSurface);
 
@@ -27,9 +27,7 @@ public:
     wxDC();
 
     // Ctor.
-    // Takes ownership of the surface, i.e. does not call AddRef() on it
-    // but calls Release() on it from dtor.
-    wxDC(const IDirectFBSurfacePtr& surface);
+    wxDC(const wxIDirectFBSurfacePtr& surface);
 
 public:
     // implement base class pure virtuals
@@ -142,12 +140,12 @@ public:
     }
 
     // Returns the surface (and increases its ref count)
-    IDirectFBSurfacePtr GetDirectFBSurface() const { return m_surface; }
+    wxIDirectFBSurfacePtr GetDirectFBSurface() const { return m_surface; }
 
 protected:
     // initializes the DC from a surface, must be called if default ctor
     // was used
-    void Init(const IDirectFBSurfacePtr& surface);
+    void Init(const wxIDirectFBSurfacePtr& surface);
 
     virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
                              int style = wxFLOOD_SURFACE);
@@ -205,12 +203,16 @@ private:
     void DoDrawSubBitmap(const wxBitmap &bmp,
                          wxCoord x, wxCoord y, wxCoord w, wxCoord h,
                          wxCoord destx, wxCoord desty, int rop, bool useMask);
+    bool DoBlitFromSurface(const wxIDirectFBSurfacePtr& src,
+                           wxCoord srcx, wxCoord srcy,
+                           wxCoord w, wxCoord h,
+                           wxCoord dstx, wxCoord dsty);
 
     // selects colour into surface's state
     void SelectColour(const wxColour& clr);
 
 protected:
-    IDirectFBSurfacePtr m_surface;
+    wxIDirectFBSurfacePtr m_surface;
 
     double            m_mm_to_pix_x, m_mm_to_pix_y;