mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
0d011231e6
The combo-boxes (cylinder type, weightsystem, etc.) were controlled by global models. Keeping these models up-to-date was very combersome and buggy. Create a new model everytime a combobox is opened. Ultimately it might even be better to create a copy of the strings and switch to simple QStringListModel. Set data in the core directly and don't do this via the models. The result is much simpler and easier to handle. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
23 lines
519 B
C++
23 lines
519 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TANKINFOMODEL_H
|
|
#define TANKINFOMODEL_H
|
|
|
|
#include "cleanertablemodel.h"
|
|
|
|
/* Encapsulates the tank_info global variable
|
|
* to show on Qt's Model View System.*/
|
|
class TankInfoModel : public CleanerTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {
|
|
DESCRIPTION,
|
|
ML,
|
|
BAR
|
|
};
|
|
TankInfoModel(QObject *parent);
|
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
};
|
|
|
|
#endif
|