2010-08-07 09:10:44 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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_METADATA_H
|
|
|
|
#define KEEPASSX_METADATA_H
|
|
|
|
|
|
|
|
#include <QtCore/QDateTime>
|
|
|
|
#include <QtCore/QHash>
|
2012-04-21 17:54:15 -04:00
|
|
|
#include <QtCore/QPointer>
|
2012-04-21 10:45:46 -04:00
|
|
|
#include <QtGui/QColor>
|
2012-01-01 15:52:54 -05:00
|
|
|
#include <QtGui/QImage>
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2012-06-29 08:15:16 -04:00
|
|
|
#include "core/Global.h"
|
2011-07-08 08:51:14 -04:00
|
|
|
#include "core/Uuid.h"
|
|
|
|
|
2010-08-13 12:08:06 -04:00
|
|
|
class Database;
|
|
|
|
class Group;
|
|
|
|
|
|
|
|
class Metadata : public QObject
|
2010-08-07 09:10:44 -04:00
|
|
|
{
|
2010-08-13 12:08:06 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
public:
|
2012-06-29 08:15:16 -04:00
|
|
|
explicit Metadata(QObject* parent = Q_NULLPTR);
|
2010-08-07 09:10:44 -04:00
|
|
|
|
|
|
|
QString generator() const;
|
|
|
|
QString name() const;
|
|
|
|
QDateTime nameChanged() const;
|
|
|
|
QString description() const;
|
|
|
|
QDateTime descriptionChanged() const;
|
|
|
|
QString defaultUserName() const;
|
2010-08-12 15:38:59 -04:00
|
|
|
QDateTime defaultUserNameChanged() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
int maintenanceHistoryDays() const;
|
2012-04-21 10:45:46 -04:00
|
|
|
QColor color() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
bool protectTitle() const;
|
|
|
|
bool protectUsername() const;
|
|
|
|
bool protectPassword() const;
|
|
|
|
bool protectUrl() const;
|
|
|
|
bool protectNotes() const;
|
2012-04-21 10:45:46 -04:00
|
|
|
// bool autoEnableVisualHiding() const;
|
2012-01-01 15:52:54 -05:00
|
|
|
QImage customIcon(const Uuid& uuid) const;
|
2012-04-27 05:22:02 -04:00
|
|
|
bool containsCustomIcon(const Uuid& uuid) const;
|
2012-01-01 15:52:54 -05:00
|
|
|
QHash<Uuid, QImage> customIcons() const;
|
2012-05-13 14:50:41 -04:00
|
|
|
QList<Uuid> customIconsOrder() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
bool recycleBinEnabled() const;
|
2012-04-18 17:17:29 -04:00
|
|
|
Group* recycleBin();
|
2010-08-13 12:08:06 -04:00
|
|
|
const Group* recycleBin() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
QDateTime recycleBinChanged() const;
|
2010-08-13 12:08:06 -04:00
|
|
|
const Group* entryTemplatesGroup() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
QDateTime entryTemplatesGroupChanged() const;
|
2010-08-13 12:08:06 -04:00
|
|
|
const Group* lastSelectedGroup() const;
|
|
|
|
const Group* lastTopVisibleGroup() const;
|
2010-09-25 06:41:00 -04:00
|
|
|
QDateTime masterKeyChanged() const;
|
|
|
|
int masterKeyChangeRec() const;
|
|
|
|
int masterKeyChangeForce() const;
|
2012-04-21 10:45:46 -04:00
|
|
|
int historyMaxItems() const;
|
|
|
|
int historyMaxSize() const;
|
2010-08-07 09:10:44 -04:00
|
|
|
QHash<QString, QString> customFields() const;
|
|
|
|
|
2012-05-14 13:10:42 -04:00
|
|
|
static const int DefaultHistoryMaxItems;
|
|
|
|
static const int DefaultHistoryMaxSize;
|
2012-05-10 07:15:43 -04:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
void setGenerator(const QString& value);
|
|
|
|
void setName(const QString& value);
|
|
|
|
void setNameChanged(const QDateTime& value);
|
|
|
|
void setDescription(const QString& value);
|
|
|
|
void setDescriptionChanged(const QDateTime& value);
|
|
|
|
void setDefaultUserName(const QString& value);
|
2010-08-12 15:38:59 -04:00
|
|
|
void setDefaultUserNameChanged(const QDateTime& value);
|
2010-08-07 09:10:44 -04:00
|
|
|
void setMaintenanceHistoryDays(int value);
|
2012-04-21 10:45:46 -04:00
|
|
|
void setColor(const QColor& value);
|
2010-08-07 09:10:44 -04:00
|
|
|
void setProtectTitle(bool value);
|
|
|
|
void setProtectUsername(bool value);
|
|
|
|
void setProtectPassword(bool value);
|
|
|
|
void setProtectUrl(bool value);
|
|
|
|
void setProtectNotes(bool value);
|
2012-04-21 10:45:46 -04:00
|
|
|
// void setAutoEnableVisualHiding(bool value);
|
2012-01-01 15:52:54 -05:00
|
|
|
void addCustomIcon(const Uuid& uuid, const QImage& icon);
|
2010-08-07 09:10:44 -04:00
|
|
|
void removeCustomIcon(const Uuid& uuid);
|
|
|
|
void setRecycleBinEnabled(bool value);
|
2010-08-13 12:08:06 -04:00
|
|
|
void setRecycleBin(Group* group);
|
2010-08-07 09:10:44 -04:00
|
|
|
void setRecycleBinChanged(const QDateTime& value);
|
2010-08-13 12:08:06 -04:00
|
|
|
void setEntryTemplatesGroup(Group* group);
|
2010-08-07 09:10:44 -04:00
|
|
|
void setEntryTemplatesGroupChanged(const QDateTime& value);
|
2010-08-13 12:08:06 -04:00
|
|
|
void setLastSelectedGroup(Group* group);
|
|
|
|
void setLastTopVisibleGroup(Group* group);
|
2010-09-25 06:41:00 -04:00
|
|
|
void setMasterKeyChanged(const QDateTime& value);
|
|
|
|
void setMasterKeyChangeRec(int value);
|
|
|
|
void setMasterKeyChangeForce(int value);
|
2012-04-21 10:45:46 -04:00
|
|
|
void setHistoryMaxItems(int value);
|
|
|
|
void setHistoryMaxSize(int value);
|
2010-08-07 09:10:44 -04:00
|
|
|
void addCustomField(const QString& key, const QString& value);
|
|
|
|
void removeCustomField(const QString& key);
|
2012-04-11 09:57:11 -04:00
|
|
|
void setUpdateDatetime(bool value);
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2011-11-13 08:54:11 -05:00
|
|
|
Q_SIGNALS:
|
2012-05-14 11:04:05 -04:00
|
|
|
void nameTextChanged();
|
2012-04-11 09:57:11 -04:00
|
|
|
void modified();
|
2011-11-13 08:54:11 -05:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
private:
|
2012-04-21 17:54:15 -04:00
|
|
|
template <class P, class V> bool set(P& property, const V& value);
|
|
|
|
template <class P, class V> bool set(P& property, const V& value, QDateTime& dateTime);
|
2012-04-11 09:57:11 -04:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
QString m_generator;
|
|
|
|
QString m_name;
|
|
|
|
QDateTime m_nameChanged;
|
|
|
|
QString m_description;
|
|
|
|
QDateTime m_descriptionChanged;
|
|
|
|
QString m_defaultUserName;
|
2010-08-12 15:38:59 -04:00
|
|
|
QDateTime m_defaultUserNameChanged;
|
2010-08-07 09:10:44 -04:00
|
|
|
int m_maintenanceHistoryDays;
|
2012-04-21 10:45:46 -04:00
|
|
|
QColor m_color;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
|
|
|
bool m_protectTitle;
|
|
|
|
bool m_protectUsername;
|
|
|
|
bool m_protectPassword;
|
|
|
|
bool m_protectUrl;
|
|
|
|
bool m_protectNotes;
|
2012-04-21 10:45:46 -04:00
|
|
|
// bool m_autoEnableVisualHiding;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2012-01-01 15:52:54 -05:00
|
|
|
QHash<Uuid, QImage> m_customIcons;
|
2012-05-13 14:50:41 -04:00
|
|
|
QList<Uuid> m_customIconsOrder;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
|
|
|
bool m_recycleBinEnabled;
|
2012-04-21 17:54:15 -04:00
|
|
|
QPointer<Group> m_recycleBin;
|
2010-08-07 09:10:44 -04:00
|
|
|
QDateTime m_recycleBinChanged;
|
2012-04-21 17:54:15 -04:00
|
|
|
QPointer<Group> m_entryTemplatesGroup;
|
2010-08-07 09:10:44 -04:00
|
|
|
QDateTime m_entryTemplatesGroupChanged;
|
2012-04-21 17:54:15 -04:00
|
|
|
QPointer<Group> m_lastSelectedGroup;
|
|
|
|
QPointer<Group> m_lastTopVisibleGroup;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2010-09-25 06:41:00 -04:00
|
|
|
QDateTime m_masterKeyChanged;
|
|
|
|
int m_masterKeyChangeRec;
|
|
|
|
int m_masterKeyChangeForce;
|
2012-04-21 10:45:46 -04:00
|
|
|
int m_historyMaxItems;
|
|
|
|
int m_historyMaxSize;
|
2010-09-25 06:41:00 -04:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
QHash<QString, QString> m_customFields;
|
2012-04-11 09:57:11 -04:00
|
|
|
|
|
|
|
bool m_updateDatetime;
|
2010-08-07 09:10:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_METADATA_H
|