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
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QColor>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QImage>
|
2016-01-24 11:56:35 -05:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QPixmapCache>
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QPointer>
|
2010-08-07 09:10:44 -04:00
|
|
|
|
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:
|
2015-07-24 12:28:12 -04:00
|
|
|
explicit Metadata(QObject* parent = 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;
|
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;
|
2016-01-24 11:56:35 -05:00
|
|
|
QPixmap customIconPixmap(const Uuid& uuid) const;
|
2016-01-24 12:42:27 -05:00
|
|
|
QPixmap customIconScaledPixmap(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;
|
2016-01-24 13:03:50 -05:00
|
|
|
QHash<Uuid, QPixmap> customIconsScaledPixmaps() 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);
|
2015-03-31 16:31:04 -04:00
|
|
|
void addCustomIconScaled(const Uuid& uuid, const QImage& icon);
|
2010-08-07 09:10:44 -04:00
|
|
|
void removeCustomIcon(const Uuid& uuid);
|
2013-04-07 12:32:43 -04:00
|
|
|
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);
|
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);
|
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
|
|
|
|
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
|
|
|
|
2013-11-22 04:28:11 -05:00
|
|
|
MetadataData m_data;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2012-01-01 15:52:54 -05:00
|
|
|
QHash<Uuid, QImage> m_customIcons;
|
2016-01-24 11:56:35 -05:00
|
|
|
mutable QHash<Uuid, QPixmapCache::Key> m_customIconCacheKeys;
|
2016-01-24 12:42:27 -05:00
|
|
|
mutable QHash<Uuid, QPixmapCache::Key> m_customIconScaledCacheKeys;
|
2012-05-13 14:50:41 -04:00
|
|
|
QList<Uuid> m_customIconsOrder;
|
2010-08-07 09:10:44 -04:00
|
|
|
|
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;
|
|
|
|
|
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
|