Salome HOME
Copyright update 2021
[modules/yacs.git] / src / py2yacsgui / Py2YacsModel.hxx
1 // Copyright (C) 2016-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef PY2YACSMODEL_HXX
20 #define PY2YACSMODEL_HXX
21
22 #include <string>
23 #include "config_py2yacsgui.hxx"
24 #include "py2yacs.hxx"
25 #include <list>
26 #include <QObject>
27
28 namespace YACS
29 {
30   namespace ENGINE
31   {
32     class Proc;
33   };
34 };
35
36 class PY2YACSGUILIB_EXPORT Py2YacsModel : public QObject
37 {
38   Q_OBJECT
39   public:
40   Py2YacsModel();
41   virtual ~Py2YacsModel();
42   void loadFile(const std::string& path);
43   void save();
44   void saveAs(const std::string& path);
45   void setScript(const std::string& texte);
46   const std::string& getScript();
47   const std::string& getLastError();
48   bool exportToXml(const std::string& path);
49   std::list<std::string> getValidFunctionNames();
50   void setFunctionName(const std::string& functionName);
51   bool savePossible();
52   bool schemaAvailable();
53   YACS::ENGINE::Proc* getProc();
54   
55   public slots:
56     void setFunctionName(const QString& functionName);
57   
58   signals:
59     void scriptChanged(const QString& script);
60     void errorChanged(const QString& script);
61     void functionsChanged(std::list<std::string> validFunctionNames);
62   private:
63     Py2yacs _data;
64     std::string _loadedFile;
65     std::string _script;
66     std::string _lastError;
67     std::string _functionName;
68 };
69
70 #endif // PY2YACSMODEL_HXX