]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dcmemory.h
SetTextColour is gone
[wxWidgets.git] / include / wx / motif / dcmemory.h
index ee0cf492ae1dc673eb6b9206f4215cc683c23272..0d453f55058b1457f9a302dc852d628d42965418 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dcmemory.h
+// Name:        wx/motif/dcmemory.h
 // Purpose:     wxMemoryDC class
 // Author:      Julian Smart
 // Modified by:
 class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
 {
     DECLARE_DYNAMIC_CLASS(wxMemoryDC)
-        
+
 public:
-    wxMemoryDC();
+    wxMemoryDC( const wxBitmap& bitmap = wxNullBitmap );
     wxMemoryDC( wxDC *dc ); // Create compatible DC
-    ~wxMemoryDC();
-    
+    virtual ~wxMemoryDC();
+
     virtual void SelectObject( const wxBitmap& bitmap );
-    
+
     void DoGetSize( int *width, int *height ) const;
-    
+
     wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
-    
+
 private:
     friend class wxPaintDC;
-    
+
     wxBitmap  m_bitmap;
 };