Sets our main struct and passes it to the parent class
Creates a new GtkToolButton using icon_widget as icon and label as label. Since 2.4
Creates a new GtkToolButton containing the image and text from a stock item. Some stock ids have preprocessor macros like GTK_STOCK_OK and GTK_STOCK_APPLY. It is an error if stock_id is not a name of a stock item. Since 2.4
This signal is emitted when the tool button is clicked with the mouse or activated with the keyboard. See Also GtkToolbar The toolbar widget GtkMenuToolButton A subclass of GtkToolButton that displays on the toolbar a button with an additional dropdown menu GtkToggleToolButton A subclass of GtkToolButton that displays toggle buttons on the toolbar GtkRadioToolButton A subclass of GtkToolButton that displays radio buttons on the toolbar GtkSeparatorToolItem A subclass of GtkToolItem that separates groups of items on a toolbar
Returns the name of the themed icon for the tool button, see gtk_tool_button_set_icon_name(). Since 2.8
Return the widget used as icon widget on button. See gtk_tool_button_set_icon_widget(). Since 2.4
Returns the label used by the tool button, or NULL if the tool button doesn't have a label. or uses a the label from a stock item. The returned string is owned by GTK+, and must not be modified or freed. Since 2.4
Returns the widget used as label on button. See gtk_tool_button_set_label_widget(). Since 2.4
Returns the name of the stock item. See gtk_tool_button_set_stock_id(). The returned string is owned by GTK+ and must not be freed or modifed. Since 2.4
the main Gtk struct as a void*
Returns whether underscores in the label property are used as mnemonics on menu items on the overflow menu. See gtk_tool_button_set_use_underline(). Since 2.4
Sets the icon for the tool button from a named themed icon. See the docs for GtkIconTheme for more details. The "icon_name" property only has an effect if not overridden by non-NULL "label", "icon_widget" and "stock_id" properties. Since 2.8
Sets icon as the widget used as icon on button. If icon_widget is NULL the icon is determined by the "stock_id" property. If the "stock_id" property is also NULL, button will not have an icon. Since 2.4
Sets label as the label used for the tool button. The "label" property only has an effect if not overridden by a non-NULL "label_widget" property. If both the "label_widget" and "label" properties are NULL, the label is determined by the "stock_id" property. If the "stock_id" property is also NULL, button will not have a label. Since 2.4
Sets label_widget as the widget that will be used as the label for button. If label_widget is NULL the "label" property is used as label. If "label" is also NULL, the label in the stock item determined by the "stock_id" property is used as label. If "stock_id" is also NULL, button does not have a label. Since 2.4
Sets the name of the stock item. See gtk_tool_button_new_from_stock(). The stock_id property only has an effect if not overridden by non-NULL "label" and "icon_widget" properties. Since 2.4
If set, an underline in the label property indicates that the next character should be used for the mnemonic accelerator key in the overflow menu. For example, if the label property is "_Open" and use_underline is TRUE, the label on the tool button will be "Open" and the item on the overflow menu will have an underlined 'O'. Labels shown on tool buttons never have mnemonics on them; this property only affects the menu item on the overflow menu. Since 2.4
the main Gtk struct
the main Gtk struct
the main Gtk struct as a void*
Sets this widget tooltip
This signal is emitted when the toolbar needs information from tool_item about whether the item should appear in the toolbar overflow menu. In response the tool item should either call gtk_tool_item_set_proxy_menu_item() with a NULL pointer and return TRUE to indicate that the item should not appear in the overflow menu call gtk_tool_item_set_proxy_menu_item() with a new menu item and return TRUE, or return FALSE to indicate that the signal was not handled by the item. This means that the item will not appear in the overflow menu unless a later handler installs a menu item. The toolbar may cache the result of this signal. When the tool item changes how it will respond to this signal it must call gtk_tool_item_rebuild_menu() to invalidate the cache and ensure that the toolbar rebuilds its overflow menu. TRUE if the signal was handled, FALSE if not
Warning GtkToolItem::set-tooltip has been deprecated since version 2.12 and should not be used in newly-written code. With the new tooltip API, there is no need to use this signal anymore. This signal is emitted when the toolitem's tooltip changes. Application developers can use gtk_tool_item_set_tooltip() to set the item's tooltip. TRUE if the signal was handled, FALSE if not
This signal is emitted when some property of the toolbar that the item is a child of changes. For custom subclasses of GtkToolItem, the default handler of this signal use the functions gtk_tool_shell_get_orientation() gtk_tool_shell_get_style() gtk_tool_shell_get_icon_size() gtk_tool_shell_get_relief_style() to find out what the toolbar should look like and change themselves accordingly. See Also GtkToolbar The toolbar widget GtkToolButton A subclass of GtkToolItem that displays buttons on the toolbar GtkSeparatorToolItem A subclass of GtkToolItem that separates groups of items on a toolbar
Sets whether tool_item is to be allocated the same size as other homogeneous items. The effect is that all homogeneous items will have the same width as the widest of the items. Since 2.4
Returns whether tool_item is the same size as other homogeneous items. See gtk_tool_item_set_homogeneous(). Since 2.4
Sets whether tool_item is allocated extra space when there is more room on the toolbar then needed for the items. The effect is that the item gets bigger when the toolbar gets bigger and smaller when the toolbar gets smaller. Since 2.4
Returns whether tool_item is allocated extra space. See gtk_tool_item_set_expand(). Since 2.4
Warning gtk_tool_item_set_tooltip has been deprecated since version 2.12 and should not be used in newly-written code. Use gtk_tool_item_set_tooltip_text() instead. Sets the GtkTooltips object to be used for tool_item, the text to be displayed as tooltip on the item and the private text to be used. See gtk_tooltips_set_tip(). Since 2.4
Sets the text to be displayed as tooltip on the item. See gtk_widget_set_tooltip_text(). Since 2.12
Sets the markup text to be displayed as tooltip on the item. See gtk_widget_set_tooltip_markup(). Since 2.12
Sets whether tool_item has a drag window. When TRUE the toolitem can be used as a drag source through gtk_drag_source_set(). When tool_item has a drag window it will intercept all events, even those that would otherwise be sent to a child of tool_item. Since 2.4
Returns whether tool_item has a drag window. See gtk_tool_item_set_use_drag_window(). Since 2.4
Sets whether tool_item is visible when the toolbar is docked horizontally. Since 2.4
Returns whether the tool_item is visible on toolbars that are docked horizontally. Since 2.4
Sets whether tool_item is visible when the toolbar is docked vertically. Some tool items, such as text entries, are too wide to be useful on a vertically docked toolbar. If visible_vertical is FALSE tool_item will not appear on toolbars that are docked vertically. Since 2.4
Returns whether tool_item is visible when the toolbar is docked vertically. See gtk_tool_item_set_visible_vertical(). Since 2.4
Sets whether tool_item should be considered important. The GtkToolButton class uses this property to determine whether to show or hide its label when the toolbar style is GTK_TOOLBAR_BOTH_HORIZ. The result is that only tool buttons with the "is_important" property set have labels, an effect known as "priority text" Since 2.4
Returns whether tool_item is considered important. See gtk_tool_item_set_is_important() Since 2.4
Returns the ellipsize mode used for tool_item. Custom subclasses of GtkToolItem should call this function to find out how text should be ellipsized. Since 2.20
Returns the icon size used for tool_item. Custom subclasses of GtkToolItem should call this function to find out what size icons they should use. Since 2.4
Returns the orientation used for tool_item. Custom subclasses of GtkToolItem should call this function to find out what size icons they should use. Since 2.4
Returns the toolbar style used for tool_item. Custom subclasses of GtkToolItem should call this function in the handler of the GtkToolItem::toolbar_reconfigured signal to find out in what style the toolbar is displayed and change themselves accordingly Since 2.4
Returns the relief style of tool_item. See gtk_button_set_relief_style(). Custom subclasses of GtkToolItem should call this function in the handler of the "toolbar_reconfigured" signal to find out the relief style of buttons. Since 2.4
Returns the text alignment used for tool_item. Custom subclasses of GtkToolItem should call this function to find out how text should be aligned. Since 2.20
Returns the text orientation used for tool_item. Custom subclasses of GtkToolItem should call this function to find out how text should be orientated. Since 2.20
Returns the GtkMenuItem that was last set by gtk_tool_item_set_proxy_menu_item(), ie. the GtkMenuItem that is going to appear in the overflow menu. Since 2.4
If menu_item_id matches the string passed to gtk_tool_item_set_proxy_menu_item() return the corresponding GtkMenuItem. Custom subclasses of GtkToolItem should use this function to update their menu item when the GtkToolItem changes. That the menu_item_ids must match ensures that a GtkToolItem will not inadvertently change a menu item that they did not create. Since 2.4
Sets the GtkMenuItem used in the toolbar overflow menu. The menu_item_id is used to identify the caller of this function and should also be used with gtk_tool_item_get_proxy_menu_item(). Since 2.4
Calling this function signals to the toolbar that the overflow menu item for tool_item has changed. If the overflow menu is visible when this function it called, the menu will be rebuilt. The function must be called when the tool item changes what it will do in response to the "create-menu-proxy" signal. Since 2.6
Emits the signal "toolbar_reconfigured" on tool_item. GtkToolbar and other GtkToolShell implementations use this function to notify children, when some aspect of their configuration changes. Since 2.14
Returns the size group used for labels in tool_item. Custom subclasses of GtkToolItem should call this function and use the size group for labels. Since 2.20
Description GtkToolButtons are GtkToolItems containing buttons. Use gtk_tool_button_new() to create a new GtkToolButton. Use gtk_tool_button_new_with_stock() to create a GtkToolButton containing a stock item. The label of a GtkToolButton is determined by the properties "label-widget", "label", and "stock-id". If "label-widget" is non-NULL, then that widget is used as the label. Otherwise, if "label" is non-NULL, that string is used as the label. Otherwise, if "stock-id" is non-NULL, the label is determined by the stock item. Otherwise, the button does not have a label. The icon of a GtkToolButton is determined by the properties "icon-widget" and "stock-id". If "icon-widget" is non-NULL, then that widget is used as the icon. Otherwise, if "stock-id" is non-NULL, the icon is determined by the stock item. Otherwise, the button does not have a icon.