X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a660d684eda27638bca0384b2058911a31c8e845..a3dae7b72cd2d1852398892d514eafd65cd34b64:/docs/latex/wx/point.tex diff --git a/docs/latex/wx/point.tex b/docs/latex/wx/point.tex index 9446ebb6fa..a1393199a5 100644 --- a/docs/latex/wx/point.tex +++ b/docs/latex/wx/point.tex @@ -1,3 +1,13 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% Name: point.tex +%% Purpose: wxPoint documentation +%% Author: wxTeam +%% Created: +%% RCS-ID: $Id$ +%% Copyright: (c) wxTeam +%% License: wxWindows license +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \section{\class{wxPoint}}\label{wxpoint} A {\bf wxPoint} is a useful data structure for graphics operations. @@ -5,9 +15,13 @@ It simply contains integer {\it x} and {\it y} members. See also \helpref{wxRealPoint}{wxrealpoint} for a floating point version. -\wxheading{Derivation} +\wxheading{Derived from} + +None + +\wxheading{Include files} -\helpref{wxObject}{wxobject} + \wxheading{See also} @@ -15,7 +29,7 @@ See also \helpref{wxRealPoint}{wxrealpoint} for a floating point version. \latexignore{\rtfignore{\wxheading{Members}}} -\membersection{wxPoint::wxPoint} +\membersection{wxPoint::wxPoint}\label{wxpointctor} \func{}{wxPoint}{\void} @@ -23,15 +37,48 @@ See also \helpref{wxRealPoint}{wxrealpoint} for a floating point version. Create a point. -\membersection{wxPoint::x} +\membersection{wxPoint::x}\label{wxpointx} \member{int}{x} x member. -\membersection{wxPoint::y} +\membersection{wxPoint::y}\label{wxpointy} \member{int}{ y} y member. +\membersection{Operators}\label{wxpointoperators} + +\func{void}{operator $=$}{\param{const wxPoint\& }{pt}} + +Assignment operator. + + +\func{bool}{operator $==$}{\param{const wxPoint\& }{pt}} + +\func{bool}{operator $!=$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint}{operator $+$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint}{operator $-$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint\&}{operator $+=$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint\&}{operator $-=$}{\param{const wxPoint\& }{pt}} + +Operators for comparison, sum and subtraction between \helpref{wxPoint}{wxpoint} objects. + + +\func{wxPoint}{operator $+$}{\param{const wxSize\& }{sz}} + +\func{wxPoint}{operator $-$}{\param{const wxSize\& }{sz}} + +\func{wxPoint\&}{operator $+=$}{\param{const wxSize\& }{sz}} + +\func{wxPoint\&}{operator $-=$}{\param{const wxSize\& }{sz}} + +Operators for sum and subtraction between a \helpref{wxPoint}{wxpoint} object and a +\helpref{wxSize}{wxsize} object. +