2010-08-24 16:26:52 -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 "EntryView.h"
|
|
|
|
|
2011-07-08 08:51:14 -04:00
|
|
|
#include "gui/EntryModel.h"
|
2010-08-24 16:26:52 -04:00
|
|
|
|
|
|
|
EntryView::EntryView(QWidget* parent)
|
|
|
|
: QTreeView(parent)
|
2012-04-23 13:44:43 -04:00
|
|
|
, m_model(new EntryModel(this))
|
2010-08-24 16:26:52 -04:00
|
|
|
{
|
|
|
|
QTreeView::setModel(m_model);
|
2010-08-24 17:06:35 -04:00
|
|
|
|
|
|
|
setUniformRowHeights(true);
|
|
|
|
setRootIsDecorated(false);
|
2012-04-26 10:35:13 -04:00
|
|
|
setDragEnabled(true);
|
2010-10-06 13:40:50 -04:00
|
|
|
|
|
|
|
connect(this, SIGNAL(activated(const QModelIndex&)), SLOT(emitEntryActivated(const QModelIndex&)));
|
2011-12-29 13:01:58 -05:00
|
|
|
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
|
2010-08-24 16:26:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EntryView::setGroup(Group* group)
|
|
|
|
{
|
|
|
|
m_model->setGroup(group);
|
2012-04-16 15:28:49 -04:00
|
|
|
Q_EMIT entrySelectionChanged();
|
2010-08-24 16:26:52 -04:00
|
|
|
}
|
|
|
|
|
2010-09-19 13:45:14 -04:00
|
|
|
void EntryView::emitEntryActivated(const QModelIndex& index)
|
|
|
|
{
|
|
|
|
Q_EMIT entryActivated(m_model->entryFromIndex(index));
|
|
|
|
}
|
|
|
|
|
2010-08-24 16:26:52 -04:00
|
|
|
void EntryView::setModel(QAbstractItemModel* model)
|
|
|
|
{
|
|
|
|
Q_UNUSED(model);
|
|
|
|
Q_ASSERT(false);
|
|
|
|
}
|
2011-12-29 13:01:58 -05:00
|
|
|
|
|
|
|
Entry* EntryView::currentEntry()
|
|
|
|
{
|
|
|
|
// TODO use selection instead of current?
|
|
|
|
return m_model->entryFromIndex(currentIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EntryView::isSingleEntrySelected()
|
|
|
|
{
|
|
|
|
return (selectionModel()->selectedRows().size() == 1);
|
|
|
|
}
|