Opens a submenu of the popover. The name must be one of the names given to the submenus of popover with #GtkPopoverMenu:submenu, or "main" to switch back to the main menu.
Returns this, for use in with statements.
Get builder for gtk.popover_menu.PopoverMenu
Returns this, for use in with statements.
Get builder for gtk.popover.Popover
Get constrainTo property.
Set constrainTo property.
Get modal property.
Set modal property.
Get pointingTo property.
Set pointingTo property.
Get position property.
Set position property.
Get relativeTo property.
Set relativeTo property.
Get transitionsEnabled property.
Set transitionsEnabled property.
Creates a #GtkPopover and populates it according to model. The popover is pointed to the relative_to widget.
Establishes a binding between a #GtkPopover and a #GMenuModel.
Returns the constraint for placing this popover. See gtk.popover.Popover.setConstrainTo.
Gets the widget that should be set as the default while the popover is shown.
Returns whether the popover is modal, see gtk_popover_set_modal to see the implications of this.
If a rectangle to point to has been set, this function will return true and fill in rect with such rectangle, otherwise it will return false and fill in rect with the attached widget width and height if a widget exists, otherwise it will zero-out rect.
Returns the preferred position of popover.
Returns the widget popover is currently attached to
Returns whether show/hide transitions are enabled on this popover.
Pops popover down.This is different than a gtk.widget.Widget.hide call in that it shows the popover with a transition. If you want to hide the popover without a transition, use gtk.widget.Widget.hide.
Pops popover up. This is different than a gtk.widget.Widget.show call in that it shows the popover with a transition. If you want to show the popover without a transition, use gtk.widget.Widget.show.
Sets a constraint for positioning this popover.
Sets the widget that should be set as default widget while the popover is shown (see gtk.window.Window.setDefault). #GtkPopover remembers the previous default widget and reestablishes it when the popover is dismissed.
Sets whether popover is modal, a modal popover will grab all input within the toplevel and grab the keyboard focus on it when being displayed. Clicking outside the popover area or pressing Esc will dismiss the popover and ungrab input.
Sets the rectangle that popover will point to, in the coordinate space of the widget popover is attached to, see gtk.popover.Popover.setRelativeTo.
Sets the preferred position for popover to appear. If the popover is currently visible, it will be immediately updated.
Sets a new widget to be attached to popover. If popover is visible, the position will be updated.
Sets whether show/hide transitions are enabled on this popover
Connect to Closed signal.
GtkPopoverMenu is a subclass of #GtkPopover that treats its children like menus and allows switching between them. It is meant to be used primarily together with #GtkModelButton, but any widget can be used, such as #GtkSpinButton or #GtkScale. In this respect, GtkPopoverMenu is more flexible than popovers that are created from a #GMenuModel with gtk.popover.Popover.newFromModel.
To add a child as a submenu, set the #GtkPopoverMenu:submenu child property to the name of the submenu. To let the user open this submenu, add a #GtkModelButton whose #GtkModelButton:menu-name property is set to the name you've given to the submenu.
By convention, the first child of a submenu should be a #GtkModelButton to switch back to the parent menu. Such a button should use the #GtkModelButton:inverted and #GtkModelButton:centered properties to achieve a title-like appearance and place the submenu indicator at the opposite side. To switch back to the main menu, use "main" as the menu name.
Example
Just like normal popovers created using gtk_popover_new_from_model, #GtkPopoverMenu instances have a single css node called "popover" and get the .menu style class.