]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/tdc.tex
Fixed wxTextCtrl::SetMaxLength for rich edit controls
[wxWidgets.git] / docs / latex / wx / tdc.tex
index 08da3e8c9d37235a3ced84bca6b642166432e593..70500d92ecd2a8a0528a938546ab4941014c2296 100644 (file)
@@ -1,7 +1,7 @@
 \section{Device context overview}\label{dcoverview}
 
-Classes: \helpref{wxDC}{wxdc}, \helpref{wxPostScriptDC}{wxpostscriptdc},\rtfsp
-\rtfsp\helpref{wxMetaFileDC}{wxmetafiledc}, \helpref{wxMemoryDC}{wxmemorydc}, \helpref{wxPrinterDC}{wxprinterdc},\rtfsp
+Classes: \helpref{wxBufferedDC}{wxbuffereddc}, \helpref{wxBufferedPaintDC}{wxbufferedpaintdc}, \helpref{wxDC}{wxdc}, \helpref{wxPostScriptDC}{wxpostscriptdc},\rtfsp
+\rtfsp\helpref{wxMetafileDC}{wxmetafiledc}, \helpref{wxMemoryDC}{wxmemorydc}, \helpref{wxPrinterDC}{wxprinterdc},\rtfsp
 \helpref{wxScreenDC}{wxscreendc}, \helpref{wxClientDC}{wxclientdc}, \helpref{wxPaintDC}{wxpaintdc},\rtfsp
 \helpref{wxWindowDC}{wxwindowdc}.
 
@@ -17,9 +17,9 @@ these device contexts and when you should use them.
 \begin{itemize}\itemsep=0pt
 \item {\bf wxScreenDC.} Use this to paint on the screen, as opposed to an individual window.
 \item {\bf wxClientDC.} Use this to paint on the client area of window (the part without
-borders and other decorations), but do not use it from within an \helpref{wxWindow::OnPaint}{wxwindowonpaint} event.
+borders and other decorations), but do not use it from within an \helpref{wxPaintEvent}{wxpaintevent}.
 \item {\bf wxPaintDC.} Use this to paint on the client area of a window, but {\it only} from
-within an \helpref{wxWindow::OnPaint}{wxwindowonpaint} event.
+within a \helpref{wxPaintEvent}{wxpaintevent}.
 \item {\bf wxWindowDC.} Use this to paint on the whole area of a window, including decorations.
 This may not be available on non-Windows platforms.
 \end{itemize}