2012-04-14 09:38:20 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 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_ENTRYATTACHMENTS_H
|
|
|
|
#define KEEPASSX_ENTRYATTACHMENTS_H
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QMap>
|
|
|
|
#include <QObject>
|
2012-04-14 09:38:20 -04:00
|
|
|
|
2017-10-22 14:15:25 -04:00
|
|
|
class QStringList;
|
|
|
|
|
2012-04-14 09:38:20 -04:00
|
|
|
class EntryAttachments : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-07-24 12:28:12 -04:00
|
|
|
explicit EntryAttachments(QObject* parent = nullptr);
|
2012-04-14 09:38:20 -04:00
|
|
|
QList<QString> keys() const;
|
2014-12-03 17:36:24 -05:00
|
|
|
bool hasKey(const QString& key) const;
|
2018-01-15 11:20:16 -05:00
|
|
|
QSet<QByteArray> values() const;
|
2012-04-14 09:38:20 -04:00
|
|
|
QByteArray value(const QString& key) const;
|
2012-04-21 10:45:46 -04:00
|
|
|
void set(const QString& key, const QByteArray& value);
|
2012-04-14 09:38:20 -04:00
|
|
|
void remove(const QString& key);
|
2017-10-22 14:15:25 -04:00
|
|
|
void remove(const QStringList& keys);
|
2017-12-13 15:22:31 -05:00
|
|
|
bool isEmpty() const;
|
2012-04-14 09:38:20 -04:00
|
|
|
void clear();
|
2012-07-20 06:13:26 -04:00
|
|
|
void copyDataFrom(const EntryAttachments* other);
|
2012-04-23 15:06:04 -04:00
|
|
|
bool operator==(const EntryAttachments& other) const;
|
2012-04-14 09:38:20 -04:00
|
|
|
bool operator!=(const EntryAttachments& other) const;
|
2018-01-22 20:31:29 -05:00
|
|
|
int attachmentsSize() const;
|
2012-04-14 09:38:20 -04:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
signals:
|
2018-11-22 05:47:31 -05:00
|
|
|
void entryAttachmentsModified();
|
2012-04-28 15:42:23 -04:00
|
|
|
void keyModified(const QString& key);
|
|
|
|
void aboutToBeAdded(const QString& key);
|
|
|
|
void added(const QString& key);
|
|
|
|
void aboutToBeRemoved(const QString& key);
|
|
|
|
void removed(const QString& key);
|
2012-04-14 09:38:20 -04:00
|
|
|
void aboutToBeReset();
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QMap<QString, QByteArray> m_attachments;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_ENTRYATTACHMENTS_H
|