##// END OF EJS Templates
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1408:45ab63a4480c
r1408:45ab63a4480c
Show More
eventsmodel.cpp
105 lines | 2.8 KiB | text/x-c | CppLexer
Converted catalogue gui tests to manual tests...
r1407 /*
This file is part of SciQLop.
SciQLop 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 3 of the License, or
(at your option) any later version.
SciQLop 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 SciQLop. If not, see <https://www.gnu.org/licenses/>.
*/
New Catalogue API WIP, basic models and views implemented...
r1406 #include "Catalogue2/eventsmodel.h"
#include <SqpApplication.h>
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 #include <Common/containers.h>
New Catalogue API WIP, basic models and views implemented...
r1406
EventsModel::EventsModel(QObject* parent) : QAbstractItemModel(parent) {}
EventsModel::ItemType EventsModel::type(const QModelIndex& index) const
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 if (EventsModelItem* item = to_item(index))
New Catalogue API WIP, basic models and views implemented...
r1406 {
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 return item->type;
New Catalogue API WIP, basic models and views implemented...
r1406 }
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 return ItemType::None;
New Catalogue API WIP, basic models and views implemented...
r1406 }
QVariant EventsModel::data(const QModelIndex& index, int role) const
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 if (index.isValid())
New Catalogue API WIP, basic models and views implemented...
r1406 {
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 return to_item(index)->data(index.column(),role);
New Catalogue API WIP, basic models and views implemented...
r1406 }
return QVariant {};
}
QModelIndex EventsModel::index(int row, int column, const QModelIndex& parent) const
{
if (!hasIndex(row, column, parent))
{
return QModelIndex();
}
switch (type(parent))
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 case ItemType::None: // is an event
return createIndex(row, column, _items[row].get());
case ItemType::Event: // is a product
return createIndex(row, column, to_item(parent)->children[row].get());
case ItemType::Product:
QModelIndex();
New Catalogue API WIP, basic models and views implemented...
r1406 }
return QModelIndex();
}
QModelIndex EventsModel::parent(const QModelIndex& index) const
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 auto item = to_item(index);
if (item->type == ItemType::Product)
New Catalogue API WIP, basic models and views implemented...
r1406 {
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 auto repoIndex = SciQLop::containers::index_of(_items, item->parent);
return createIndex(repoIndex, 0, item->parent);
New Catalogue API WIP, basic models and views implemented...
r1406 }
return QModelIndex();
}
int EventsModel::rowCount(const QModelIndex& parent) const
{
if (parent.column() > 0)
{
return 0;
}
switch (type(parent))
{
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
r1408 case ItemType::None:
return _items.size();
case ItemType::Event:
return to_item(parent)->children.size();
case ItemType::Product:
New Catalogue API WIP, basic models and views implemented...
r1406 break;
}
return 0;
}
int EventsModel::columnCount(const QModelIndex& parent) const
{
return static_cast<int>(EventsModel::Columns::NbColumn);
}
QVariant EventsModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole && section < ColumnsNames.size())
{
return ColumnsNames[section];
}
return QVariant();
}
void EventsModel::sort(int column, Qt::SortOrder order) {}