keepassxc/src/gui/DatabaseManager.h

85 lines
2.2 KiB
C
Raw Normal View History

2011-11-13 08:55:20 -05:00
/*
* Copyright (C) 2011 Felix Geyer <debfx@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 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 KEEPASSX_DATABASEMANAGER_H
#define KEEPASSX_DATABASEMANAGER_H
#include <QtCore/QHash>
#include <QtCore/QObject>
#include "format/KeePass2Reader.h"
#include "format/KeePass2Writer.h"
class DatabaseWidget;
class KeyOpenDialog;
2011-11-13 08:55:20 -05:00
class QFile;
class QTabWidget;
struct DatabaseManagerStruct
{
DatabaseManagerStruct();
QFile* file;
DatabaseWidget* dbWidget;
QString fileName;
2011-11-13 08:55:20 -05:00
bool modified;
bool readOnly;
};
class DatabaseManager : public QObject
{
Q_OBJECT
public:
DatabaseManager(QTabWidget* tabWidget);
void openDatabase(const QString& fileName);
void saveDatabase(Database* db);
2011-12-24 13:22:42 -05:00
void saveDatabaseAs(Database* db);
2011-11-13 08:55:20 -05:00
void closeDatabase(Database* db);
public Q_SLOTS:
void newDatabase();
2011-11-13 08:55:20 -05:00
void openDatabase();
void saveDatabase(int index = -1);
2011-12-24 13:22:42 -05:00
void saveDatabaseAs(int index = -1);
void closeDatabase(int index = -1);
2011-12-27 10:04:59 -05:00
void createEntry();
void createGroup();
void editGroup();
2011-11-13 08:55:20 -05:00
private Q_SLOTS:
void updateTabName(Database* db);
void openDatabaseDialog();
void openDatabaseRead();
void openDatabaseCleanup();
2011-11-13 08:55:20 -05:00
private:
int databaseIndex(Database* db);
Database* indexDatabase(int index);
void insertDatabase(Database* db, const DatabaseManagerStruct& dbStruct);
2011-11-13 08:55:20 -05:00
QTabWidget* m_tabWidget;
QWidget* m_window;
KeePass2Reader m_reader;
KeePass2Writer m_writer;
QHash<Database*, DatabaseManagerStruct> m_dbList;
DatabaseManagerStruct m_curDbStruct;
KeyOpenDialog* m_curKeyDialog;
2011-11-13 08:55:20 -05:00
};
#endif // KEEPASSX_DATABASEMANAGER_H