コード例 #1
0
 def __init__(self, ctrl, anaconda):
     #log.debug("called smartinstall.AnacondaInterface.__init__")
     Interface.__init__(self, ctrl)
     self.anaconda = anaconda
     self._progress = AnacondaProgress(self.anaconda.intf)
     self.statusWindow = None
     self.waitWindow = None
コード例 #2
0
 def __init__(self, ctrl):
     Interface.__init__(self, ctrl)
     self._log = GtkLog()
     self._progress = GtkProgress(False)
     self._hassubprogress = GtkProgress(True)
     self._changes = GtkChanges()
     self._window = None
     self._sys_excepthook = sys.excepthook
コード例 #3
0
 def __init__(self, ctrl):
     Interface.__init__(self, ctrl)
     self._log = GtkLog()
     self._progress = GtkProgress(False)
     self._hassubprogress = GtkProgress(True)
     self._changes = GtkChanges()
     self._window = None
     self._sys_excepthook = sys.excepthook
コード例 #4
0
 def __init__(self, ctrl, argv):
     Interface.__init__(self, ctrl)
     self._log = QtLog()
     self._progress = QtProgress(False)
     self._progress.setMainThread(self._currentThread())
     self._hassubprogress = QtProgress(True)
     self._hassubprogress.setMainThread(self._currentThread())
     self._changes = QtChanges()
     self._window = None
     self._sys_excepthook = sys.excepthook
コード例 #5
0
ファイル: interface.py プロジェクト: pombreda/smart
 def __init__(self, ctrl, argv):
     Interface.__init__(self, ctrl)
     self._log = QtLog()
     self._progress = QtProgress(False)
     self._progress.setMainThread(self._currentThread())
     self._hassubprogress = QtProgress(True)
     self._hassubprogress.setMainThread(self._currentThread())
     self._changes = QtChanges()
     self._window = None
     self._sys_excepthook = sys.excepthook
コード例 #6
0
 def __init__(self, ctrl):
     Interface.__init__(self, ctrl)
     self._progress = Up2dateProgress()
     self._activestatus = False
コード例 #7
0
ファイル: interface.py プロジェクト: Kampi/Zybo-Linux
 def __init__(self, ctrl):
     Interface.__init__(self, ctrl)
     self._progress = TextProgress()
     self._activestatus = False
コード例 #8
0
 def __init__(self, ctrl):
     self._progress = AnacondaProgress()
     Interface.__init__(self, ctrl)