diff options
author | 2021-04-05 23:53:46 +0530 | |
---|---|---|
committer | 2021-04-05 23:53:46 +0530 | |
commit | e0ac0208e700cf108f6295f66e2bb003fe53607b (patch) | |
tree | 0bece2aab2b4aded7fc44da9e9904ddc546a7e6e /src/settingswidget.h | |
parent | 35c8d9e91c26e0c788c7ee3ae69b5421dde1af69 (diff) | |
download | whatsie-e0ac0208e700cf108f6295f66e2bb003fe53607b.tar.gz whatsie-e0ac0208e700cf108f6295f66e2bb003fe53607b.zip |
implemented new about dialog,
app lock feature
Diffstat (limited to 'src/settingswidget.h')
-rw-r--r-- | src/settingswidget.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/settingswidget.h b/src/settingswidget.h index a21a410..640f294 100644 --- a/src/settingswidget.h +++ b/src/settingswidget.h @@ -21,7 +21,7 @@ signals: void muteToggled(const bool checked); void autoPlayMediaToggled(const bool checked); void userAgentChanged(QString userAgentStr); - + void init_lock(); public: explicit SettingsWidget(QWidget *parent = nullptr,QString engineCachePath = "", QString enginePersistentStoragePath = ""); @@ -30,6 +30,8 @@ public: public slots: void refresh(); void updateDefaultUAButton(const QString engineUA); + void appLockSetChecked(bool checked); + void setCurrentPasswordText(QString str); private slots: QString cachePath(); QString persistentStoragePath(); @@ -57,6 +59,8 @@ private slots: void on_closeButtonActionComboBox_currentIndexChanged(int index); + void on_applock_checkbox_toggled(bool checked); + private: Ui::SettingsWidget *ui; QString engineCachePath,enginePersistentStoragePath; |