]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/layout.tex
fixed another return FALSE in a function returning a pointer (patch 545046)
[wxWidgets.git] / docs / latex / wx / layout.tex
index 2b9e2e5dbcbdf2961ac3cfb62627edc338e5b5e9..e7cb36b22f6f8ba8be880359e93d4803ee1ea7a9 100644 (file)
@@ -1,5 +1,7 @@
 \section{\class{wxLayoutConstraints}}\label{wxlayoutconstraints}
 
+{\bf Note:} constraints are now deprecated and you should use \helpref{sizers}{sizeroverview} instead.
+
 Objects of this class can be associated with a window to define its
 layout constraints, with respect to siblings or its parent.
 
@@ -26,10 +28,22 @@ width and height will be used, to be compatible with panel items which often
 have take a default size. If the constraint is wxAsIs, the dimension will
 not be changed.
 
+\perlnote{In wxPerl the constraints are accessed as
+\begin{verbatim}
+  constraint = Wx::LayoutConstraints->new();
+  constraint->centreX->AsIs();
+  constraint->centreY->Unconstrained();
+\end{verbatim}
+}
+
 \wxheading{Derived from}
 
 \helpref{wxObject}{wxobject}
 
+\wxheading{Include files}
+
+<wx/layout.h>
+
 \wxheading{See also}
 
 \helpref{Overview and examples}{constraintsoverview},\rtfsp