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/gui/DatabaseWidgetStateSync.h')
-rw-r--r--src/gui/DatabaseWidgetStateSync.h43
1 files changed, 25 insertions, 18 deletions
diff --git a/src/gui/DatabaseWidgetStateSync.h b/src/gui/DatabaseWidgetStateSync.h
index 96ecd104a..0b1c9b7cb 100644
--- a/src/gui/DatabaseWidgetStateSync.h
+++ b/src/gui/DatabaseWidgetStateSync.h
@@ -1,19 +1,20 @@
/*
- * Copyright (C) 2014 Felix Geyer <debfx@fobos.de>
- * Copyright (C) 2014 Florian Geyer <blueice@fobos.de>
+ * Copyright (C) 2018 KeePassXC Team <team@keepassxc.org>
+ * Copyright (C) 2014 Felix Geyer <debfx@fobos.de>
+ * Copyright (C) 2014 Florian Geyer <blueice@fobos.de>
*
- * 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 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.
+ * 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/>.
+ * 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 KEEPASSX_DATABASEWIDGETSTATESYNC_H
@@ -27,7 +28,7 @@ class DatabaseWidgetStateSync : public QObject
public:
explicit DatabaseWidgetStateSync(QObject* parent = nullptr);
- ~DatabaseWidgetStateSync();
+ ~DatabaseWidgetStateSync() override;
public slots:
void setActive(DatabaseWidget* dbWidget);
@@ -37,18 +38,24 @@ public slots:
private slots:
void blockUpdates();
void updateSplitterSizes();
- void updateColumnSizes();
+ void updateViewState();
+ void sync();
private:
static QList<int> variantToIntList(const QVariant& variant);
static QVariant intListToVariant(const QList<int>& list);
- DatabaseWidget* m_activeDbWidget;
+ QPointer<DatabaseWidget> m_activeDbWidget;
bool m_blockUpdates;
- QList<int> m_splitterSizes;
- QList<int> m_columnSizesList;
- QList<int> m_columnSizesSearch;
+ QList<int> m_mainSplitterSizes;
+ QList<int> m_detailSplitterSizes;
+
+ bool m_hideUsernames;
+ bool m_hidePasswords;
+
+ QByteArray m_listViewState;
+ QByteArray m_searchViewState;
};
#endif // KEEPASSX_DATABASEWIDGETSTATESYNC_H