summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/preferenceswindow.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2013-08-29 17:19:02 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2013-08-29 17:35:20 -0300
commitc43193f36b69620a5f88ec67c515975819c6b542 (patch)
treea0fd82239cb6d05388cc9ec661153aee2aa7de14 /src/leap/bitmask/gui/preferenceswindow.py
parenta877a30cd8e2346171b79d08d5a1edecac99de94 (diff)
Enable password change when soledad is ready.
Closes #3610.
Diffstat (limited to 'src/leap/bitmask/gui/preferenceswindow.py')
-rw-r--r--src/leap/bitmask/gui/preferenceswindow.py20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/leap/bitmask/gui/preferenceswindow.py b/src/leap/bitmask/gui/preferenceswindow.py
index 05f616b0..17e12304 100644
--- a/src/leap/bitmask/gui/preferenceswindow.py
+++ b/src/leap/bitmask/gui/preferenceswindow.py
@@ -42,14 +42,12 @@ class PreferencesWindow(QtGui.QDialog):
WEAK_PASSWORDS = ("123456", "qweasd", "qwerty", "password")
- def __init__(self, parent, srp_auth, soledad, leap_settings, standalone):
+ def __init__(self, parent, srp_auth, leap_settings, standalone):
"""
:param parent: parent object of the PreferencesWindow.
:parent type: QWidget
:param srp_auth: SRPAuth object configured in the main app.
:type srp_auth: SRPAuth
- :param soledad: Soledad object configured in the main app.
- :type soledad: Soledad
:param standalone: If True, the application is running as standalone
and the preferences dialog should display some
messages according to this.
@@ -58,9 +56,9 @@ class PreferencesWindow(QtGui.QDialog):
QtGui.QDialog.__init__(self, parent)
self._srp_auth = srp_auth
- self._soledad = soledad
self._settings = leap_settings
self._standalone = standalone
+ self._soledad = None
# Load UI
self.ui = Ui_Preferences()
@@ -76,21 +74,23 @@ class PreferencesWindow(QtGui.QDialog):
self.ui.cbProvidersServices.currentIndexChanged[unicode].connect(
self._populate_services)
- parent.soledad_ready.connect(self._soledad_ready)
-
if not self._settings.get_configured_providers():
self.ui.gbEnabledServices.setEnabled(False)
else:
self._add_configured_providers()
- def _soledad_ready(self):
+ def set_soledad_ready(self, soledad):
"""
SLOT
TRIGGERS:
parent.soledad_ready
+
It sets the soledad object as ready to use.
+
+ :param soledad: Soledad object configured in the main app.
+ :type soledad: Soledad
"""
- self._soledad_ready = True
+ self._soledad = soledad
self.ui.gbPasswordChange.setEnabled(True)
def _set_password_change_status(self, status, error=False, success=False):
@@ -128,6 +128,10 @@ class PreferencesWindow(QtGui.QDialog):
def _change_password(self):
"""
+ SLOT
+ TRIGGERS:
+ self.ui.pbChangePassword.clicked
+
Changes the user's password if the inputboxes are correctly filled.
"""
username = self._srp_auth.get_username()