/* Copyright 2006-2020 QElectroTech Team This file is part of QElectroTech. QElectroTech 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. QElectroTech 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 QElectroTech. If not, see . */ #ifndef NOMENCLATUREMODEL_H #define NOMENCLATUREMODEL_H #include #include #include class QETProject; /** * @brief The NomenclatureModel class * An element nomenclature Model. * This model represent a 2D data. * * NOTE : qelectrotech use the data Qt::UserRole+1 on this model to store a QMargins formated to a QString * This is important because to/from XML of this class store the data Qt::UserRole+1 as QString. */ class NomenclatureModel : public QAbstractTableModel { Q_OBJECT public: explicit NomenclatureModel(QETProject *project, QObject *parent = nullptr); explicit NomenclatureModel (const NomenclatureModel &other_model); int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override; bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole) override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; void query(const QString &query); QString queryString() const; QETProject *project() const; QDomElement toXml(QDomDocument &document) const; void fromXml(const QDomElement &element); static QString xmlTagName() {return QString("nomenclature_model");} private: void dataBaseUpdated(); void setHeaderString(); void fillValue(); private: QPointer m_project; QString m_query; QVector m_record; QHash> m_header_data; //First int = section, second int = Qt::role, QVariant = value QHash m_index_0_0_data; }; #endif // NOMENCLATUREMODEL_H