X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..41dee9d0ce93989c03848ebd7fc21fb402d4c247:/src/gtk/dcmemory.cpp diff --git a/src/gtk/dcmemory.cpp b/src/gtk/dcmemory.cpp index 804ba3e3a3..f346200a81 100644 --- a/src/gtk/dcmemory.cpp +++ b/src/gtk/dcmemory.cpp @@ -2,9 +2,8 @@ // Name: dcmemory.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// RCS-ID: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -23,35 +22,47 @@ 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 ) { m_selected = bitmap; if (m_selected.Ok()) { - m_window = m_selected.GetPixmap(); + if (m_selected.GetPixmap()) + { + m_window = m_selected.GetPixmap(); + } + else + { + m_window = m_selected.GetBitmap(); + } + 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()) { @@ -62,7 +73,7 @@ void wxMemoryDC::GetSize( int *width, int *height ) { if (width) (*width) = 0; if (height) (*height) = 0; - }; -}; + } +}