我很難在調整對話框大小時自動調整大小的QDialog中的小部件。PyQt:獲取小部件在QDialog中自動調整大小
在以下程序中,如果調整主窗口的大小,textarea會自動調整大小。但是,對話框調整大小時,對話框中的textarea保持不變。
是否有任何方法讓對話框中的textarea自動調整大小?我已經嘗試在對話框本身和內部的兩個小部件上使用setSizePolicy(QSizePolicy.Ignored, QSizePolicy.Ignored)
,但這似乎沒有效果。
我在openSuSE 10.2上使用Qt版本3.3.7和PyQt版本3.5.5-29,如果這是相關的。
import sys
from qt import *
# The numbers 1 to 1000 as a string.
NUMBERS = ("%d " * 1000) % (tuple(range(1,1001)))
# Add a textarea containing the numbers 1 to 1000 to the given
# QWidget.
def addTextArea(parent, size):
textbox = QTextEdit(parent)
textbox.setReadOnly(True)
textbox.setMinimumSize(QSize(size, size*0.75))
textbox.setText(NUMBERS)
class TestDialog(QDialog):
def __init__(self,parent=None):
QDialog.__init__(self,parent)
self.setCaption("Dialog")
everything = QVBox(self)
addTextArea(everything, 400)
everything.resize(everything.sizeHint())
class TestMainWindow(QMainWindow):
def __init__(self,parent=None):
QMainWindow.__init__(self,parent)
self.setCaption("Main Window")
everything = QVBox(self)
addTextArea(everything, 800)
button = QPushButton("Open dialog", everything)
self.connect(button, SIGNAL('clicked()'), self.openDialog)
self.setCentralWidget(everything)
self.resize(self.sizeHint())
self.dialog = TestDialog(self)
def openDialog(self):
self.dialog.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
mainwin = TestMainWindow(None)
app.setMainWidget(mainwin)
mainwin.show()
app.exec_loop()