]>
Commit | Line | Data |
---|---|---|
7c78e7c7 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "dcscreen.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/dcscreen.h" | |
16 | #include "wx/window.h" | |
17 | ||
18 | //----------------------------------------------------------------------------- | |
19 | // wxScreenDC | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
22 | IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxPaintDC) | |
23 | ||
24 | wxScreenDC::wxScreenDC(void) | |
25 | { | |
26 | m_ok = FALSE; | |
27 | }; | |
28 | ||
29 | wxScreenDC::~wxScreenDC(void) | |
30 | { | |
31 | EndDrawingOnTop(); | |
32 | }; | |
33 | ||
34 | bool wxScreenDC::StartDrawingOnTop( wxWindow *WXUNUSED(window) ) | |
35 | { | |
36 | return TRUE; | |
37 | }; | |
38 | ||
39 | bool wxScreenDC::StartDrawingOnTop( wxRectangle *WXUNUSED(rect) ) | |
40 | { | |
41 | return TRUE; | |
42 | }; | |
43 | ||
44 | bool wxScreenDC::EndDrawingOnTop(void) | |
45 | { | |
46 | return TRUE; | |
47 | }; |