在 PyQt 中迭代给定 QToolBar 对象上的 QAction 项?

Iterate QAction items on a given QToolBar object in PyQt?

使用 Python 和 PyQt4,给定一个具有任意数量的 QToolBar 对象的 GUI,并且每个工具栏包含任意数量的 QAction 对象。

我可以使用以下代码迭代 ui 并找到工具栏:

for name, obj in inspect.getmembers(ui):
    if isinstance(obj, QToolBar):
        print "toolbar =",name

如何遍历每个工具栏对象并找到 QAction 对象。然后我将阅读 QAction 以确定哪些是 "checked"。我没有使用 QActionGroups。

给定一个 QToolBar,您可以通过调用它的 actions 方法找到它的所有 QAction:

Returns the (possibly empty) list of this widget's actions.

例如:

if isinstance(obj, QToolBar):
    print obj.actions()

如果工具栏是在 Qt Designer 中创建的,它们将成为主 window(或任何 top-level 小部件)的子项。

所以你可以简单地做:

for toolbar in mainwindow.findChildren(QToolBar):
    print('toolbar: %s' % toolbar.objectName())
    for action in toolbar.actions():
        if not action.isSeparator():
            print('  action: %s (%s)' % (action.text(), action.isChecked()))