本文整理汇总了Python中PyQt4.QtGui.QWizard.setModal方法的典型用法代码示例。如果您正苦于以下问题:Python QWizard.setModal方法的具体用法?Python QWizard.setModal怎么用?Python QWizard.setModal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt4.QtGui.QWizard
的用法示例。
在下文中一共展示了QWizard.setModal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Installer
# 需要导入模块: from PyQt4.QtGui import QWizard [as 别名]
# 或者: from PyQt4.QtGui.QWizard import setModal [as 别名]
class Installer(QObject):
setProgress = pyqtSignal(int)
def __init__(self, options, schema, firer):
QObject.__init__(self)
if not hasattr(options, 'install_path') or not hasattr(options, 'distrib_path'):
QMessageBox.warning(firer, u'Error', u'Incorrect options')
firer.setEnabled(False)
return
self.schema = schema
self.options = options
self.firer = firer
self.wizard = QWizard()
self.wizard.setOptions(QWizard.NoBackButtonOnStartPage | QWizard.NoBackButtonOnLastPage)
self.wizard.resize(800, 600)
self.wizard.schema = schema
self.unwizard = QWizard()
self.unwizard.setOptions(QWizard.NoBackButtonOnStartPage | QWizard.NoBackButtonOnLastPage)
self.unwizard.resize(800, 600)
self.unwizard.schema = schema
self.pip = self.PreInstallPage(self)
self.cp = self.CheckPage(self)
self.ip = self.InstallPage(self)
self.puip = self.PreUnInstallPage(self)
self.uip = self.UnInstallPage(self)
self.wizard.addPage(self.pip)
self.wizard.addPage(self.cp)
self.wizard.addPage(self.ip)
self.unwizard.addPage(self.puip)
self.unwizard.addPage(self.uip)
def install(self):
self.wizard.setModal(True)
self.wizard.show()
def uninstall(self):
self.unwizard.setModal(True)
self.unwizard.show()
class PreInstallPage(QWizardPage):
def __init__(self, parent):
QWizardPage.__init__(self)
self.parent = parent
self.setLayout(QGridLayout())
self.setTitle('Options')
self.setSubTitle('Please select destination folder and folder which contains downloaded files.')
self.path = PathPanel(default=self.parent.options.install_path)
self.layout().addWidget(QLabel('Installation path:'), 1, 0)
self.layout().addWidget(self.path, 1, 1)
self.distrib_path = PathPanel(default=self.parent.options.distrib_path)
self.layout().addWidget(QLabel('Downloaded files:'), 2, 0)
self.layout().addWidget(self.distrib_path, 2, 1)
self.registerField('path', self.path, 'getPath', self.path.path_input.textChanged)
self.registerField('distrib_path', self.distrib_path, 'getPath', self.distrib_path.path_input.textChanged)
self.path.updated.connect(self.changed)
self.distrib_path.updated.connect(self.changed)
def initializePage(self):
self.path.setPath(self.parent.options.install_path)
self.distrib_path.setPath(self.parent.options.distrib_path)
def changed(self):
self.completeChanged.emit()
def isComplete(self):
return os.path.isdir(self.path.getPath) and os.path.isdir(self.distrib_path.getPath)
class CheckPage(QWizardPage):
setProgress = pyqtSignal(int)
addComponentItem = pyqtSignal(object, str, bool, bool)
editComponentItem = pyqtSignal(str, str)
def __init__(self, parent):
QWizardPage.__init__(self)
self.parent = parent
self.setLayout(QGridLayout())
self.setTitle('Components')
self.setSubTitle('Please select components which will be extracted to your destination folder.')
self.status_label = QLabel()
self.layout().addWidget(self.status_label, 1, 0)
self.components_list = QListWidget()
self.progress = QProgressBar()
#.........这里部分代码省略.........