1 \section{\class{wxScreenDC
}}\label{wxscreendc
}
3 A wxScreenDC can be used to paint on the screen.
4 This should normally be constructed as a temporary stack object; don't store
7 \wxheading{Derived from
}
11 \wxheading{Include files
}
17 \helpref{wxCore
}{librarieslist
}
21 \helpref{wxDC
}{wxdc
},
\helpref{wxMemoryDC
}{wxmemorydc
},
\helpref{wxPaintDC
}{wxpaintdc
},
\rtfsp
22 \helpref{wxClientDC
}{wxclientdc
},
\helpref{wxWindowDC
}{wxwindowdc
}
24 \latexignore{\rtfignore{\wxheading{Members
}}}
26 \membersection{wxScreenDC::wxScreenDC
}\label{wxscreendcctor
}
28 \func{}{wxScreenDC
}{\void}
32 \membersection{wxScreenDC::StartDrawingOnTop
}\label{wxscreendcstartdrawingontop
}
34 \func{bool
}{StartDrawingOnTop
}{\param{wxWindow*
}{ window
}}
36 \func{bool
}{StartDrawingOnTop
}{\param{wxRect*
}{ rect = NULL
}}
38 Use this in conjunction with
\helpref{EndDrawingOnTop
}{wxscreendcenddrawingontop
} to
39 ensure that drawing to the screen occurs on top of existing windows. Without this,
40 some window systems (such as X) only allow drawing to take place underneath
43 By using the first form of this function, an application is specifying that
44 the area that will be drawn on coincides with the given window.
46 By using the second form, an application can specify an area of the screen
47 which is to be drawn on. If NULL is passed, the whole screen is available.
49 It is recommended that an area of the screen is specified because with large regions,
50 flickering effects are noticeable when destroying the temporary transparent window used
51 to implement this feature.
53 You might use this pair of functions when implementing a drag feature, for example
54 as in the
\helpref{wxSplitterWindow
}{wxsplitterwindow
} implementation.
58 This function is probably obsolete since the X implementations
59 allow drawing directly on the screen now. However, the fact that this
60 function allows the screen to be refreshed afterwards, may be useful to
63 \membersection{wxScreenDC::EndDrawingOnTop
}\label{wxscreendcenddrawingontop
}
65 \func{bool
}{EndDrawingOnTop
}{\void}
67 Use this in conjunction with
\helpref{StartDrawingOnTop
}{wxscreendcstartdrawingontop
}.
69 This function destroys the temporary window created to implement on-top drawing (X only).