X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cbc57f086cee690f397ac5622d3f1d7153b300e..965b4f87d9d59c7c6d58da6567dca176d9131296:/contrib/docs/latex/fl/cbcommonpaneproperties.tex diff --git a/contrib/docs/latex/fl/cbcommonpaneproperties.tex b/contrib/docs/latex/fl/cbcommonpaneproperties.tex index 3a895bc4da..0ef8e1d741 100644 --- a/contrib/docs/latex/fl/cbcommonpaneproperties.tex +++ b/contrib/docs/latex/fl/cbcommonpaneproperties.tex @@ -3,13 +3,12 @@ % controlbar.h at 21/Jan/02 21:14:14 % - \section{\class{cbCommonPaneProperties}}\label{cbcommonpaneproperties} - A structure holding configuration options, which are usually the same for all panes in -a frame layout. +a frame layout. For an explanation of the data members, please +see \helpref{Controlling dragging behaviour}{controllingdragbehav}. \wxheading{Derived from} @@ -17,7 +16,43 @@ a frame layout. \wxheading{Include files} - + \wxheading{Data structures} +\begin{verbatim} +class cbCommonPaneProperties : public wxObject +{ + DECLARE_DYNAMIC_CLASS( cbCommonPaneProperties ) + + // Look-and-feel configuration + + bool mRealTimeUpdatesOn; // default: ON + bool mOutOfPaneDragOn; // default: ON + bool mExactDockPredictionOn; // default: OFF + bool mNonDestructFrictionOn; // default: OFF + + bool mShow3DPaneBorderOn; // default: ON + + // The following properties are reserved for the "future" + + bool mBarFloatingOn; // default: OFF + bool mRowProportionsOn; // default: OFF + bool mColProportionsOn; // default: ON + bool mBarCollapseIconsOn; // default: OFF + bool mBarDragHintsOn; // default: OFF + + // Minimal dimensions for not-fixed bars in this pane (16x16 default) + + wxSize mMinCBarDim; + + // Width/height of resizing sash + + int mResizeHandleSize; + + // Default constructor. + + cbCommonPaneProperties(void); +}; +\end{verbatim} +