Salome HOME
Bug fix: don't set "Loading" state for MacroNodes in InitialState() function (called...
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Main.h
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SUPERVGUI_Main.h
25 //  Author : Francis KLOSS
26 //  Module : SUPERV
27
28 #ifndef SUPERVGUI_Main_H
29 #define SUPERVGUI_Main_H
30
31 #include "SUPERVGraph_ViewFrame.h"
32 #include "QAD_Desktop.h"
33 #include "SUPERVGUI_Canvas.h"
34 #include "SUPERVGUI_CanvasView.h"
35 #include "SUPERVGUI_ArrayView.h"
36
37 #include <qobject.h>
38 #include <qapplication.h>
39 #include <qthread.h>
40
41 class QAD_Study;
42 class QAD_ObjectBrowser;
43 class QAD_Message;
44 class QAD_SpinBoxDbl;
45 class QLineEdit;
46 class QComboBox;
47 class NOTIFICATION_Consumer;
48 class SUPERVGUI_Thread;
49
50 class SUPERVGUI_Main: public SUPERVGraph_View {
51   Q_OBJECT
52
53   // asv : 18.11.04 : making Thread class a friend in order to allow it to modify
54   // a private field myGUIEventLoopFinished
55   friend class SUPERVGUI_Thread;
56
57   public:
58     SUPERVGUI_Main(SUPERVGraph_ViewFrame*, QAD_Desktop*, SUPERV_Graph);
59     virtual ~SUPERVGUI_Main();
60
61     void run();
62     void startExecute();
63     void kill();
64     void suspendResume();
65     void stopRestart();
66     void openSubGraph(SUPERV_CNode theNode, bool correct = false);
67
68     bool putDataStudy(SUPERV_Port port, const char* inout);
69
70     SUPERVGUI_CanvasArray*  getCanvasArray();
71     SUPERVGUI_ArrayView* getArrayView();
72     SUPERVGUI_Canvas* getCanvas();
73     SUPERVGUI_CanvasView* getCanvasView();
74     SUPERV_Graph getDataflow();
75     QAD_Message* getMessage();
76     QAD_Study* getStudy();
77     bool isArrayShown();
78     void showPopup(QPopupMenu* p, QMouseEvent* e);
79
80     void ActivatePanning();
81     void ResetView();
82
83     void setHashCode(QString theCode) 
84       { myHashCode = theCode; };
85
86     QString getHashCode() 
87       { return myHashCode; };
88
89     
90     bool isEditable() 
91       { if (SUPERV_isNull(dataflow)) return false;
92       return !dataflow->IsReadOnly(); };
93
94     bool isFromStudy() { return myIsFromStudy; }
95     void setAsFromStudy(bool theToStudy);
96     void checkIsInStudy();
97     
98     void addComputeNode(SUPERV_CNode theNode);
99     void addControlNode(SUPERV_CNode theStartNode, SUPERV_CNode theEndNode, bool Update);
100     void addGOTONode(SUPERV_CNode theNode);
101     void addMacroNode(SUPERV_CNode theNode);
102
103     void setPaletteBackgroundColor(const QColor& color);
104
105     void lockedGraph(bool theLock) { myIsLocked = theLock; }
106     bool isLocked() { return myIsLocked; }
107     bool isKilled() { return myIsKilled; }
108
109     SUPERV::GraphState getNodeExecState();
110     void setNodeExecState(SUPERV::GraphState theNodeExecState);
111
112     QPtrList< char * > getEventNodes();
113     void setEventNodes(QPtrList< char * > theEventNodes);
114     bool removeFirstEN() { return myEventNodes.removeFirst(); }
115     void removeEventNodes() { myEventNodes.clear(); }
116
117     QPtrList< SUPERV::GraphState > getStates();
118     void setStates(QPtrList< SUPERV::GraphState > theStates);
119     bool removeFirstS() { return myStates.removeFirst(); }
120     void removeStates() { myStates.clear(); }
121
122     int getNodesNumber();
123     SUPERVGUI_Thread* getMyThread();
124
125     void startTimer();
126     void executionFinished();
127
128     bool eventFilter( QObject* o, QEvent* e);
129
130     bool IsGUIEventLoopFinished() const { return myGUIEventLoopFinished; }
131
132     void Editing(); // any Editing operation is to be performed ->
133                     // activate Editors data model in Engine
134
135   signals:
136     void KillMyThread(bool theValue);
137
138   public slots:
139     void execute(char * theNodeNode, SUPERV::GraphState theNodeState);
140     void sync();
141     void syncAsync();
142     bool addStudy();
143     void insertFile();
144     void addNode();
145     void changeInformation();
146     void copy();
147
148     void showCanvasTable();
149     void showContolFlow();
150     void showCanvas();
151
152     void filterNotification();
153     void changeDSGraphParameters();
154     void onSubGraphClosed(QAD_StudyFrame* );
155     void onSubGraphActivated(QAD_StudyFrame* );
156  
157   private slots:
158     void chooseData(QListViewItem* item);
159     void checkExecution();
160
161   private:
162     void init(QAD_Desktop* parent);
163     void syncNotification();
164     bool isFiltered(char* graph, char* node, char* type, char* message, char* sender, long counter, char* date, long stamp);
165     void closeEvent(QCloseEvent*);
166
167     SUPERV_Graph            dataflow;
168
169     QMap<QString, QAD_StudyFrame*> mySubGraphs;
170     QMap<QString, QString>  mySubGraphMap;
171     QAD_StudyFrame*         myLastGraph;
172
173     QAD_Study*              study;
174     QAD_ObjectBrowser*      objectBrowser;
175     QAD_Message*            message;
176     
177     GraphViewType   myCurrentView;
178     SUPERVGUI_CanvasArray*  myArray;
179     SUPERVGUI_ArrayView*    myArrayView;
180     SUPERVGUI_Canvas*       myCanvas;
181     SUPERVGUI_CanvasView*   myCanvasView;
182
183     bool               choosing;
184
185     QString            myHashCode;
186     
187     bool               myIsFromStudy;
188     int                myCopyNum;
189
190     SALOME_NamingService* myNService;
191     QDateTime             myRunTime; // mpv 23.12.2002: we need time of running of dataflow
192                                      // for right Study document modification
193     /* notification data */                            
194     NOTIFICATION_Consumer* notification;
195     bool                   myFiltered;
196     bool                   myLogged;
197     QString                myLogFileName;
198     FILE*                  myLogFile;
199     bool                   myWarning;
200     bool                   myStep;
201     bool                   myTrace;
202     bool                   myVerbose;
203     bool                   myIsKilled;
204     bool                   myIsLocked;
205
206     SUPERVGUI_Thread*      myThread; 
207
208     QPtrList< char * >                myEventNodes ;
209     QPtrList< SUPERV::GraphState >    myStates ;
210     QTimer*                myTimer;
211     
212     // asv : 18.11.04 : fix for bug 6170 : this field is FALSE when SUPERVGUI_Thread
213     // is inside event loop during graph execution.  dataflow->IsDone() returns true
214     // BEFORE all events are handled (a few of them are still being processed in GUI thread), 
215     // and for bug 6170 it is neccessary to know exactly when GUI events processing stops..
216     bool                   myGUIEventLoopFinished;
217 };
218
219 class SUPERVGUI_Thread : public QObject, public QThread {
220   Q_OBJECT;
221  public:
222   SUPERVGUI_Thread();
223   ~SUPERVGUI_Thread();
224
225   void startThread(const char* m);
226   void stopThread(const char* m);
227   void setMain(SUPERVGUI_Main* theMain);
228
229  public slots:
230    void KillThread(bool theValue); 
231   
232  protected:
233   void run();
234
235  private:
236   bool                myIsActive;
237   SUPERVGUI_Main*     myMain;
238   QMutex              myMutex;
239
240 };
241
242 /**
243  * A dialog for setting Graph execution parameters
244  */
245 class SUPERVGUI_DSGraphParameters: public QDialog {
246   Q_OBJECT
247
248   public:
249     SUPERVGUI_DSGraphParameters(SUPERV_Graph theGraph, bool isReadOnly);
250     virtual ~SUPERVGUI_DSGraphParameters();
251
252   private slots:
253     void accept();
254
255   private:
256
257     void setData();
258
259     QAD_SpinBoxDbl*      myDeltaTime;
260     QLineEdit*           myTimeOut;
261     QComboBox*           myDataStreamTrace;
262
263     SUPERV_Graph    myGraph;
264 };
265
266 #endif