]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dcmemory.cpp
Fixed resizing of wxTextCtrl
[wxWidgets.git] / src / gtk / dcmemory.cpp
index e947cd2ca79af57f0a13be67d08b4c553efb2f5c..f346200a81233a2829f05aae300c705411911f8c 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        dcmemory.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
 // RCS-ID:      $Id$
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -23,18 +22,20 @@ IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxPaintDC)
 wxMemoryDC::wxMemoryDC(void)
 {
   m_ok = FALSE;
-  m_cmap = gdk_colormap_get_system();
-};
+  
+  m_cmap = gtk_widget_get_default_colormap();
+}
 
 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
 {
   m_ok = FALSE;
-  m_cmap = gdk_colormap_get_system();
-};
+  
+  m_cmap = gtk_widget_get_default_colormap();
+}
 
 wxMemoryDC::~wxMemoryDC(void)
 {
-};
+}
 
 void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
 {
@@ -51,15 +52,17 @@ void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
     }
     
     SetUpDC();
+    
+    m_isMemDC = TRUE;
   }
   else
   {
     m_ok = FALSE;
-    m_window = NULL;
-  };
-};
+    m_window = (GdkWindow *) NULL;
+  }
+}
 
-void wxMemoryDC::GetSize( int *width, int *height )
+void wxMemoryDC::GetSize( int *width, int *height ) const
 {
   if (m_selected.Ok())
   {
@@ -70,7 +73,7 @@ void wxMemoryDC::GetSize( int *width, int *height )
   {
     if (width) (*width) = 0;
     if (height) (*height) = 0;
-  };
-};
+  }
+}