]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/docs/latex/fl/cbcommonpaneproperties.tex
use full 32bit range for the process ids
[wxWidgets.git] / contrib / docs / latex / fl / cbcommonpaneproperties.tex
index 3a895bc4da154087699528c9c29672297bce5389..0ef8e1d74127c03bee2ea569dc749ba64a326596 100644 (file)
@@ -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}
 
-<controlbar.h>
+<wx/fl/controlbar.h>
 
 \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}
+