More Motif stuff
[wxWidgets.git] / src / motif / dcscreen.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dcscreen.cpp
3 // Purpose: wxScreenDC class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "dcscreen.h"
14 #endif
15
16 #include "wx/dcscreen.h"
17
18 #if !USE_SHARED_LIBRARY
19 IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
20 #endif
21
22 // Create a DC representing the whole screen
23 wxScreenDC::wxScreenDC()
24 {
25 // TODO
26 }
27
28 wxScreenDC::~wxScreenDC()
29 {
30 // TODO
31 }
32
33 bool wxScreenDC::StartDrawingOnTop(wxWindow* window)
34 {
35 // TODO
36 return FALSE;
37 }
38
39 bool wxScreenDC::StartDrawingOnTop(wxRect* rect = NULL)
40 {
41 // TODO
42 return FALSE;
43 }
44
45 bool wxScreenDC::EndDrawingOnTop()
46 {
47 // TODO
48 return TRUE;
49 }