- XGCValues gcvalues;
- gcvalues.foreground = BlackPixel (display, DefaultScreen (display));
- gcvalues.background = WhitePixel (display, DefaultScreen (display));
- gcvalues.graphics_exposures = False;
- gcvalues.line_width = 1;
- m_gc = (WXGC) XCreateGC (display, RootWindow (display, DefaultScreen (display)),
- GCForeground | GCBackground | GCGraphicsExposures | GCLineWidth,
- &gcvalues);
-
- m_backgroundPixel = (int) gcvalues.background;
-
- // Get the current Font so we can set it back later
- XGCValues valReturn;
- XGetGCValues((Display*) m_display, (GC) m_gc, GCFont, &valReturn);
- m_oldFont = (WXFont) valReturn.font;
-
- bool oldOpt = GetOptimization();
- SetOptimization(FALSE);
-
- SetBrush (wxWHITE_BRUSH);
- SetPen (wxBLACK_PEN);
-
- SetOptimization(oldOpt);
-
- m_ok = TRUE;
- }
- else
- {
- m_ok = FALSE;
- m_pixmap = (WXPixmap) 0;
- };
-};
-
-void wxMemoryDC::GetSize( int *width, int *height ) const