78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
/*
|
|
|
|
Copyright (c) 2015, 2016 Hubert Denkmair <hubert@denkmair.de>
|
|
|
|
This file is part of cangaroo.
|
|
|
|
cangaroo 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.
|
|
|
|
cangaroo 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 cangaroo. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "SetupDialogTreeItem.h"
|
|
|
|
#include <QAbstractItemModel>
|
|
#include <core/Backend.h>
|
|
#include <core/MeasurementSetup.h>
|
|
|
|
class SetupDialogTreeModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum {
|
|
column_device,
|
|
column_driver,
|
|
column_bitrate,
|
|
column_filename,
|
|
column_path,
|
|
column_count
|
|
};
|
|
|
|
public:
|
|
explicit SetupDialogTreeModel(Backend *backend, QObject *parent=0);
|
|
virtual ~SetupDialogTreeModel();
|
|
|
|
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
|
|
QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
|
|
|
|
QModelIndex indexOfItem(const SetupDialogTreeItem *item) const;
|
|
|
|
void load(MeasurementSetup &setup);
|
|
|
|
SetupDialogTreeItem *addNetwork();
|
|
void deleteNetwork(const QModelIndex &index);
|
|
int getNetworkCount();
|
|
|
|
SetupDialogTreeItem *addCanDb(const QModelIndex &parent, pCanDb db);
|
|
void deleteCanDb(const QModelIndex &index);
|
|
|
|
SetupDialogTreeItem *addInterface(const QModelIndex &parent, CanInterfaceId &interface);
|
|
void deleteInterface(const QModelIndex &index);
|
|
|
|
private:
|
|
Backend *_backend;
|
|
SetupDialogTreeItem *_rootItem;
|
|
SetupDialogTreeItem *itemOrRoot(const QModelIndex &index) const;
|
|
|
|
SetupDialogTreeItem *loadNetwork(SetupDialogTreeItem *root, MeasurementNetwork &network);
|
|
SetupDialogTreeItem *loadMeasurementInterface(SetupDialogTreeItem &parent, MeasurementInterface *intf);
|
|
SetupDialogTreeItem *loadCanDb(SetupDialogTreeItem &parent, pCanDb &db);
|
|
};
|