Salome HOME
Merge remote-tracking branch 'origin/master' into V9_dev
[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 class YACSEvalSession;
33 class YACSEvalYFXWrap;
34 class YDFXGUIAllPorts;
35 class YDFXGUIRunButton;
36
37 class YDFXGUIMainEFXWidget : public QWidget
38 {
39   Q_OBJECT
40 public:
41   YDFXWIDGETS_EXPORT YDFXGUIMainEFXWidget(YACSEvalSession *session, YACSEvalYFXWrap *efx, QWidget *parent);
42   YDFXWIDGETS_EXPORT ~YDFXGUIMainEFXWidget();
43 private:
44   YACSEvalSession *_session;
45   YACSEvalYFXWrap *_efx;//owned
46   YDFXGUIAllPorts *_ports;
47   QPushButton *_seqInit;
48   YDFXGUIRunButton *_run;
49 };
50
51 class AddTabWidget : public QWidget
52 {
53   Q_OBJECT
54 public:
55   YDFXWIDGETS_EXPORT AddTabWidget(QWidget *parent);
56 signals:
57   void addNewTab();
58 };
59
60 class TabEFXViews : public QTabWidget
61 {
62   Q_OBJECT
63 public:
64   YDFXWIDGETS_EXPORT TabEFXViews(QWidget *parent, YACSEvalSession *session);
65 public slots:
66   YDFXWIDGETS_EXPORT void newTabFromXMLRequested();
67   YDFXWIDGETS_EXPORT void closeTabPlease(int tabId);
68 private:
69   AddTabWidget *_addWidget;
70   YACSEvalSession *_session;
71 };
72
73 class YDFXGUI : public QWidget
74 {
75 public:
76   YDFXWIDGETS_EXPORT YDFXGUI(YACSEvalSession *session);
77 private:
78   TabEFXViews *_tabWidget;
79 };
80
81 #endif