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"
|
|
|
|
|
2011-12-27 09:49:06 -05:00
|
|
|
class DatabaseWidget;
|
2011-12-26 13:17:11 -05:00
|
|
|
class KeyOpenDialog;
|
2011-11-13 08:55:20 -05:00
|
|
|
class QFile;
|
|
|
|
class QTabWidget;
|
|
|
|
|
|
|
|
struct DatabaseManagerStruct
|
|
|
|
{
|
|
|
|
DatabaseManagerStruct();
|
|
|
|
|
|
|
|
QFile* file;
|
2011-12-27 09:49:06 -05:00
|
|
|
DatabaseWidget* dbWidget;
|
2011-12-26 13:17:11 -05:00
|
|
|
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);
|
2011-11-16 12:47:17 -05:00
|
|
|
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:
|
2011-11-16 12:47:17 -05:00
|
|
|
void newDatabase();
|
2011-11-13 08:55:20 -05:00
|
|
|
void openDatabase();
|
2011-11-16 12:47:17 -05:00
|
|
|
void saveDatabase(int index = -1);
|
2011-12-24 13:22:42 -05:00
|
|
|
void saveDatabaseAs(int index = -1);
|
2011-11-16 12:47:17 -05:00
|
|
|
void closeDatabase(int index = -1);
|
2011-12-27 10:04:59 -05:00
|
|
|
void createEntry();
|
2011-12-27 09:49:06 -05:00
|
|
|
void createGroup();
|
|
|
|
void editGroup();
|
2011-11-13 08:55:20 -05:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void updateTabName(Database* db);
|
2011-12-26 13:17:11 -05:00
|
|
|
void openDatabaseDialog();
|
|
|
|
void openDatabaseRead();
|
|
|
|
void openDatabaseCleanup();
|
2011-11-13 08:55:20 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
int databaseIndex(Database* db);
|
|
|
|
Database* indexDatabase(int index);
|
2011-11-16 12:47:17 -05:00
|
|
|
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;
|
2011-12-26 13:17:11 -05:00
|
|
|
DatabaseManagerStruct m_curDbStruct;
|
|
|
|
KeyOpenDialog* m_curKeyDialog;
|
2011-11-13 08:55:20 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_DATABASEMANAGER_H
|