keepassxc/src/core/Group.h

89 lines
2.3 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 <QtGui/QImage>
2010-08-07 09:10:44 -04:00
#include "Entry.h"
#include "TimeInfo.h"
2010-08-07 09:10:44 -04:00
#include "Uuid.h"
class Database;
class Group : public QObject
{
Q_OBJECT
public:
Group();
Uuid uuid() const;
QString name() const;
QString notes() const;
QImage icon() const;
TimeInfo timeInfo() const;
bool isExpanded() const;
QString defaultAutoTypeSequence() const;
Entry* lastTopVisibleEntry() const;
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 setLastTopVisibleEntry(Entry* entry);
const Group* parentGroup() const;
void setParent(Group* parent);
void setParent(Database* db);
2010-08-14 06:24:35 -04:00
const Database* database() const;
QList<Group*> children();
2010-08-15 09:03:47 -04:00
QList<const Group*> children() const;
QList<Entry*> entries();
2010-08-15 09:03:47 -04:00
QList<const Entry*> entries() const;
void addEntry(Entry* entry);
void removeEntry(Entry* entry);
2010-08-15 09:03:47 -04:00
Q_SIGNALS:
void groupChanged(const Group* group);
2010-08-07 09:10:44 -04:00
private:
2010-08-14 06:24:35 -04:00
void recSetDatabase(Database* db);
Database* m_db;
2010-08-07 09:10:44 -04:00
Uuid m_uuid;
QString m_name;
QString m_notes;
int m_iconNumber;
2010-08-07 09:10:44 -04:00
Uuid m_customIcon;
TimeInfo m_timeInfo;
2010-08-07 09:10:44 -04:00
bool m_isExpanded;
QString m_defaultAutoTypeSequence;
Entry* m_lastTopVisibleEntry;
QList<Group*> m_children;
QList<Entry*> m_entries;
2010-08-07 09:10:44 -04:00
Group* m_parent;
2010-08-07 09:10:44 -04:00
};
#endif // KEEPASSX_GROUP_H