keepassxc/src/core/Group.cpp

226 lines
3.9 KiB
C++
Raw Normal View History

2010-08-07 09:10:44 -04:00
/*
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 of the License, or
(at your option) any later version.
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "Group.h"
#include "Database.h"
2010-08-13 12:08:06 -04:00
Group::Group()
{
2010-08-13 12:08:06 -04:00
m_parent = 0;
m_db = 0;
}
Uuid Group::uuid() const
{
return m_uuid;
}
QString Group::name() const
{
return m_name;
}
QString Group::notes() const
{
return m_notes;
}
QImage Group::icon() const
{
if (m_iconNumber == 0)
return m_db->customIcon(m_customIcon);
else
return Database::icon(m_iconNumber);
}
TimeInfo Group::timeInfo() const
{
return m_timeInfo;
}
bool Group::isExpanded() const
{
return m_isExpanded;
}
QString Group::defaultAutoTypeSequence() const
{
return m_defaultAutoTypeSequence;
}
Entry* Group::lastTopVisibleEntry() const
{
return m_lastTopVisibleEntry;
}
void Group::setUuid(const Uuid& uuid)
{
m_uuid = uuid;
}
void Group::setName(const QString& name)
{
m_name = name;
}
void Group::setNotes(const QString& notes)
{
m_notes = notes;
}
void Group::setIcon(int iconNumber)
{
2010-08-14 06:24:35 -04:00
Q_ASSERT(iconNumber >= 0);
m_iconNumber = iconNumber;
m_customIcon = Uuid();
}
void Group::setIcon(const Uuid& uuid)
{
2010-08-14 06:24:35 -04:00
Q_ASSERT(!uuid.isNull());
m_iconNumber = 0;
m_customIcon = uuid;
}
void Group::setTimeInfo(const TimeInfo& timeInfo)
{
m_timeInfo = timeInfo;
}
void Group::setExpanded(bool expanded)
{
m_isExpanded = expanded;
}
void Group::setDefaultAutoTypeSequence(const QString& sequence)
{
m_defaultAutoTypeSequence = sequence;
}
void Group::setLastTopVisibleEntry(Entry* entry)
{
m_lastTopVisibleEntry = entry;
}
const Group* Group::parentGroup() const
{
return m_parent;
}
void Group::setParent(Group* parent)
{
2010-08-13 12:08:06 -04:00
Q_ASSERT(parent != 0);
if (m_parent) {
m_parent->m_children.removeAll(this);
}
2010-08-13 12:08:06 -04:00
else if (m_db) {
m_db->setRootGroup(0);
}
2010-08-13 12:08:06 -04:00
m_parent = parent;
2010-08-14 06:24:35 -04:00
if (m_db != parent->m_db) {
recSetDatabase(parent->m_db);
}
QObject::setParent(parent);
2010-08-13 12:08:06 -04:00
parent->m_children << this;
}
void Group::setParent(Database* db)
{
2010-08-13 12:08:06 -04:00
Q_ASSERT(db != 0);
if (m_parent) {
m_parent->m_children.removeAll(this);
}
else if (m_db) {
m_db->setRootGroup(0);
}
m_parent = 0;
2010-08-14 06:24:35 -04:00
recSetDatabase(db);
QObject::setParent(db);
2010-08-13 12:08:06 -04:00
db->setRootGroup(this);
}
2010-08-14 06:24:35 -04:00
const Database* Group::database() const
{
return m_db;
}
QList<const Group*> Group::children() const
{
QList<const Group*> constChildren;
Q_FOREACH (Group* group, m_children) {
constChildren << group;
}
return constChildren;
}
QList<Group*> Group::children()
{
return m_children;
}
QList<const Entry*> Group::entries() const
{
QList<const Entry*> constEntries;
Q_FOREACH (Entry* entry, m_entries) {
constEntries << entry;
}
return constEntries;
}
QList<Entry*> Group::entries()
{
return m_entries;
}
void Group::addEntry(Entry *entry)
{
2010-08-14 06:24:35 -04:00
Q_ASSERT(entry != 0);
m_entries << entry;
}
void Group::removeEntry(Entry* entry)
{
m_entries.removeAll(entry);
}
2010-08-14 06:24:35 -04:00
void Group::recSetDatabase(Database* db)
{
m_db = db;
Q_FOREACH (Group* group, m_children) {
group->recSetDatabase(db);
}
}