]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/clientdc.tex
documented Harm's changes to wxHTML help
[wxWidgets.git] / docs / latex / wx / clientdc.tex
CommitLineData
a660d684
KB
1\section{\class{wxClientDC}}\label{wxclientdc}
2
3A wxClientDC must be constructed if an application wishes to paint on the
4client area of a window from outside an {\bf OnPaint} event.
5This should normally be constructed as a temporary stack object; don't store
6a wxClientDC object.
7
8To draw on a window from within {\bf OnPaint}, construct a \helpref{wxPaintDC}{wxpaintdc} object.
9
10To draw on the whole window including decorations, construct a \helpref{wxWindowDC}{wxwindowdc} object
11(Windows only).
12
13\wxheading{Derived from}
14
f53561f1 15\helpref{wxWindowDC}{wxwindowdc}\\
a660d684
KB
16\helpref{wxDC}{wxdc}
17
954b8ae6
JS
18\wxheading{Include files}
19
20<wx/dcclient.h>
21
a660d684
KB
22\wxheading{See also}
23
24\helpref{wxDC}{wxdc}, \helpref{wxMemoryDC}{wxmemorydc}, \helpref{wxPaintDC}{wxpaintdc},\rtfsp
25\helpref{wxWindowDC}{wxwindowdc}, \helpref{wxScreenDC}{wxscreendc}
26
27\latexignore{\rtfignore{\wxheading{Members}}}
28
29\membersection{wxClientDC::wxClientDC}
30
31\func{}{wxClientDC}{\param{wxWindow*}{ window}}
32
33Constructor. Pass a pointer to the window on which you wish to paint.
34
35
36