Salome HOME
Save foreach state - work in progress.
[modules/yacs.git] / src / ydfx_gui / YDFXGUIMain.hxx
1 // Copyright (C) 2016  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 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef __YDFXGUIMAIN_HXX__
22 #define __YDFXGUIMAIN_HXX__
23
24 #include "ydfxwidgetsExport.hxx"
25
26 #include <QPushButton>
27 #include <QTabWidget>
28 #include <QSettings>
29 #include <QThread>
30 #include <QMutex>
31
32 #include "Python.h"
33
34 class YACSEvalSession;
35 class YACSEvalYFXWrap;
36 class YDFXGUIAllPorts;
37 class YDFXGUIRunButton;
38
39 class YDFXGUIMainEFXWidget : public QWidget
40 {
41   Q_OBJECT
42 public:
43   YDFXWIDGETS_EXPORT YDFXGUIMainEFXWidget(YACSEvalSession *session, YACSEvalYFXWrap *efx, QWidget *parent);
44   YDFXWIDGETS_EXPORT ~YDFXGUIMainEFXWidget();
45 private:
46   YACSEvalSession *_session;
47   YACSEvalYFXWrap *_efx;//owned
48   YDFXGUIAllPorts *_ports;
49   QPushButton *_seqInit;
50   YDFXGUIRunButton *_run;
51 };
52
53 class AddTabWidget : public QWidget
54 {
55   Q_OBJECT
56 public:
57   YDFXWIDGETS_EXPORT AddTabWidget(QWidget *parent);
58 signals:
59   void addNewTab();
60 };
61
62 class TabEFXViews : public QTabWidget
63 {
64   Q_OBJECT
65 public:
66   YDFXWIDGETS_EXPORT TabEFXViews(QWidget *parent, YACSEvalSession *session);
67 public slots:
68   YDFXWIDGETS_EXPORT void newTabFromXMLRequested();
69   YDFXWIDGETS_EXPORT void closeTabPlease(int tabId);
70 private:
71   AddTabWidget *_addWidget;
72   YACSEvalSession *_session;
73 };
74
75 class YDFXGUI : public QWidget
76 {
77 public:
78   YDFXWIDGETS_EXPORT YDFXGUI(YACSEvalSession *session);
79 private:
80   TabEFXViews *_tabWidget;
81 };
82
83 #endif