Save password generator settings

Remember the used values for the password generator and restore them the
next time the user opens the generation dialog.
This commit is contained in:
Veeti Paananen 2013-06-29 05:29:03 +03:00 committed by Florian Geyer
parent 755241df5c
commit 9cae8a412a
2 changed files with 32 additions and 10 deletions

View file

@ -34,6 +34,7 @@ class PasswordGeneratorWidget : public QWidget
public:
explicit PasswordGeneratorWidget(QWidget* parent = Q_NULLPTR);
~PasswordGeneratorWidget();
void loadSettings();
void reset();
Q_SIGNALS:
@ -44,6 +45,7 @@ private Q_SLOTS:
void togglePassword(bool checked);
void generatePassword();
void emitNewPassword();
void saveSettings();
private:
PasswordGenerator::CharClasses charClasses();