keepassxc/src/gui/DatabaseTabWidget.h

124 lines
3.9 KiB
C++
Raw Normal View History

2011-11-13 08:55:20 -05:00
/*
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
2011-11-13 08:55:20 -05:00
*
* 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.
2011-11-13 08:55:20 -05:00
*
* 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.
2011-11-13 08:55:20 -05:00
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2011-11-13 08:55:20 -05:00
*/
2012-01-11 12:12:41 -05:00
#ifndef KEEPASSX_DATABASETABWIDGET_H
#define KEEPASSX_DATABASETABWIDGET_H
2011-11-13 08:55:20 -05:00
2018-03-31 16:01:30 -04:00
#include <QFileInfo>
#include <QHash>
#include <QTabWidget>
2011-11-13 08:55:20 -05:00
#include "gui/DatabaseWidget.h"
#include "gui/MessageWidget.h"
2011-11-13 08:55:20 -05:00
class DatabaseWidget;
class DatabaseWidgetStateSync;
class DatabaseOpenWidget;
2011-11-13 08:55:20 -05:00
class QFile;
class MessageWidget;
2011-11-13 08:55:20 -05:00
struct DatabaseManagerStruct
{
DatabaseManagerStruct();
DatabaseWidget* dbWidget;
QFileInfo fileInfo;
2011-11-13 08:55:20 -05:00
bool modified;
bool readOnly;
int saveAttempts;
2011-11-13 08:55:20 -05:00
};
Q_DECLARE_TYPEINFO(DatabaseManagerStruct, Q_MOVABLE_TYPE);
class DatabaseTabWidget : public QTabWidget
2011-11-13 08:55:20 -05:00
{
Q_OBJECT
public:
2015-07-24 12:28:12 -04:00
explicit DatabaseTabWidget(QWidget* parent = nullptr);
~DatabaseTabWidget() override;
2018-03-31 16:01:30 -04:00
void openDatabase(const QString& fileName, const QString& pw = QString(), const QString& keyFile = QString());
void mergeDatabase(const QString& fileName);
DatabaseWidget* currentDatabaseWidget();
2014-05-15 16:53:59 -04:00
bool hasLockableDatabases() const;
2011-11-13 08:55:20 -05:00
2012-05-27 17:01:14 -04:00
static const int LastDatabasesCount;
public slots:
void newDatabase();
2011-11-13 08:55:20 -05:00
void openDatabase();
void importCsv();
void mergeDatabase();
void importKeePass1Database();
bool saveDatabase(int index = -1);
bool saveDatabaseAs(int index = -1);
void exportToCsv();
bool closeDatabase(int index = -1);
void closeDatabaseFromSender();
bool closeAllDatabases();
void changeMasterKey();
void changeDatabaseSettings();
bool readOnly(int index = -1);
bool canSave(int index = -1);
bool isModified(int index = -1);
void performGlobalAutoType();
2012-10-12 06:12:00 -04:00
void lockDatabases();
void relockPendingDatabase();
2017-03-21 22:01:44 -04:00
QString databasePath(int index = -1);
2011-11-13 08:55:20 -05:00
signals:
void tabNameChanged();
void databaseWithFileClosed(QString filePath);
void activateDatabaseChanged(DatabaseWidget* dbWidget);
2016-10-08 12:55:05 -04:00
void databaseLocked(DatabaseWidget* dbWidget);
void databaseUnlocked(DatabaseWidget* dbWidget);
void messageGlobal(const QString&, MessageWidget::MessageType type);
void messageTab(const QString&, MessageWidget::MessageType type);
void messageDismissGlobal();
void messageDismissTab();
private slots:
2011-11-13 08:55:20 -05:00
void updateTabName(Database* db);
2012-10-12 06:12:00 -04:00
void updateTabNameFromDbSender();
void updateTabNameFromDbWidgetSender();
void modified();
void toggleTabbar();
void changeDatabase(Database* newDb, bool unsavedChanges);
void emitActivateDatabaseChanged();
2016-10-08 12:55:05 -04:00
void emitDatabaseUnlockedFromDbWidgetSender();
2011-12-29 13:01:58 -05:00
2011-11-13 08:55:20 -05:00
private:
bool saveDatabase(Database* db, QString filePath = "");
bool saveDatabaseAs(Database* db);
bool closeDatabase(Database* db);
void deleteDatabase(Database* db);
2011-11-13 08:55:20 -05:00
int databaseIndex(Database* db);
Database* indexDatabase(int index);
DatabaseManagerStruct indexDatabaseManagerStruct(int index);
Database* databaseFromDatabaseWidget(DatabaseWidget* dbWidget);
void insertDatabase(Database* db, const DatabaseManagerStruct& dbStruct);
2012-05-27 17:01:14 -04:00
void updateLastDatabases(const QString& filename);
2015-07-24 12:28:12 -04:00
void connectDatabase(Database* newDb, Database* oldDb = nullptr);
2011-11-13 08:55:20 -05:00
QHash<Database*, DatabaseManagerStruct> m_dbList;
QPointer<DatabaseWidgetStateSync> m_dbWidgetStateSync;
QPointer<DatabaseWidget> m_dbPendingLock;
2011-11-13 08:55:20 -05:00
};
2012-01-11 12:12:41 -05:00
#endif // KEEPASSX_DATABASETABWIDGET_H