Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/fdosecrets/widgets/SettingsWidgetFdoSecrets.h')
-rw-r--r--src/fdosecrets/widgets/SettingsWidgetFdoSecrets.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.h b/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.h
new file mode 100644
index 000000000..eac1f1e3c
--- /dev/null
+++ b/src/fdosecrets/widgets/SettingsWidgetFdoSecrets.h
@@ -0,0 +1,76 @@
+/*
+ * Copyright (C) 2018 Aetf <aetf@unlimitedcodeworks.xyz>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 or (at your option)
+ * version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef KEEPASSXC_SETTINGSWIDGETFDOSECRETS_H
+#define KEEPASSXC_SETTINGSWIDGETFDOSECRETS_H
+
+#include <QScopedPointer>
+#include <QWidget>
+
+class QTableWidgetItem;
+
+namespace FdoSecrets
+{
+
+ class Session;
+ class Collection;
+
+} // namespace FdoSecrets
+
+class FdoSecretsPlugin;
+
+namespace Ui
+{
+ class SettingsWidgetFdoSecrets;
+}
+class SettingsWidgetFdoSecrets : public QWidget
+{
+ Q_OBJECT
+public:
+ explicit SettingsWidgetFdoSecrets(FdoSecretsPlugin* plugin, QWidget* parent = nullptr);
+ ~SettingsWidgetFdoSecrets() override;
+
+public slots:
+ void loadSettings();
+ void saveSettings();
+
+private slots:
+ void populateSessions(bool enabled);
+ void populateDatabases(bool enabled);
+ void addSessionRow(FdoSecrets::Session* sess);
+ void removeSessionRow(FdoSecrets::Session* sess);
+ void addDatabaseRow(FdoSecrets::Collection* coll);
+ void removeDatabaseRow(FdoSecrets::Collection* coll);
+
+ void updateTables(bool enabled);
+
+protected:
+ void showEvent(QShowEvent* event) override;
+
+ void hideEvent(QHideEvent* event) override;
+
+private:
+ QWidget* createManageButtons(FdoSecrets::Collection* coll);
+
+ void updateExposedGroupItem(QTableWidgetItem* item, FdoSecrets::Collection* coll);
+
+private:
+ QScopedPointer<Ui::SettingsWidgetFdoSecrets> m_ui;
+ FdoSecretsPlugin* m_plugin;
+};
+
+#endif // KEEPASSXC_SETTINGSWIDGETFDOSECRETS_H