Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.91 KB

menutoolbutton.rst

File metadata and controls

47 lines (32 loc) · 1.91 KB

MenuToolButton

A MenuToolButton provides a combination button and menu in a single widget. The button function typically operates a common function, with the :doc:`menu` providing related actions.

An example of this widget is the back button in a browser which typically goes back to the previous page on the button click, and provides a menu of other previous pages.

Constructor

The MenuToolButton is created using the constructor:

GtkWidget *menutoolbutton = gtk_menu_tool_button_new(icon, label);

An icon value allows the MenuToolButton to be displayed with an icon. An associated label should also be specified stating the purpose of the ToolButton.

Methods

A Menu object is associated with the MenuToolButton by the method:

gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(menutoolbutton), menu);

The menu parameter supplied should be the name of a Menu object. If no Menu object is supplied, the arrow button will be set as insensitive.

If required, the Menu object can also be retrieved by:

gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(menutoolbutton));

The arrow provided with the MenuToolButton to initiate the dropdown action can be set with tooltip text or markup with:

gtk_menu_tool_button_set_arrow_tooltip_text(GTK_MENU_TOOL_BUTTON(menutoolbutton), text);
gtk_menu_tool_button_set_arrow_tooltip_markup(GTK_MENU_TOOL_BUTTON(menutoolbutton), markup);

Signals

The commonly used signals for the widget are:

"clicked" (menutoolbutton)
"show-menu" (menutoolbutton)

Use of the "clicked" signal is made when the button portion of the MenuToolButton is clicked. The "show-menu" signal emits from the widget when the dropdown arrow is clicked, but before the actual menu is displayed, allowing for on-demand loading of menu items.

Example

An example of the MenuToolButton can be found on the Toolbar page.