]> git.saurik.com Git - wxWidgets.git/commitdiff
allow customization of individual grid lines appearance (patch 1496015)
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 24 Jul 2006 23:16:37 +0000 (23:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 24 Jul 2006 23:16:37 +0000 (23:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/auimanager.tex

index 71a9d271fc46d5705c5927423f5baa39ca2d16a9..b112c5378f1363d2814be8b9cf388cf46e28da63 100644 (file)
@@ -167,6 +167,10 @@ Returns the current art provider being used.
 
 See also: \helpref{wxAuiDockArt}{wxauidockart}.
 
+\func{void}{GetDockSizeConstraint}{\param{double* }{width_pct}, \param{double* }{height_pct}}
+
+Returns the current dock constraint values.  See SetDockSizeConstraint() for more information.
+
 \membersection{wxAuiManager::GetFlags}\label{wxauimanagergetflags}
 
 \constfunc{unsigned int}{GetFlags}{\void}
@@ -266,6 +270,15 @@ will be deleted by wxAuiManager.
 
 See also: \helpref{wxAuiDockArt}{wxauidockart}.
 
+\func{void}{SetDockSizeConstraint}{\param{double }{width_pct}, \param{double }{height_pct}}
+
+When a user creates a new dock by dragging a window into a docked position, often times the large size of the
+window will create a dock that is unwieldly large.  wxAuiManager by default limits the size of any
+new dock to 1/3 of the window size.  For horizontal docks, this would be 1/3 of the window height.  For
+vertical docks, 1/3 of the width.  Calling this function will adjust this constraint value.  The numbers
+must be between 0.0 and 1.0.  For instance, calling SetDockSizeContraint with 0.5, 0.5 will cause new
+docks to be limited to half of the size of the entire managed window. 
+
 \membersection{wxAuiManager::SetFlags}\label{wxauimanagersetflags}
 
 \func{void}{SetFlags}{\param{unsigned int }{flags}}