\func{wxAuiPaneInfo\&}{Dock}{\void}
+Dock() indicates that a pane should be docked. It is the opposite of Float().
+
+\membersection{wxAuiPaneInfo::DockFixed}\label{wxauipaneinfodockfixed}
+
+\func{wxAuiPaneInfo\&}{DockFixed}{\param{bool }{b = true}}
+
+DockFixed() causes the containing dock to have no resize sash. This is useful for creating panes that span the entire width or height of a dock, but should not be resizable in the other direction.
\membersection{wxAuiPaneInfo::Dockable}\label{wxauipaneinfodockable}
\func{wxAuiPaneInfo\&}{Float}{\void}
-Float() indicates that a pane should be floated.
+Float() indicates that a pane should be floated. It is the opposite of Dock().
\membersection{wxAuiPaneInfo::Floatable}\label{wxauipaneinfofloatable}
wxAuiPaneInfo& RightDockable(bool b = true) { return SetFlag(optionRightDockable, b); }
wxAuiPaneInfo& Floatable(bool b = true) { return SetFlag(optionFloatable, b); }
wxAuiPaneInfo& Movable(bool b = true) { return SetFlag(optionMovable, b); }
+ wxAuiPaneInfo& DockFixed(bool b = true) { return SetFlag(optionDockFixed, b); }
wxAuiPaneInfo& Dockable(bool b = true)
{
optionActive = 1 << 14,
optionGripperTop = 1 << 15,
optionMaximized = 1 << 16,
+ optionDockFixed = 1 << 17,
buttonClose = 1 << 21,
buttonMaximize = 1 << 22,
dock.fixed = false;
if (!pane.IsToolbar())
dock.toolbar = false;
+ if (pane.HasFlag(wxAuiPaneInfo::optionDockFixed))
+ dock.fixed = true;
if (pane.state & wxAuiPaneInfo::actionPane)
action_pane_marked = true;
}