def __init__(self):
super(ControllerWindow, self).__init__()
self.previewWindow = PreviewWindow(self)
self.createTypeGroupBox()
self.createHintsGroupBox()
quitButton = QPushButton("&Quit")
quitButton.clicked.connect(self.close)
bottomLayout = QHBoxLayout()
bottomLayout.addStretch()
bottomLayout.addWidget(quitButton)
mainLayout = QVBoxLayout()
mainLayout.addWidget(self.typeGroupBox)
mainLayout.addWidget(self.hintsGroupBox)
mainLayout.addLayout(bottomLayout)
self.setLayout(mainLayout)
self.setWindowTitle("Window Flags")
self.updatePreview()
评论列表
文章目录