如何调整 QMainWindow 的大小以适合具有 setVerticalHeaderLabels 的 QTableWidget

Posted

技术标签:

【中文标题】如何调整 QMainWindow 的大小以适合具有 setVerticalHeaderLabels 的 QTableWidget【英文标题】:How to size QMainWindow to fit a QTableWidget that has setVerticalHeaderLabels 【发布时间】:2021-09-02 16:31:33 【问题描述】:

这里是示例代码:

from PyQt5.QtWidgets import QApplication, QTableWidget, QTableWidgetItem, \
    QMainWindow
from PyQt5.QtCore import QSize
import sys

DATA = 
    f'coli': [f'i * j' for j in range(1, 10)] for i in range(1, 10)



class Table(QTableWidget):
    def __init__(self, d):
        m = len(d[next(iter(d))])
        n = len(DATA)
        super().__init__(m, n)

        hor_headers = []
        for n, (key, values) in enumerate(DATA.items()):
            hor_headers.append(key)
            for m, item in enumerate(values):
                qtitem = QTableWidgetItem(item)
                self.setItem(m, n, qtitem)
        self.setHorizontalHeaderLabels(hor_headers)
        # the sizeHint works fine if I disable this line
        self.setVerticalHeaderLabels(f'rowi' for i in range(1, m + 2))

        self.resizeColumnsToContents()
        self.resizeRowsToContents()

    # improves the situation but still the window is smaller than the table
    def sizeHint(self):
        hh = self.horizontalHeader()
        vh = self.verticalHeader()
        fw = self.frameWidth() * 2
        return QSize(
            hh.length() + vh.width() + fw,
            vh.length() + hh.height() + fw)


class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.setWindowTitle('<TITLE>')
        table = Table(DATA)
        self.setCentralWidget(table)
        # did not work
        # self.setFixedSize(self.layout().sizeHint())


def main(args):
    app = QApplication(args)
    main_win = MainWindow()
    main_win.show()
    raise SystemExit(app.exec_())


if __name__ == "__main__":
    main(sys.argv)

结果如下:

第9行第9列不显示,有滚动条。

如果我注释掉 self.setVerticalHeaderLabels(f'rowi' for i in range(1, m + 2)) 行,那么它将起作用:

如何在具有垂直标题标签的同时将主窗口完美地适合表格小部件?

正如您在代码 cmets 中看到的那样,我已经尝试了 python qt : automatically resizing main window to fit content 建议的解决方案,但它们都不起作用。

【问题讨论】:

【参考方案1】:

问题在于,当像项目视图这样的复杂小部件尚未“映射”时,其子项(标题和滚动条)的实际大小尚未更新。只有当视图最终显示并可能添加到布局时,它才会再次调整自身大小,以便使用 updateGeometries 正确调整其子项的大小。

这意味着,在此之前,每个标题的大小都基于其默认的基本内容(垂直标题的行号)。

解决方案很简单:不要使用标题大小,而是使用它们的提示,这些提示是使用将要显示的实际文本计算出来的:

def sizeHint(self):
    hh = self.horizontalHeader()
    vh = self.verticalHeader()
    fw = self.frameWidth() * 2
    return QSize(
        hh.length() + vh.sizeHint().width() + fw,
        vh.length() + hh.sizeHint().height() + fw)

【讨论】:

以上是关于如何调整 QMainWindow 的大小以适合具有 setVerticalHeaderLabels 的 QTableWidget的主要内容,如果未能解决你的问题,请参考以下文章

对 QMainWindow 的大小调整做出反应以调整小部件的大小

调整字体大小以适合多个 UIButton,使它们都具有相同的字体大小

调整外部网站内容的大小以适合 iFrame 宽度

如何将 QMainWindow 调整大小事件传递给 QMainWindow 中包含的 QGLWidget?

按比例调整图像大小以适合 HTML5 画布

iPhone - 调整图像和两个标签的大小以适合屏幕