keepassxc/src/core/Metadata.h

172 lines
5.5 KiB
C
Raw Normal View History

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 <QColor>
#include <QDateTime>
#include <QHash>
#include <QImage>
#include <QPointer>
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
2013-11-22 04:28:11 -05:00
struct MetadataData
{
QString generator;
QString name;
QDateTime nameChanged;
QString description;
QDateTime descriptionChanged;
QString defaultUserName;
QDateTime defaultUserNameChanged;
int maintenanceHistoryDays;
QColor color;
bool recycleBinEnabled;
int historyMaxItems;
int historyMaxSize;
int masterKeyChangeRec;
int masterKeyChangeForce;
bool protectTitle;
bool protectUsername;
bool protectPassword;
bool protectUrl;
bool protectNotes;
// bool autoEnableVisualHiding;
};
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;
QDateTime defaultUserNameChanged() const;
2010-08-07 09:10:44 -04:00
int maintenanceHistoryDays() const;
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;
// bool autoEnableVisualHiding() const;
QImage customIcon(const Uuid& uuid) const;
bool containsCustomIcon(const Uuid& uuid) const;
QHash<Uuid, QImage> customIcons() const;
QList<Uuid> customIconsOrder() const;
2010-08-07 09:10:44 -04:00
bool recycleBinEnabled() const;
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;
QDateTime masterKeyChanged() const;
int masterKeyChangeRec() const;
int masterKeyChangeForce() const;
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;
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);
void setDefaultUserNameChanged(const QDateTime& value);
2010-08-07 09:10:44 -04:00
void setMaintenanceHistoryDays(int value);
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);
// void setAutoEnableVisualHiding(bool value);
void addCustomIcon(const Uuid& uuid, const QImage& icon);
2010-08-07 09:10:44 -04:00
void removeCustomIcon(const Uuid& uuid);
void copyCustomIcons(const QSet<Uuid>& iconList, const Metadata* otherMetadata);
2010-08-07 09:10:44 -04:00
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);
void setMasterKeyChanged(const QDateTime& value);
void setMasterKeyChangeRec(int value);
void setMasterKeyChangeForce(int value);
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);
2013-11-22 04:28:11 -05:00
/*
* Copy all attributes from other except:
* - Group pointers/uuids
* - Master key changed date
* - Custom icons
* - Custom fields
*/
void copyAttributesFrom(const Metadata* other);
2010-08-07 09:10:44 -04:00
Q_SIGNALS:
void nameTextChanged();
2012-04-11 09:57:11 -04:00
void modified();
2010-08-07 09:10:44 -04:00
private:
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
2013-11-22 04:28:11 -05:00
MetadataData m_data;
2010-08-07 09:10:44 -04:00
QHash<Uuid, QImage> m_customIcons;
QList<Uuid> m_customIconsOrder;
2010-08-07 09:10:44 -04:00
QPointer<Group> m_recycleBin;
2010-08-07 09:10:44 -04:00
QDateTime m_recycleBinChanged;
QPointer<Group> m_entryTemplatesGroup;
2010-08-07 09:10:44 -04:00
QDateTime m_entryTemplatesGroupChanged;
QPointer<Group> m_lastSelectedGroup;
QPointer<Group> m_lastTopVisibleGroup;
2010-08-07 09:10:44 -04:00
QDateTime m_masterKeyChanged;
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