X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5c14ec264057d86fe60b2bacc09965492652cc0f..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/ribbon/bar.h?ds=sidebyside diff --git a/interface/wx/ribbon/bar.h b/interface/wx/ribbon/bar.h index 93274decc2..e8d9ef3c48 100644 --- a/interface/wx/ribbon/bar.h +++ b/interface/wx/ribbon/bar.h @@ -2,7 +2,6 @@ // Name: ribbon/bar.h // Purpose: interface of wxRibbonBar // Author: Peter Cawley -// RCS-ID: $Id$ // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -64,7 +63,8 @@ public: @beginStyleTable @style{wxRIBBON_BAR_DEFAULT_STYLE} Defined as wxRIBBON_BAR_FLOW_HORIZONTAL | - wxRIBBON_BAR_SHOW_PAGE_LABELS | wxRIBBON_BAR_SHOW_PANEL_EXT_BUTTONS + wxRIBBON_BAR_SHOW_PAGE_LABELS | wxRIBBON_BAR_SHOW_PANEL_EXT_BUTTONS | + wxRIBBON_BAR_SHOW_TOGGLE_BUTTON | wxRIBBON_BAR_SHOW_HELP_BUTTON. @style{wxRIBBON_BAR_FOLDBAR_STYLE} Defined as wxRIBBON_BAR_FLOW_VERTICAL | wxRIBBON_BAR_SHOW_PAGE_ICONS | wxRIBBON_BAR_SHOW_PANEL_EXT_BUTTONS | @@ -83,6 +83,12 @@ public: @style{wxRIBBON_BAR_SHOW_PANEL_MINIMISE_BUTTONS} Causes minimise buttons to be shown on panels (where the panel has such a button). + @style{wxRIBBON_BAR_SHOW_TOGGLE_BUTTON} + Causes a toggle button to appear on the ribbon bar at top-right corner. + This style is new since wxWidgets 2.9.5. + @style{wxRIBBON_BAR_SHOW_HELP_BUTTON} + Causes a help button to appear on the ribbon bar at the top-right corner. + This style is new since wxWidgets 2.9.5. @endStyleTable @@ -103,6 +109,12 @@ public: Triggered when the right mouse button is released on a tab. @event{EVT_RIBBONBAR_TAB_LEFT_DCLICK(id, func)} Triggered when the left mouse button is double clicked on a tab. + @event{EVT_RIBBONBAR_TOGGLED(id, func)} + Triggered when the button triggering the ribbon bar is clicked. This + event is new since wxWidgets 2.9.5. + @event{EVT_RIBBONBAR_HELP_CLICK(id, func)} + Triggered when the help button is clicked. This even is new since + wxWidgets 2.9.5. @endEventTable @library{wxribbon} @@ -277,6 +289,35 @@ public: */ void HidePage(size_t page); + /** + Indicates whether a tab is currently highlighted. + + @see AddPageHighlight() + + @since 2.9.5 + */ + bool IsPageHighlighted(size_t page) const; + + /** + Highlight the specified tab. + + Highlighted tabs have a colour between that of the active tab + and a tab over which the mouse is hovering. This can be used + to make a tab (usually temporarily) more noticeable to the user. + + @since 2.9.5 + */ + void AddPageHighlight(size_t page, bool highlight = true); + + /** + Changes a tab to not be highlighted. + + @see AddPageHighlight() + + @since 2.9.5 + */ + void RemovePageHighlight(size_t page); + /** Shows or hides the panel area of the ribbon bar.