Document wxRibbonDisplayMode enum.

See #16133.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-04-04 15:28:42 +00:00
parent e83f66259e
commit c65fdfb3e3

View File

@@ -5,6 +5,36 @@
// Licence: wxWindows licence // Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
/**
The possible display modes of the panel area of a wxRibbonBar widget.
@see wxRibbonBar::ShowPanels()
@see wxRibbonBar::GetDisplayMode()
@since 2.9.5
*/
enum wxRibbonDisplayMode
{
/**
The panel area is visible and pinned: it remains visible when the
ribbon bar loses the focus.
*/
wxRIBBON_BAR_PINNED,
/**
The panel area is hidden: only the pages tabs remain visible.
*/
wxRIBBON_BAR_MINIMIZED,
/**
The panel area is visible, but not pinned: it minimizes as soon as the
focus is lost.
*/
wxRIBBON_BAR_EXPANDED
};
/** /**
@class wxRibbonBarEvent @class wxRibbonBarEvent