/* Copyright (C) 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" Group::Group() { m_parent = 0; m_db = 0; } Group::~Group() { // TODO notify parent } 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); } int Group::iconNumber() const { return m_iconNumber; } Uuid Group::iconUuid() const { return m_customIcon; } 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; Q_EMIT dataChanged(this); } void Group::setNotes(const QString& notes) { m_notes = notes; } void Group::setIcon(int iconNumber) { Q_ASSERT(iconNumber >= 0); m_iconNumber = iconNumber; m_customIcon = Uuid(); Q_EMIT dataChanged(this); } void Group::setIcon(const Uuid& uuid) { Q_ASSERT(!uuid.isNull()); m_iconNumber = 0; m_customIcon = uuid; Q_EMIT dataChanged(this); } 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, int index) { Q_ASSERT(parent); Q_ASSERT(index >= -1 && index <= parent->children().size()); if (index == -1) { index = parent->children().size(); } Q_EMIT aboutToRemove(this); if (m_parent) { m_parent->m_children.removeAll(this); } else if (m_db) { // parent was a Database m_db->setRootGroup(0); } Q_EMIT removed(); m_parent = parent; if (m_db != parent->m_db) { recSetDatabase(parent->m_db); } QObject::setParent(parent); Q_EMIT aboutToAdd(this, index); parent->m_children.insert(index, this); Q_EMIT added(); } void Group::setParent(Database* db) { Q_ASSERT(db); Q_EMIT aboutToRemove(this); if (m_parent) { m_parent->m_children.removeAll(this); } else if (m_db) { m_db->setRootGroup(0); } Q_EMIT removed(); m_parent = 0; recSetDatabase(db); QObject::setParent(db); db->setRootGroup(this); } const Database* Group::database() const { return m_db; } QList Group::children() { return m_children; } QList Group::children() const { QList constChildren; Q_FOREACH (Group* group, m_children) { constChildren << group; } return constChildren; } QList Group::entries() { return m_entries; } QList Group::entries() const { QList constEntries; Q_FOREACH (Entry* entry, m_entries) { constEntries << entry; } return constEntries; } void Group::addEntry(Entry *entry) { Q_ASSERT(entry); Q_EMIT entryAboutToAdd(entry); m_entries << entry; connect(entry, SIGNAL(dataChanged(const Entry*)), SIGNAL(entryDataChanged(const Entry*))); Q_EMIT entryAdded(); } void Group::removeEntry(Entry* entry) { Q_EMIT entryAboutToRemove(entry); entry->disconnect(this); m_entries.removeAll(entry); Q_EMIT entryRemoved(); } void Group::recSetDatabase(Database* db) { disconnect(SIGNAL(dataChanged(const Group*)), m_db); disconnect(SIGNAL(aboutToRemove(const Group*)), m_db); disconnect(SIGNAL(removed()), m_db); disconnect(SIGNAL(aboutToAdd(const Group*,int)), m_db); disconnect(SIGNAL(added()), m_db); connect(this, SIGNAL(dataChanged(const Group*)), db, SIGNAL(groupDataChanged(const Group*))); connect(this, SIGNAL(aboutToRemove(const Group*)), db, SIGNAL(groupAboutToRemove(const Group*))); connect(this, SIGNAL(removed()), db, SIGNAL(groupRemoved())); connect(this, SIGNAL(aboutToAdd(const Group*,int)), db, SIGNAL(groupAboutToAdd(const Group*,int))); connect(this, SIGNAL(added()), db, SIGNAL(groupAdded())); m_db = db; Q_FOREACH (Group* group, m_children) { group->recSetDatabase(db); } }