Skip to content

ActionsModel

Qt Base Class: QAbstractTableModel

Signature: QAbstractTableModel(self, parent: Optional[PySide6.QtCore.QObject] = None) -> None

Base classes

Name Children Inherits
ColumnTableModel
prettyqt.itemmodels.columnitemmodel

⋔ Inheritance diagram

graph TD
  1473290702304["itemmodels.ActionsModel"]
  1473245684144["itemmodels.ColumnTableModel"]
  1473245682192["itemmodels.ColumnItemModelMixin"]
  140713234304496["builtins.object"]
  1473299901888["core.AbstractTableModel"]
  1473299900912["core.AbstractTableModelMixin"]
  1473299890176["core.AbstractItemModelMixin"]
  1473299815024["core.ObjectMixin"]
  1473289054032["QtCore.QAbstractTableModel"]
  1473289050128["QtCore.QAbstractItemModel"]
  1473288842240["QtCore.QObject"]
  1473291690208["Shiboken.Object"]
  1473245684144 --> 1473290702304
  1473245682192 --> 1473245684144
  140713234304496 --> 1473245682192
  1473299901888 --> 1473245684144
  1473299900912 --> 1473299901888
  1473299890176 --> 1473299900912
  1473299815024 --> 1473299890176
  140713234304496 --> 1473299815024
  1473289054032 --> 1473299901888
  1473289050128 --> 1473289054032
  1473288842240 --> 1473289050128
  1473291690208 --> 1473288842240
  140713234304496 --> 1473291690208

🛈 DocStrings

Bases: ColumnTableModel

Table model to display a list of QActions.

All properties of the Action can be edited.

Source code in prettyqt\itemmodels\actionsmodel.py
class ActionsModel(itemmodels.ColumnTableModel):
    """Table model to display a list of QActions.

    All properties of the Action can be edited.
    """

    SUPPORTS = Sequence[gui.QAction]
    COLUMNS = [
        NameColumn,
        ToolTipColumn,
        ShortcutColumn,
        CheckStateColumn,
        PriorityColumn,
        UsageCountColumn,
    ]

    def __init__(self, actions: list[gui.QAction], parent: core.QObject | None = None):
        super().__init__(actions, self.COLUMNS, parent=parent)

    @classmethod
    def supports(cls, instance) -> bool:
        match instance:
            case (gui.QAction(), *_):
                return True
            case _:
                return False

Info

Supported data type: collections.abc.Sequence[PySide6.QtGui.QAction]

⌗ Property table

Qt Property Type Doc
objectName QString