summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/mixins.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/gui/firstrun/mixins.py')
-rw-r--r--src/leap/gui/firstrun/mixins.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/leap/gui/firstrun/mixins.py b/src/leap/gui/firstrun/mixins.py
new file mode 100644
index 00000000..c4731893
--- /dev/null
+++ b/src/leap/gui/firstrun/mixins.py
@@ -0,0 +1,18 @@
+"""
+mixins used in First Run Wizard
+"""
+
+
+class UserFormMixIn(object):
+
+ def reset_validation_status(self):
+ """
+ empty the validation msg
+ """
+ self.validationMsg.setText('')
+
+ def set_validation_status(self, msg):
+ """
+ set generic validation status
+ """
+ self.validationMsg.setText(msg)