X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2335974794f0f95aa7a538de40294d34467327a1..a75124d0da255513e83d2e62f963dd849829466b:/docs/latex/wx/size.tex diff --git a/docs/latex/wx/size.tex b/docs/latex/wx/size.tex index 36647ec510..6034d1edbc 100644 --- a/docs/latex/wx/size.tex +++ b/docs/latex/wx/size.tex @@ -30,6 +30,10 @@ None +\wxheading{Library} + +\helpref{wxCore}{librarieslist} + \wxheading{See also} \helpref{wxPoint}{wxpoint}, \helpref{wxRealPoint}{wxrealpoint} @@ -142,12 +146,13 @@ corresponding dimensions of the \arg{size}. \membersection{wxSize::Scale}\label{wxsizescale} -\func{void}{Scale}{\param{float}{ xscale}, \param{float}{ yscale}} +\func{wxSize\&}{Scale}{\param{float}{ xscale}, \param{float}{ yscale}} Scales the dimensions of this object by the given factors. If you want to scale both dimensions by the same factor you can also use the \helpref{operator *=}{wxsizeoperators} +Returns a reference to this object (so that you can concatenate other operations in the same line). \membersection{wxSize::Set}\label{wxsizeset} @@ -197,13 +202,13 @@ Sets the width. Assignment operator. -\func{bool}{operator $==$}{\param{const wxSize\& }{sz}} +\func{bool}{operator $==$}{\param{const wxSize\& }{s1}, \param{const wxSize\& }{s2}} -\func{bool}{operator $!=$}{\param{const wxSize\& }{sz}} +\func{bool}{operator $!=$}{\param{const wxSize\& }{s1}, \param{const wxSize\& }{s2}} -\func{wxSize}{operator $+$}{\param{const wxSize\& }{sz}} +\func{wxSize}{operator $+$}{\param{const wxSize\& }{s1}, \param{const wxSize\& }{s2}} -\func{wxSize}{operator $-$}{\param{const wxSize\& }{sz}} +\func{wxSize}{operator $-$}{\param{const wxSize\& }{s1}, \param{const wxSize\& }{s2}} \func{wxSize\&}{operator $+=$}{\param{const wxSize\& }{sz}} @@ -212,12 +217,15 @@ Assignment operator. Operators for comparison, sum and subtraction between \helpref{wxSize}{wxsize} objects. -\func{wxSize}{operator $/$}{\param{int }{factor}} +\func{wxSize}{operator $/$}{\param{const wxSize\& }{sz}, \param{int }{factor}} -\func{wxSize}{operator $*$}{\param{int }{factor}} +\func{wxSize}{operator $*$}{\param{const wxSize\& }{sz}, \param{int }{factor}} + +\func{wxSize}{operator $*$}{\param{int }{factor}, \param{const wxSize\& }{sz}} \func{wxSize\&}{operator $/=$}{\param{int }{factor}} \func{wxSize\&}{operator $*=$}{\param{int }{factor}} Operators for division and multiplication between a \helpref{wxSize}{wxsize} object and an integer. +