/* * Copyright (C) 2010 Felix Geyer * * 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 . */ #ifndef KEEPASSX_ENTRY_H #define KEEPASSX_ENTRY_H #include #include #include #include #include #include #include #include "core/AutoTypeAssociations.h" #include "core/EntryAttachments.h" #include "core/EntryAttributes.h" #include "core/TimeInfo.h" #include "core/Uuid.h" class Database; class Group; struct EntryData { int iconNumber; Uuid customIcon; QColor foregroundColor; QColor backgroundColor; QString overrideUrl; QString tags; bool autoTypeEnabled; int autoTypeObfuscation; QString defaultAutoTypeSequence; TimeInfo timeInfo; }; class Entry : public QObject { Q_OBJECT public: Entry(); ~Entry(); Uuid uuid() const; QImage icon() const; QPixmap iconPixmap() const; QPixmap iconScaledPixmap() const; int iconNumber() const; Uuid iconUuid() const; QColor foregroundColor() const; QColor backgroundColor() const; QString overrideUrl() const; QString tags() const; TimeInfo timeInfo() const; bool autoTypeEnabled() const; int autoTypeObfuscation() const; QString defaultAutoTypeSequence() const; QString effectiveAutoTypeSequence() const; AutoTypeAssociations* autoTypeAssociations(); const AutoTypeAssociations* autoTypeAssociations() const; QString title() const; QString url() const; QString username() const; QString password() const; QString notes() const; bool isExpired() const; EntryAttributes* attributes(); const EntryAttributes* attributes() const; EntryAttachments* attachments(); const EntryAttachments* attachments() const; static const int DefaultIconNumber; void setUuid(const Uuid& uuid); void setIcon(int iconNumber); void setIcon(const Uuid& uuid); void setForegroundColor(const QColor& color); void setBackgroundColor(const QColor& color); void setOverrideUrl(const QString& url); void setTags(const QString& tags); void setTimeInfo(const TimeInfo& timeInfo); void setAutoTypeEnabled(bool enable); void setAutoTypeObfuscation(int obfuscation); void setDefaultAutoTypeSequence(const QString& sequence); void setTitle(const QString& title); void setUrl(const QString& url); void setUsername(const QString& username); void setPassword(const QString& password); void setNotes(const QString& notes); void setExpires(const bool& value); void setExpiryTime(const QDateTime& dateTime); QList historyItems(); const QList& historyItems() const; void addHistoryItem(Entry* entry); void removeHistoryItems(const QList& historyEntries); void truncateHistory(); enum CloneFlag { CloneNoFlags = 0, CloneNewUuid = 1, // generate a random uuid for the clone CloneResetTimeInfo = 2, // set all TimeInfo attributes to the current time CloneIncludeHistory = 4 // clone the history items }; Q_DECLARE_FLAGS(CloneFlags, CloneFlag) /** * Creates a duplicate of this entry except that the returned entry isn't * part of any group. * Note that you need to copy the custom icons manually when inserting the * new entry into another database. */ Entry* clone(CloneFlags flags) const; void copyDataFrom(const Entry* other); QString resolvePlaceholders(const QString& str) const; /** * Call before and after set*() methods to create a history item * if the entry has been changed. */ void beginUpdate(); bool endUpdate(); Group* group(); const Group* group() const; void setGroup(Group* group); void setUpdateTimeinfo(bool value); Q_SIGNALS: /** * Emitted when a default attribute has been changed. */ void dataChanged(Entry* entry); void modified(); private Q_SLOTS: void emitDataChanged(); void updateTimeinfo(); void updateModifiedSinceBegin(); private: const Database* database() const; template bool set(T& property, const T& value); Uuid m_uuid; EntryData m_data; EntryAttributes* const m_attributes; EntryAttachments* const m_attachments; AutoTypeAssociations* const m_autoTypeAssociations; QList m_history; Entry* m_tmpHistoryItem; bool m_modifiedSinceBegin; QPointer m_group; bool m_updateTimeinfo; }; Q_DECLARE_OPERATORS_FOR_FLAGS(Entry::CloneFlags) #endif // KEEPASSX_ENTRY_H