2013-03-17 20:24:48 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 The QElectroTech Team
|
2013-03-17 20:24:48 +00:00
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#ifndef NOMENCLATURE_H
|
|
|
|
#define NOMENCLATURE_H
|
|
|
|
|
2015-03-02 20:14:56 +00:00
|
|
|
#include <QtWidgets>
|
2013-03-17 20:24:48 +00:00
|
|
|
|
|
|
|
#include "qetproject.h"
|
|
|
|
#include "diagram.h"
|
2013-11-14 10:11:22 +00:00
|
|
|
#include "qetgraphicsitem/element.h"
|
2013-03-17 20:24:48 +00:00
|
|
|
#include "diagramcontent.h"
|
2015-06-10 19:31:26 +00:00
|
|
|
#include "diagramposition.h"
|
2013-03-17 20:24:48 +00:00
|
|
|
|
|
|
|
class QETProject;
|
|
|
|
class Diagram;
|
|
|
|
class Element;
|
|
|
|
|
|
|
|
/**
|
|
|
|
This class represents a nomenclature...
|
|
|
|
*/
|
2015-09-15 08:20:39 +00:00
|
|
|
class nomenclature
|
|
|
|
{
|
2013-03-17 20:24:48 +00:00
|
|
|
private:
|
|
|
|
QETProject *m_project;
|
|
|
|
QList<Diagram *> m_list_diagram;
|
|
|
|
QWidget *m_parent;
|
|
|
|
|
|
|
|
// constructors, destructor
|
|
|
|
public:
|
2017-08-05 02:06:59 +00:00
|
|
|
nomenclature(QETProject *project, QWidget *parent =nullptr);
|
2013-03-17 20:24:48 +00:00
|
|
|
virtual ~nomenclature();
|
|
|
|
|
|
|
|
// attributes
|
|
|
|
public:
|
|
|
|
|
|
|
|
// methods
|
|
|
|
public:
|
|
|
|
bool saveToCSVFile();
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
2014-10-05 13:35:01 +00:00
|
|
|
QString getNomenclature ();
|
2016-05-25 14:49:33 +00:00
|
|
|
QString getElementInfo (Element *elmt);
|
2013-03-17 20:24:48 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|