Quick Menu (quickmenu)

Quick Menu

A QuickMenu widget provides lists of actions organized in tabs with a quick search functionality.

class orangecanvas.document.quickmenu.QuickMenu(parent=None, **kwargs)[source]

Bases: orangecanvas.gui.framelesswindow.FramelessWindow

A quick menu popup for the widgets.

The widgets are set using QuickMenu.setModel() which must be a model as returned by QtWidgetRegistry.model()

triggered(QAction)
hovered(QAction)
setSizeGripEnabled(enabled)[source]

Enable the resizing of the menu with a size grip in a bottom right corner (enabled by default).

sizeGripEnabled()[source]

Is the size grip enabled.

addPage(name, page)[source]

Add the page (MenuPage) with name and return it’s index. The page.icon() will be used as the icon in the tab bar.

createPage(index)[source]

Create a new page based on the contents of an index (QModeIndex) item.

setModel(model)[source]

Set the model containing the actions.

setSortingFunc(func)[source]

Set a sorting function in the suggest (search) menu.

setFilterFunc(func)[source]

Set a filter function.

popup(pos=None, searchText='')[source]

Popup the menu at pos (in screen coordinates). ‘Search’ text field is initialized with searchText if provided.

exec_(pos=None, searchText='')[source]

Execute the menu at position pos (in global screen coordinates). Return the triggered QAction or None if no action was triggered. ‘Search’ text field is initialized with searchText if provided.

hideEvent(event)[source]

Reimplemented from QWidget

setCurrentPage(page)[source]

Set the current shown page to page.

setCurrentIndex(index)[source]

Set the current page index.

triggerSearch()[source]

Trigger action search. This changes to current page to the ‘Suggest’ page and sets the keyboard focus to the search line edit.

class orangecanvas.document.quickmenu.MenuPage(parent=None, title='', icon=<PyQt5.QtGui.QIcon object>, **kwargs)[source]

Bases: orangecanvas.gui.tooltree.ToolTree

A menu page in a QuickMenu widget, showing a list of actions. Shown actions can be disabled by setting a filtering function using the setFilterFunc().

setTitle(title)[source]

Set the title of the page.

title()[source]

Return the title of this page.

setIcon(icon)[source]

Set icon for this menu page.

icon()[source]

Return the icon of this menu page.

setFilterFunc(func)[source]

Set the filtering function. func should a function taking a single QModelIndex argument and returning True if the item at index should be disabled and False otherwise. To disable filtering func can be set to None.

setModel(model)[source]

Reimplemented from ToolTree.setModel().

setRootIndex(index)[source]

Reimplemented from ToolTree.setRootIndex()

rootIndex()[source]

Reimplemented from ToolTree.rootIndex()

sizeHint()[source]

Reimplemented from QWidget.sizeHint().

eventFilter(self, QObject, QEvent) → bool[source]