keepassxc/src/core/Group.h

170 lines
4.9 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_GROUP_H
#define KEEPASSX_GROUP_H
#include <QImage>
#include <QPixmap>
#include <QPixmapCache>
#include <QPointer>
2011-07-08 08:51:14 -04:00
#include "core/Database.h"
#include "core/Entry.h"
#include "core/TimeInfo.h"
#include "core/Uuid.h"
2010-08-07 09:10:44 -04:00
class Group : public QObject
{
Q_OBJECT
public:
enum TriState { Inherit, Enable, Disable };
struct GroupData
{
QString name;
QString notes;
int iconNumber;
Uuid customIcon;
TimeInfo timeInfo;
bool isExpanded;
QString defaultAutoTypeSequence;
Group::TriState autoTypeEnabled;
Group::TriState searchingEnabled;
};
Group();
2010-08-18 10:22:48 -04:00
~Group();
static Group* createRecycleBin();
Uuid uuid() const;
QString name() const;
QString notes() const;
QImage icon() const;
QPixmap iconPixmap() const;
int iconNumber() const;
Uuid iconUuid() const;
TimeInfo timeInfo() const;
bool isExpanded() const;
QString defaultAutoTypeSequence() const;
Group::TriState autoTypeEnabled() const;
2012-05-13 07:33:55 -04:00
Group::TriState searchingEnabled() const;
bool resolveSearchingEnabled() const;
Entry* lastTopVisibleEntry() const;
bool isExpired() const;
static const int DefaultIconNumber;
static const int RecycleBinIconNumber;
void setUuid(const Uuid& uuid);
void setName(const QString& name);
void setNotes(const QString& notes);
void setIcon(int iconNumber);
void setIcon(const Uuid& uuid);
void setTimeInfo(const TimeInfo& timeInfo);
void setExpanded(bool expanded);
void setDefaultAutoTypeSequence(const QString& sequence);
void setAutoTypeEnabled(TriState enable);
void setSearchingEnabled(TriState enable);
void setLastTopVisibleEntry(Entry* entry);
2013-03-26 18:53:34 -04:00
void setExpires(bool value);
2012-05-18 04:52:05 -04:00
void setExpiryTime(const QDateTime& dateTime);
2012-04-11 12:00:28 -04:00
void setUpdateTimeinfo(bool value);
Group* parentGroup();
const Group* parentGroup() const;
void setParent(Group* parent, int index = -1);
Database* database();
2010-08-14 06:24:35 -04:00
const Database* database() const;
QList<Group*> children();
2010-08-25 08:00:46 -04:00
const QList<Group*>& children() const;
QList<Entry*> entries();
2010-08-25 08:00:46 -04:00
const QList<Entry*>& entries() const;
QList<Entry*> entriesRecursive(bool includeHistoryItems = false) const;
2012-05-12 07:22:41 -04:00
QList<const Group*> groupsRecursive(bool includeSelf) const;
QSet<Uuid> customIconsRecursive() const;
2013-07-04 07:59:32 -04:00
/**
* Creates a duplicate of this group including all child entries and groups.
* The exceptions are that the returned group doesn't have a parent group
* and all TimeInfo attributes are set to the current time.
* Note that you need to copy the custom icons manually when inserting the
* new group into another database.
*/
Group* clone(Entry::CloneFlags entryFlags = Entry::CloneNewUuid | Entry::CloneResetTimeInfo) const;
void copyDataFrom(const Group* other);
2013-11-22 04:28:11 -05:00
Database* exportToDb();
2012-04-21 13:06:28 -04:00
2012-05-12 07:22:41 -04:00
QList<Entry*> search(const QString& searchTerm, Qt::CaseSensitivity caseSensitivity,
bool resolveInherit = true);
2010-08-15 09:03:47 -04:00
Q_SIGNALS:
void dataChanged(Group* group);
2010-08-18 10:22:48 -04:00
void aboutToAdd(Group* group, int index);
void added();
void aboutToRemove(Group* group);
2010-08-18 10:22:48 -04:00
void removed();
/**
* Group moved within the database.
*/
void aboutToMove(Group* group, Group* toGroup, int index);
void moved();
2010-08-18 10:22:48 -04:00
void entryAboutToAdd(Entry* entry);
void entryAdded(Entry* entry);
void entryAboutToRemove(Entry* entry);
void entryRemoved(Entry* entry);
2010-08-18 10:22:48 -04:00
void entryDataChanged(Entry* entry);
2010-08-15 09:03:47 -04:00
2012-04-11 12:00:28 -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);
2012-04-11 12:00:28 -04:00
2011-07-08 07:57:02 -04:00
void addEntry(Entry* entry);
void removeEntry(Entry* entry);
void setParent(Database* db);
2010-08-14 06:24:35 -04:00
void recSetDatabase(Database* db);
void cleanupParent();
2012-04-21 13:06:28 -04:00
void recCreateDelObjects();
2012-04-23 11:02:09 -04:00
void updateTimeinfo();
2010-08-14 06:24:35 -04:00
QPointer<Database> m_db;
2010-08-07 09:10:44 -04:00
Uuid m_uuid;
GroupData m_data;
QPointer<Entry> m_lastTopVisibleEntry;
QList<Group*> m_children;
QList<Entry*> m_entries;
2010-08-07 09:10:44 -04:00
QPointer<Group> m_parent;
mutable QPixmapCache::Key m_pixmapCacheKey;
2011-07-08 07:57:02 -04:00
2012-04-11 12:00:28 -04:00
bool m_updateTimeinfo;
2011-07-08 07:57:02 -04:00
friend void Database::setRootGroup(Group* group);
friend Entry::~Entry();
2012-05-02 11:04:03 -04:00
friend void Entry::setGroup(Group* group);
2010-08-07 09:10:44 -04:00
};
#endif // KEEPASSX_GROUP_H