// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------
// wxMemoryDC
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxMemoryDC
//-----------------------------------------------------------------------------
- m_selected = bitmap;
- if (m_selected.Ok())
- {
- m_window = m_selected.GetPixmap();
- SetUpDC();
- }
- else
- {
- m_ok = FALSE;
- m_window = NULL;
- };
-};
+ m_selected = bitmap;
+ if (m_selected.Ok())
+ {
+ 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 = (GdkWindow *) NULL;
+ }
+}
- if (m_selected.Ok())
- {
- if (width) (*width) = m_selected.GetWidth();
- if (height) (*height) = m_selected.GetHeight();
- }
- else
- {
- if (width) (*width) = 0;
- if (height) (*height) = 0;
- };
-};
+ if (m_selected.Ok())
+ {
+ if (width) (*width) = m_selected.GetWidth();
+ if (height) (*height) = m_selected.GetHeight();
+ }
+ else
+ {
+ if (width) (*width) = 0;
+ if (height) (*height) = 0;
+ }
+}