keepassxc/src/gui/GroupView.cpp

60 lines
1.7 KiB
C++
Raw Normal View History

2010-08-22 10:02: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/>.
*/
#include "GroupView.h"
#include "core/Database.h"
#include "core/Group.h"
#include "gui/GroupModel.h"
GroupView::GroupView(Database* db, QWidget* parent) : QTreeView(parent)
{
2010-08-23 14:57:38 -04:00
m_model = new GroupModel(db, this);
QTreeView::setModel(m_model);
2010-08-22 10:02:44 -04:00
recInitExpanded(db->rootGroup());
setHeaderHidden(true);
2010-08-24 16:26:52 -04:00
connect(this, SIGNAL(clicked(const QModelIndex&)), SLOT(emitGroupChanged(const QModelIndex&)));
2010-08-22 10:02:44 -04:00
}
void GroupView::expandedChanged(const QModelIndex& index)
{
Group* group = m_model->groupFromIndex(index);
2010-08-22 10:02:44 -04:00
group->setExpanded(isExpanded(index));
}
void GroupView::recInitExpanded(Group* group)
2010-08-22 10:02:44 -04:00
{
2010-08-23 14:57:38 -04:00
QModelIndex index = m_model->index(group);
2010-08-22 10:02:44 -04:00
setExpanded(index, group->isExpanded());
Q_FOREACH (Group* child, group->children()) {
2010-08-22 10:02:44 -04:00
recInitExpanded(child);
}
}
2010-08-24 16:26:52 -04:00
void GroupView::emitGroupChanged(const QModelIndex& index)
{
Q_EMIT groupChanged(m_model->groupFromIndex(index));
}
2010-08-22 10:02:44 -04:00
void GroupView::setModel(QAbstractItemModel* model)
{
Q_UNUSED(model);
Q_ASSERT(false);
}