PyQt如何执行BEFORE GUI调整大小事件的功能

时间:2017-09-16 14:29:11

标签: python python-2.7 pyqt pyqt4 qgridlayout

在PyQt4中,有没有办法暂停窗口大小调整直到函数完成?

我的问题是我创建了一个带有文本编辑的窗口,其中可能包含大量文本。由于我切换到使用网格布局,文本编辑也会调整大小,当有大量文本时,应用程序挂起。我尝试重写resizeEvent以在调整大小时清除文本编辑文本,但应用程序仍然挂起,因为它仅在调整大小后清除文本。

其他解决方案也受到欢迎。

python代码(以及指向.ui文件的链接):

import sys
from PyQt4 import QtGui, uic, QtCore
from PyQt4.QtGui import QDesktopWidget

qtCreatorMainWindowFile = "mainwindow.ui"
Ui_MainWindow, QtBaseClass = uic.loadUiType(qtCreatorMainWindowFile)


class MainWindow(QtBaseClass, Ui_MainWindow):
    def __init__(self):
        QtBaseClass.__init__(self)
        self.setupUi(self)
        # Set window size to 4/5 of the screen dimensions
        sg = QDesktopWidget().screenGeometry()
        self.resize(sg.width()*4/5, sg.height()*4/5)

        self.clearTextBrowserButton.clicked.connect(self.ClearTextBrowsers)

        @staticmethod
        def WriteToTextBrowser(string, text_browser):
            cursor = text_browser.textCursor()
            cursor.movePosition(QtGui.QTextCursor.End)
            cursor.insertText(string)
            text_browser.setTextCursor(cursor)
            text_browser.ensureCursorVisible()

        def ClearTextBrowsers(self):
            self.textBrowser.clear()

        # def resizeEvent(self,event):
            # print "resize"
            # self.ClearTextBrowsers()

app = QtGui.QApplication(sys.argv)
window = MainWindow()
window.show()

for i in range(1,100000):
    window.WriteToTextBrowser("TESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTEST\r\n",window.textBrowser)

sys.exit(app.exec_())

ui。文件: https://www.dropbox.com/s/y3hxp6mjhfpv2hy/mainwindow.ui?dl=0

1 个答案:

答案 0 :(得分:0)

我找到了一个似乎有效的解决方法。我添加了一个捕获“Move”或“WindowStateChange”QEvents的事件过滤器。这些似乎发生在实际调整大小之前(之前的点击和拉伸工作以及后者用于最大化/最小化)。缺点是只需移动窗口即可清除文本编辑,但这是我愿意付出的代价。

添加的代码(在MainWindow内):

self.installEventFilter(self)

def eventFilter(self, source, event):
    if (event.type() == QtCore.QEvent.Move or event.type() ==  QtCore.QEvent.WindowStateChange):
        self.file.write(self.textBrowser.toPlainText())
        self.ClearTextBrowsers()
    return QtBaseClass.eventFilter(self, source, event)