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:
@@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user