Salome HOME
Updated copyright comment
[modules/yacs.git] / src / py2yacsgui / Py2YacsDialog_raw.hxx
1 // Copyright (C) 2016-2024  CEA, EDF
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 PY2YACSDIALOG_RAW_HXX
20 #define PY2YACSDIALOG_RAW_HXX
21
22 #include "config_py2yacsgui.hxx"
23 #include "Py2YacsModel.hxx"
24 #include <QDialog>
25
26 #ifdef HAS_PYEDITOR
27  class PyEditor_Editor;
28 #else
29  class QTextEdit;
30 #endif
31  class QComboBox;
32  class QPushButton;
33
34 class PY2YACSGUILIB_EXPORT Py2YacsDialog_raw : public QDialog
35 {
36   Q_OBJECT
37   public:
38     Py2YacsDialog_raw( QWidget* parent=0);
39     YACS::ENGINE::Proc* getYacsSchema();
40     QString getYacsFile();
41   public slots:
42     virtual void onFunctionNamesChange(std::list<std::string> validFunctionNames);
43     virtual void onLoad();
44     virtual void onExport();
45     virtual void checkModel();
46     virtual void invalidModel();
47     virtual void onApply();
48     virtual void onSave();
49     virtual void onSaveAs();
50   private:
51     Py2YacsModel _model;
52     QString _yacsFile;
53 #ifdef HAS_PYEDITOR
54     PyEditor_Editor *_pyEditor;
55 #else
56     QTextEdit *_pyEditor;
57 #endif
58     QComboBox *_functionChosen;
59     QPushButton *_saveButton;
60     QPushButton *_exportButton;
61     QPushButton *_okButton;
62 };
63
64 #endif // PY2YACSDIALOG_RAW_HXX