Sets our main struct and passes it to the parent class.
Creates a new gtk.ToolButton using icon_widget as contents and label as label.
Creates a new gtk.ToolButton containing the image and text from a stock item. Some stock ids have preprocessor macros like GTK_STOCK_OK and GTK_STOCK_APPLY
This signal is emitted when the tool button is clicked with the mouse or activated with the keyboard.
Returns the name of the themed icon for the tool button, see ToolButton.setIconName.
Return the widget used as icon widget on button. See ToolButton.setIconWidget.
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.
Returns the widget used as label on button. See ToolButton.setLabelWidget.
Returns the name of the stock item. See ToolButton.setStockId. The returned string is owned by GTK+ and must not be freed or modifed.
the main Gtk struct as a void*
Get the main Gtk struct
Returns whether underscores in the label property are used as mnemonics on menu items on the overflow menu. See ToolButton.setUseUnderline.
Sets the icon for the tool button from a named themed icon. See the docs for gtk.IconTheme for more details. The icon-name property only has an effect if not overridden by non-NULL label-widget, icon-widget and stock-id properties.
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.
Sets the name of the stock item. See ToolButton.newFromStock. The stock_id property only has an effect if not overridden by non-NULL label-widget and icon-widget properties.
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”.
the main Gtk struct
the main Gtk struct
Get the main Gtk struct
the main Gtk struct as a void*
Returns the ellipsize mode used for tool_item. Custom subclasses of gtk.ToolItem should call this function to find out how text should be ellipsized.
Returns whether tool_item is allocated extra space. See ToolItem.setExpand.
Returns whether tool_item is the same size as other homogeneous items. See ToolItem.setHomogeneous.
Returns the icon size used for tool_item. Custom subclasses of gtk.ToolItem should call this function to find out what size icons they should use.
Returns whether tool_item is considered important. See ToolItem.setIsImportant
Returns the orientation used for tool_item. Custom subclasses of gtk.ToolItem should call this function to find out what size icons they should use.
If menu_item_id matches the string passed to ToolItem.setProxyMenuItem return the corresponding gtk.MenuItem
Returns the relief style of tool_item. See Button.setRelief. Custom subclasses of gtk.ToolItem should call this function in the handler of the toolbar_reconfigured signal to find out the relief style of buttons.
Returns the text alignment used for tool_item. Custom subclasses of gtk.ToolItem should call this function to find out how text should be aligned.
Returns the text orientation used for tool_item. Custom subclasses of gtk.ToolItem should call this function to find out how text should be orientated.
Returns the size group used for labels in tool_item. Custom subclasses of gtk.ToolItem should call this function and use the size group for labels.
Returns the toolbar style used for tool_item. Custom subclasses of gtk.ToolItem 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
Returns whether tool_item has a drag window. See ToolItem.setUseDragWindow.
Returns whether the tool_item is visible on toolbars that are docked horizontally.
Returns whether tool_item is visible when the toolbar is docked vertically. See ToolItem.setVisibleVertical.
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.
Returns the gtk.MenuItem that was last set by ToolItem.setProxyMenuItem, ie. the gtk.MenuItem that is going to appear in the overflow menu.
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.
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.
Sets whether tool_item should be considered important. The gtk.ToolButton 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”
Sets the gtk.MenuItem 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 ToolItem.getProxyMenuItem.
Sets the markup text to be displayed as tooltip on the item. See Widget.setTooltipMarkup.
Sets the text to be displayed as tooltip on the item. See Widget.setTooltipText.
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.
Sets whether tool_item is visible when the toolbar is docked horizontally.
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.
Emits the signal toolbar_reconfigured on tool_item. gtk.Toolbar and other GtkToolShell implementations use this function to notify children, when some aspect of their configuration changes.
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
This signal is emitted when some property of the toolbar that the item is a child of changes. For custom subclasses of gtk.ToolItem, 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.
Get the main Gtk struct
the main Gtk struct as a void*
Gets the action name for actionable.
Gets the current target value of actionable.
Specifies the name of the action with which this widget should be associated. If action_name is NULL then the widget will be unassociated from any previous action.
Sets the target value of an actionable widget.
Sets the action-name and associated string target value of an actionable widget.
gtk.ToolButtons are gtk.ToolItems containing buttons.
Use ToolButton.new to create a new gtk.ToolButton
The label of a gtk.ToolButton 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 gtk.ToolButton 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.
CSS nodes
GtkToolButton has a single CSS node with name toolbutton.