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"
|
|
|
|
|
2012-07-22 15:56:31 -04:00
|
|
|
#include "gui/SortFilterHideProxyModel.h"
|
2012-05-16 04:16:32 -04:00
|
|
|
#include "gui/entry/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))
|
2012-07-22 15:56:31 -04:00
|
|
|
, m_sortModel(new SortFilterHideProxyModel(this))
|
2012-07-21 12:35:24 -04:00
|
|
|
, m_inEntryListMode(false)
|
2010-08-24 16:26:52 -04:00
|
|
|
{
|
2012-05-11 06:01:01 -04:00
|
|
|
m_sortModel->setSourceModel(m_model);
|
|
|
|
m_sortModel->setDynamicSortFilter(true);
|
|
|
|
m_sortModel->setSortLocaleAware(true);
|
|
|
|
m_sortModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
m_sortModel->setSupportedDragActions(m_model->supportedDragActions());
|
|
|
|
QTreeView::setModel(m_sortModel);
|
2010-08-24 17:06:35 -04:00
|
|
|
|
|
|
|
setUniformRowHeights(true);
|
|
|
|
setRootIsDecorated(false);
|
2012-05-15 14:04:20 -04:00
|
|
|
setAlternatingRowColors(true);
|
2012-04-26 10:35:13 -04:00
|
|
|
setDragEnabled(true);
|
2012-05-11 06:01:01 -04:00
|
|
|
setSortingEnabled(true);
|
2012-05-25 07:25:46 -04:00
|
|
|
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
2010-10-06 13:40:50 -04:00
|
|
|
|
2012-05-20 17:14:34 -04:00
|
|
|
connect(this, SIGNAL(activated(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
|
2011-12-29 13:01:58 -05:00
|
|
|
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
|
2012-07-21 12:35:24 -04:00
|
|
|
connect(m_model, SIGNAL(switchedToEntryListMode()), SLOT(switchToEntryListMode()));
|
|
|
|
connect(m_model, SIGNAL(switchedToGroupMode()), SLOT(switchToGroupMode()));
|
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
|
|
|
}
|
|
|
|
|
2012-07-21 12:35:24 -04:00
|
|
|
void EntryView::setEntryList(const QList<Entry*>& entries)
|
2012-05-12 07:22:41 -04:00
|
|
|
{
|
2012-07-21 12:35:24 -04:00
|
|
|
m_model->setEntryList(entries);
|
2012-05-12 07:22:41 -04:00
|
|
|
Q_EMIT entrySelectionChanged();
|
|
|
|
}
|
|
|
|
|
2012-07-21 12:35:24 -04:00
|
|
|
bool EntryView::inEntryListMode()
|
2012-05-13 12:08:22 -04:00
|
|
|
{
|
2012-07-21 12:35:24 -04:00
|
|
|
return m_inEntryListMode;
|
2012-05-13 12:08:22 -04:00
|
|
|
}
|
|
|
|
|
2010-09-19 13:45:14 -04:00
|
|
|
void EntryView::emitEntryActivated(const QModelIndex& index)
|
|
|
|
{
|
2012-05-11 06:01:01 -04:00
|
|
|
Q_EMIT entryActivated(entryFromIndex(index));
|
2010-09-19 13:45:14 -04:00
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
{
|
2012-05-25 07:25:46 -04:00
|
|
|
QModelIndexList list = selectionModel()->selectedRows();
|
|
|
|
if (list.size() == 1) {
|
|
|
|
return m_model->entryFromIndex(m_sortModel->mapToSource(list.first()));
|
|
|
|
}
|
|
|
|
else {
|
2012-07-23 08:58:57 -04:00
|
|
|
return Q_NULLPTR;
|
2012-05-25 07:25:46 -04:00
|
|
|
}
|
2011-12-29 13:01:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool EntryView::isSingleEntrySelected()
|
|
|
|
{
|
|
|
|
return (selectionModel()->selectedRows().size() == 1);
|
|
|
|
}
|
2012-05-02 13:33:37 -04:00
|
|
|
|
|
|
|
void EntryView::setCurrentEntry(Entry* entry)
|
|
|
|
{
|
2012-07-23 16:27:02 -04:00
|
|
|
selectionModel()->setCurrentIndex(m_sortModel->mapFromSource(m_model->indexFromEntry(entry)),
|
|
|
|
QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
|
2012-05-11 06:01:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Entry* EntryView::entryFromIndex(const QModelIndex& index)
|
|
|
|
{
|
|
|
|
if (index.isValid()) {
|
|
|
|
return m_model->entryFromIndex(m_sortModel->mapToSource(index));
|
|
|
|
}
|
|
|
|
else {
|
2012-07-23 08:58:57 -04:00
|
|
|
return Q_NULLPTR;
|
2012-05-11 06:01:01 -04:00
|
|
|
}
|
2012-05-02 13:33:37 -04:00
|
|
|
}
|
2012-05-12 07:22:41 -04:00
|
|
|
|
2012-07-21 12:35:24 -04:00
|
|
|
void EntryView::switchToEntryListMode()
|
2012-05-12 07:22:41 -04:00
|
|
|
{
|
2012-07-22 15:56:31 -04:00
|
|
|
m_sortModel->hideColumn(0, false);
|
2012-05-19 05:53:32 -04:00
|
|
|
sortByColumn(1, Qt::AscendingOrder); // TODO: should probably be improved
|
2012-05-16 04:52:59 -04:00
|
|
|
sortByColumn(0, Qt::AscendingOrder);
|
2012-07-21 12:35:24 -04:00
|
|
|
m_inEntryListMode = true;
|
2012-05-12 07:22:41 -04:00
|
|
|
}
|
|
|
|
|
2012-07-21 12:35:24 -04:00
|
|
|
void EntryView::switchToGroupMode()
|
2012-05-12 07:22:41 -04:00
|
|
|
{
|
2012-07-22 15:56:31 -04:00
|
|
|
m_sortModel->hideColumn(0, true);
|
|
|
|
sortByColumn(0, Qt::AscendingOrder);
|
2012-07-21 12:35:24 -04:00
|
|
|
m_inEntryListMode = false;
|
2012-05-12 07:22:41 -04:00
|
|
|
}
|