예제 #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
 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)