]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/overlay.h
don't use DECLARE_EVENT_TYPE() to avoid confusing people about its unused value param...
[wxWidgets.git] / include / wx / overlay.h
index a5e2d97be6c3c044f3fa2782942ba80f37750a4e..b89e98889916df9d7b024797ed74c771e9757ee6 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "wx/defs.h"
 
 
 #include "wx/defs.h"
 
-#if defined(wxMAC_USE_CORE_GRAPHICS) && wxMAC_USE_CORE_GRAPHICS
+#if defined(wxMAC_USE_CORE_GRAPHICS) && wxMAC_USE_CORE_GRAPHICS && wxMAC_USE_QUICKDRAW
     #define wxHAS_NATIVE_OVERLAY 1
 #elif defined(__WXDFB__)
     #define wxHAS_NATIVE_OVERLAY 1
     #define wxHAS_NATIVE_OVERLAY 1
 #elif defined(__WXDFB__)
     #define wxHAS_NATIVE_OVERLAY 1
@@ -29,7 +29,7 @@
 // ----------------------------------------------------------------------------
 
 class WXDLLIMPEXP_FWD_CORE wxOverlayImpl;
 // ----------------------------------------------------------------------------
 
 class WXDLLIMPEXP_FWD_CORE wxOverlayImpl;
-class WXDLLIMPEXP_FWD_CORE wxWindowDC;
+class WXDLLIMPEXP_FWD_CORE wxDC;
 
 class WXDLLEXPORT wxOverlay
 {
 
 class WXDLLEXPORT wxOverlay
 {
@@ -50,13 +50,13 @@ private:
     // returns true if it has been setup
     bool IsOk();
 
     // returns true if it has been setup
     bool IsOk();
 
-    void Init(wxWindowDC* dc, int x , int y , int width , int height);
+    void Init(wxDC* dc, int x , int y , int width , int height);
 
 
-    void BeginDrawing(wxWindowDC* dc);
+    void BeginDrawing(wxDC* dc);
 
 
-    void EndDrawing(wxWindowDC* dc);
+    void EndDrawing(wxDC* dc);
 
 
-    void Clear(wxWindowDC* dc);
+    void Clear(wxDC* dc);
 
     wxOverlayImpl* m_impl;
 
 
     wxOverlayImpl* m_impl;
 
@@ -72,10 +72,10 @@ class WXDLLEXPORT wxDCOverlay
 public:
     // connects this overlay to the corresponding drawing dc, if the overlay is
     // not initialized yet this call will do so
 public:
     // connects this overlay to the corresponding drawing dc, if the overlay is
     // not initialized yet this call will do so
-    wxDCOverlay(wxOverlay &overlay, wxWindowDC *dc, int x , int y , int width , int height);
+    wxDCOverlay(wxOverlay &overlay, wxDC *dc, int x , int y , int width , int height);
 
     // convenience wrapper that behaves the same using the entire area of the dc
 
     // convenience wrapper that behaves the same using the entire area of the dc
-    wxDCOverlay(wxOverlay &overlay, wxWindowDC *dc);
+    wxDCOverlay(wxOverlay &overlay, wxDC *dc);
 
     // removes the connection between the overlay and the dc
     virtual ~wxDCOverlay();
 
     // removes the connection between the overlay and the dc
     virtual ~wxDCOverlay();
@@ -84,11 +84,11 @@ public:
     void Clear();
 
 private:
     void Clear();
 
 private:
-    void Init(wxWindowDC *dc, int x , int y , int width , int height);
+    void Init(wxDC *dc, int x , int y , int width , int height);
 
     wxOverlay& m_overlay;
 
 
     wxOverlay& m_overlay;
 
-    wxWindowDC* m_dc;
+    wxDC* m_dc;
 
 
     DECLARE_NO_COPY_CLASS(wxDCOverlay)
 
 
     DECLARE_NO_COPY_CLASS(wxDCOverlay)