diff options
author | kali <kali@leap.se> | 2012-11-12 23:03:12 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-11-12 23:03:12 +0900 |
commit | 72f3ef94f0d7deffa9adfba6bde57ae3d9c8d165 (patch) | |
tree | f80f8b646adc25a96cd5308eeaaf6cfe75f6f5b8 /src/leap/gui/firstrun/wizard.py | |
parent | 6dac344ee1826f9413a40c7783517bc640f826ca (diff) |
connect wizard cancel button with shutdown
Diffstat (limited to 'src/leap/gui/firstrun/wizard.py')
-rwxr-xr-x | src/leap/gui/firstrun/wizard.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/wizard.py b/src/leap/gui/firstrun/wizard.py index 7a3d6973..bbb48149 100755 --- a/src/leap/gui/firstrun/wizard.py +++ b/src/leap/gui/firstrun/wizard.py @@ -61,7 +61,8 @@ class FirstRunWizard(QtGui.QWizard): eipconfigchecker=eipchecks.EIPConfigChecker, start_eipconnection_signal=None, eip_statuschange_signal=None, - debug_server=None): + debug_server=None, + quitcallback=None): super(FirstRunWizard, self).__init__( parent, QtCore.Qt.WindowStaysOnTopHint) @@ -97,6 +98,11 @@ class FirstRunWizard(QtGui.QWizard): self.start_eipconnection_signal = start_eipconnection_signal self.eip_statuschange_signal = eip_statuschange_signal + if quitcallback is not None: + self.button( + QtGui.QWizard.CancelButton).clicked.connect( + quitcallback) + self.providerconfig = None # previously registered # if True, jumps to LogIn page. |