保持QToolbar始终显示所有项目

时间:2019-04-30 23:46:25

标签: python pyqt pyqt5 qtoolbar

让我们考虑以下屏幕截图:

enter image description here

您可以看到顶部工具栏显示2行;但是,这样做的话,需要单击右上角的>>(红色圆圈)并继续将鼠标悬停在工具栏区域上,这可能会有点烦人。

有没有办法使工具栏的两行始终显示?

1 个答案:

答案 0 :(得分:2)

解决方案是:

  • 使用在私有API的实现中具有一个名为setExpanded()的插槽的布局来扩展QToolBar。
  • 隐藏按钮,在这种情况下,只能将大小设置为QSize(0,0)。
  • 停用QToolBar的事件离开,使其不会折叠。
from PyQt5 import QtCore, QtGui, QtWidgets


class ToolBar(QtWidgets.QToolBar):
    def __init__(self, parent=None):
        super().__init__(parent)
        lay = self.findChild(QtWidgets.QLayout)
        if lay is not None:
            lay.setExpanded(True)
        QtCore.QTimer.singleShot(0, self.on_timeout)

    @QtCore.pyqtSlot()
    def on_timeout(self):
        button = self.findChild(QtWidgets.QToolButton, "qt_toolbar_ext_button")
        if button is not None:
            button.setFixedSize(0, 0)

    def event(self, e):
        if e.type() == QtCore.QEvent.Leave:
            return True
        return super().event(e)


if __name__ == "__main__":
    import sys

    app = QtWidgets.QApplication(sys.argv)
    w = QtWidgets.QMainWindow()
    toolbar = ToolBar()
    for i in range(20):
        toolbar.addAction("action{}".format(i))
    w.addToolBar(QtCore.Qt.TopToolBarArea, toolbar)

    w.resize(640, 480)
    w.show()
    sys.exit(app.exec_())