]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dcmemory.h
Forward events to active child at MSW, not wx, level in wxMDIParentFrame.
[wxWidgets.git] / include / wx / gtk / dcmemory.h
index ff470015c82cedf04f4023ad7fd2d06901131946..576c5c53afa65f979ea9c94b40d7579fd074133a 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dcmemory.h
+// Name:        wx/gtk/dcmemory.h
 // Purpose:
 // Author:      Robert Roebling
 // RCS-ID:      $Id$
@@ -23,7 +23,7 @@ public:
     wxMemoryDCImpl( wxMemoryDC *owner );
     wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap );
     wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc );
-    
+
     virtual ~wxMemoryDCImpl();
 
     // these get reimplemented for mono-bitmaps to behave
@@ -39,7 +39,8 @@ public:
     // overridden from wxDCImpl
     virtual void DoGetSize( int *width, int *height ) const;
     virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
-
+    virtual void* GetHandle() const;
+    
     // overridden for wxMemoryDC Impl
     virtual void DoSelect(const wxBitmap& bitmap);
 
@@ -48,12 +49,12 @@ public:
 
 private:
     wxBitmap  m_selected;
-    
+
     void Init();
 
     DECLARE_ABSTRACT_CLASS(wxMemoryDCImpl)
 };
 
-#endif 
+#endif
     // _WX_GTK_DCMEMORY_H_