1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxScreenDC class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dcscreen.h"
16 #include "wx/dcscreen.h"
21 #include <wx/motif/private.h>
23 #if !USE_SHARED_LIBRARY
24 IMPLEMENT_DYNAMIC_CLASS(wxScreenDC
, wxWindowDC
)
27 WXWindow
wxScreenDC::sm_overlayWindow
= 0;
28 int wxScreenDC::sm_overlayWindowX
= 0;
29 int wxScreenDC::sm_overlayWindowY
= 0;
31 // Create a DC representing the whole screen
32 wxScreenDC::wxScreenDC()
34 m_display
= wxGetDisplay();
35 Display
* display
= (Display
*) m_display
;
39 m_pixmap
= sm_overlayWindow
;
40 m_deviceOriginX
= - sm_overlayWindowX
;
41 m_deviceOriginY
= - sm_overlayWindowY
;
44 m_pixmap
= (WXPixmap
) RootWindow(display
, DefaultScreen(display
));
47 gcvalues
.foreground
= BlackPixel (display
, DefaultScreen (display
));
48 gcvalues
.background
= WhitePixel (display
, DefaultScreen (display
));
49 gcvalues
.graphics_exposures
= False
;
50 gcvalues
.subwindow_mode
= IncludeInferiors
;
51 gcvalues
.line_width
= 1;
52 m_gc
= XCreateGC (display
, RootWindow (display
, DefaultScreen (display
)),
53 GCForeground
| GCBackground
| GCGraphicsExposures
| GCLineWidth
| GCSubwindowMode
,
56 m_backgroundPixel
= (int) gcvalues
.background
;
60 wxScreenDC::~wxScreenDC()
64 bool wxScreenDC::StartDrawingOnTop(wxWindow
* window
)
67 int x
, y
, width
, height
;
68 window
->GetPosition(& x
, & y
);
69 if (window
->GetParent())
70 window
->GetParent()->ClientToScreen(& x
, & y
);
71 window
->GetSize(& width
, & height
);
72 rect
.x
= x
; rect
.y
= y
;
73 rect
.width
= width
; rect
.height
= height
;
75 return StartDrawingOnTop(& rect
);
78 bool wxScreenDC::StartDrawingOnTop(wxRect
* rect
)
83 Display
*dpy
= (Display
*) wxGetDisplay();
84 Pixmap screenPixmap
= RootWindow(dpy
, DefaultScreen(dpy
));
89 wxDisplaySize(&width
, &height
);
93 x
= rect
->x
; y
= rect
->y
;
94 width
= rect
->width
; height
= rect
->height
;
96 sm_overlayWindowX
= x
;
97 sm_overlayWindowY
= y
;
99 XSetWindowAttributes attributes
;
100 attributes
.override_redirect
= True
;
101 unsigned long valueMask
= CWOverrideRedirect
;
103 sm_overlayWindow
= (WXWindow
) XCreateWindow(dpy
, screenPixmap
, x
, y
, width
, height
, 0,
104 wxDisplayDepth(), InputOutput
,
105 DefaultVisual(dpy
, 0), valueMask
,
108 if (sm_overlayWindow
)
110 XMapWindow(dpy
, (Window
) sm_overlayWindow
);
117 bool wxScreenDC::EndDrawingOnTop()
119 if (sm_overlayWindow
)
121 XDestroyWindow((Display
*) wxGetDisplay(), (Window
) sm_overlayWindow
);
122 sm_overlayWindow
= 0;