Salome HOME
4009f82beadf77d76ebdf759f991cba78c1acf90
[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
108     SUPERV::GraphState getNodeExecState();
109     void setNodeExecState(SUPERV::GraphState theNodeExecState);
110
111     QPtrList< char * > getEventNodes();
112     void setEventNodes(QPtrList< char * > theEventNodes);
113     bool removeFirstEN() { return myEventNodes.removeFirst(); }
114     void removeEventNodes() { myEventNodes.clear(); }
115
116     QPtrList< SUPERV::GraphState > getStates();
117     void setStates(QPtrList< SUPERV::GraphState > theStates);
118     bool removeFirstS() { return myStates.removeFirst(); }
119     void removeStates() { myStates.clear(); }
120
121     int getNodesNumber();
122     SUPERVGUI_Thread* getMyThread();
123
124     void startTimer();
125     void executionFinished();
126
127     bool eventFilter( QObject* o, QEvent* e);
128
129     bool IsGUIEventLoopFinished() const { return myGUIEventLoopFinished; }
130
131     void Editing(); // any Editing operation is to be performed ->
132                     // activate Editors data model in Engine
133
134     void removeArrayChild(SUPERV::CNode_ptr theNode);
135
136   signals:
137     void KillMyThread(bool theValue);
138
139   public slots:
140     void execute(char * theNodeNode, SUPERV::GraphState theNodeState);
141     void sync();
142     void syncAsync();
143     bool addStudy();
144     void insertFile();
145     void addNode();
146     void changeInformation();
147     void copy();
148
149     void showCanvasTable();
150     void showContolFlow();
151     void showCanvas();
152
153     void filterNotification();
154     void changeDSGraphParameters();
155     void onSubGraphClosed(QAD_StudyFrame* );
156     void onSubGraphActivated(QAD_StudyFrame* );
157  
158   private slots:
159     void chooseData(QListViewItem* item);
160     void checkExecution();
161
162   private:
163     void init(QAD_Desktop* parent);
164     void syncNotification();
165     bool isFiltered(char* graph, char* node, char* type, char* message, char* sender, long counter, char* date, long stamp);
166     void closeEvent(QCloseEvent*);
167
168     SUPERV_Graph            dataflow;
169
170     QMap<QString, QAD_StudyFrame*> mySubGraphs;
171     QMap<QString, QString>  mySubGraphMap;
172     QAD_StudyFrame*         myLastGraph;
173
174     QAD_Study*              study;
175     QAD_ObjectBrowser*      objectBrowser;
176     QAD_Message*            message;
177
178     GraphViewType   myCurrentView;
179     SUPERVGUI_CanvasArray*  myArray;
180     SUPERVGUI_ArrayView*    myArrayView;
181     SUPERVGUI_Canvas*       myCanvas;
182     SUPERVGUI_CanvasView*   myCanvasView;
183
184     bool               choosing;
185
186     QString            myHashCode;
187     
188     bool               myIsFromStudy;
189     int                myCopyNum;
190
191     SALOME_NamingService* myNService;
192     QDateTime             myRunTime; // mpv 23.12.2002: we need time of running of dataflow
193                                      // for right Study document modification
194     /* notification data */                            
195     NOTIFICATION_Consumer* notification;
196     bool                   myFiltered;
197     bool                   myLogged;
198     QString                myLogFileName;
199     FILE*                  myLogFile;
200     bool                   myWarning;
201     bool                   myStep;
202     bool                   myTrace;
203     bool                   myVerbose;
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