Salome HOME
Fix English translation: Choose Batch Job to watch
[modules/yacs.git] / src / genericgui / GenericGui.cxx
1 // Copyright (C) 2006-2014  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
20 #include <Python.h>
21 #include "SALOME_ResourcesManager.hxx"
22 #include "SALOME_LifeCycleCORBA.hxx"
23
24 #include "RuntimeSALOME.hxx"
25 #include "Proc.hxx"
26 #include "InputPort.hxx"
27 #include "ServiceNode.hxx"
28 #include "parsers.hxx"
29 #include "Logger.hxx"
30 #include "YACSGuiLoader.hxx"
31 #include "ComponentInstance.hxx"
32
33 #include "SALOME_NamingService.hxx"
34 #include "SALOME_ModuleCatalog.hxx"
35 #include "SALOME_ModuleCatalog.hh"
36 #include "SALOMEDS_Tool.hxx"
37
38 #include "QtGuiContext.hxx"
39
40 #include "GuiEditor.hxx"
41 #include "GraphicsView.hxx"
42 #include "Scene.hxx"
43 #include "GenericGui.hxx"
44 #include "SceneItem.hxx"
45 #include "SceneNodeItem.hxx"
46 #include "SceneComposedNodeItem.hxx"
47 #include "ItemEdition.hxx"
48 #include "CatalogWidget.hxx"
49 #include "TreeView.hxx"
50 #include "VisitorSaveGuiSchema.hxx"
51 #include "TypeCode.hxx"
52 #include "LinkInfo.hxx"
53 #include "LogViewer.hxx"
54 #include "chrono.hxx"
55 #include "Resource.hxx"
56 #include "Message.hxx"
57 #include "ListJobs_GUI.hxx"
58
59 #include <QFileDialog>
60 #include <sstream>
61 #include <QDir>
62 #include <QDateTime>
63 #include <QMessageBox>
64 #include <QWhatsThis>
65
66 #include <cstdlib>
67
68 #include <ctime>
69
70 #ifdef WIN32
71 #define WEXITSTATUS(w)  ((int) ((w) & 0x40000000))
72 #endif
73
74 //#define _DEVDEBUG_
75 #include "YacsTrace.hxx"
76
77 using namespace std;
78 using namespace YACS::HMI;
79
80 GenericGui::GenericGui(YACS::HMI::SuitWrapper* wrapper, QMainWindow *parent)
81 {
82   _wrapper = wrapper;
83   _parent = parent;
84   _dwTree = 0;
85   _dwStacked = 0;
86   _dwCatalogs = 0;
87   _catalogsWidget = 0;
88   _sessionCatalog = 0;
89   _schemaCnt = 0;
90   _isSaved = false;
91   _mapViewContext.clear();
92   _machineList.clear();
93   _menuId = 190;
94   _BJLdialog = NULL;
95   QtGuiContext::_counters = new counters(100);
96   srand((unsigned)time(0)); 
97
98   GuiObserver::setEventMap();
99
100   string iconPath = getenv("YACS_ROOT_DIR");
101   iconPath += "/share/salome/resources/yacs";
102   DEBTRACE(iconPath);
103   QDir::addSearchPath("icons", iconPath.c_str());
104   
105   _guiEditor = new GuiEditor();
106
107   YACS::ENGINE::RuntimeSALOME::setRuntime();
108   _loader = new YACSGuiLoader();
109   _loader->registerProcCataLoader();
110   _builtinCatalog = YACS::ENGINE::getSALOMERuntime()->getBuiltinCatalog();
111
112   try
113     {
114       YACS::ENGINE::RuntimeSALOME* runTime = YACS::ENGINE::getSALOMERuntime();
115       CORBA::ORB_ptr orb = runTime->getOrb();
116       if (orb)
117         {
118           SALOME_NamingService namingService(orb);
119           CORBA::Object_ptr obj = namingService.Resolve("/Kernel/ModulCatalog");
120           SALOME_ModuleCatalog::ModuleCatalog_var aModuleCatalog =
121             SALOME_ModuleCatalog::ModuleCatalog::_narrow(obj);
122           if (! CORBA::is_nil(aModuleCatalog))
123             {
124               DEBTRACE("SALOME_ModuleCatalog::ModuleCatalog found");
125               std::string anIOR = orb->object_to_string( aModuleCatalog );
126               _sessionCatalog = runTime->loadCatalog( "session", anIOR );
127               runTime->addCatalog(_sessionCatalog);
128               {
129                 std::map< std::string, YACS::ENGINE::ComponentDefinition * >::iterator it;
130                 for (it = _sessionCatalog->_componentMap.begin();
131                      it != _sessionCatalog->_componentMap.end(); ++it)
132                   DEBTRACE("Component: " <<(*it).first);
133               }
134               {
135                 std::map< std::string, YACS::ENGINE::TypeCode*>::iterator it;
136                 for (it = _sessionCatalog->_typeMap.begin();
137                      it != _sessionCatalog->_typeMap.end(); ++it)
138                   DEBTRACE("Type : " <<(*it).first
139                            << " " << (*it).second->getKindRepr()
140                            << " " << (*it).second->name()
141                            << " " << (*it).second->shortName()
142                            << " " << (*it).second->id() );
143               }
144               DEBTRACE("_sessionCatalog " << _sessionCatalog);
145             }
146         }
147     }
148   catch(ServiceUnreachable& e)
149     {
150       DEBTRACE("Caught Exception. "<<e);
151     }
152
153   _dwTree = new QDockWidget(_parent);
154   _dwTree->setVisible(false);
155   _dwTree->setWindowTitle("Tree View: edition mode");
156   _dwTree->setObjectName("Tree View");
157   _parent->addDockWidget(Qt::LeftDockWidgetArea, _dwTree);
158   _dwStacked = new QDockWidget(_parent);
159   _dwStacked->setVisible(false);
160   _dwStacked->setWindowTitle("Input Panel");
161   _dwStacked->setObjectName("Input Panel");
162   _dwStacked->setMinimumWidth(270); // --- force a minimum until display
163   _parent->addDockWidget(Qt::RightDockWidgetArea, _dwStacked);
164   _dwCatalogs = new QDockWidget(_parent);
165   _dwCatalogs->setVisible(false);
166   _dwCatalogs->setWindowTitle("Catalogs");
167   _dwCatalogs->setObjectName("Catalogs");
168   _parent->addDockWidget(Qt::RightDockWidgetArea, _dwCatalogs);
169   _catalogsWidget = new CatalogWidget(_dwCatalogs,
170                                       _builtinCatalog,
171                                       _sessionCatalog);
172   _dwCatalogs->setWidget(_catalogsWidget);
173
174   _parent->tabifyDockWidget(_dwStacked, _dwCatalogs);
175   _parent->tabifyDockWidget(_dwTree, _wrapper->objectBrowser());
176 #if QT_VERSION >= 0x040500
177   _parent->setTabPosition(Qt::AllDockWidgetAreas, Resource::tabPanelsUp? QTabWidget::North: QTabWidget::South);
178 #endif
179   //Import user catalog
180   std::string usercata=Resource::userCatalog.toStdString();
181   _catalogsWidget->addCatalogFromFile(usercata);
182 }
183
184 GenericGui::~GenericGui()
185 {
186   if(_BJLdialog) delete _BJLdialog;
187 }
188
189 void GenericGui::createActions()
190 {
191   //       QAction* createAction(const int id,
192   //                             const QString& toolTip,
193   //                             const QIcon& icon,
194   //                             const QString& menu,
195   //                             const QString& status,
196   //                             const int shortCut,
197   //                             QObject* parent =0,
198   //                             bool checkable = false,
199   //                             QObject* receiver =0,
200   //                             const char* member =0);
201
202   _newSchemaAct = _wrapper->createAction(getMenuId(), tr("Create a new YACS Schema"), QIcon("icons:schema.png"),
203                                          tr("New Schema"), tr("Create a new YACS Schema"),
204                                          0, _parent, false, this,  SLOT(onNewSchema()));
205   _newSchemaAct->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_N); // --- QKeySequence::New ambiguous in SALOME
206
207   _importSchemaAct = _wrapper->createAction(getMenuId(), tr("Import a YACS Schema for edition"), QIcon("icons:import_dataflow.png"),
208                                             tr("Import Schema"), tr("Import a YACS Schema for edition"),
209                                             0, _parent, false, this,  SLOT(onImportSchema()));
210   _importSchemaAct->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_O); // --- QKeySequence::Open ambiguous in SALOME
211   
212   _importSupervSchemaAct = _wrapper->createAction(getMenuId(), tr("Import a SUPERV Schema for edition"), QIcon("icons:import_superv_dataflow.png"),
213                                                   tr("Import SUPERV Schema"), tr("Import a SUPERV Schema for edition"),
214                                                   0, _parent, false, this,  SLOT(onImportSupervSchema()));
215   
216   _exportSchemaAct = _wrapper->createAction(getMenuId(), tr("Save the current YACS Schema"), QIcon("icons:save_dataflow.png"),
217                                             tr("Save Schema"), tr("Save the current YACS Schema"),
218                                             0, _parent, false, this,  SLOT(onExportSchema()));
219   _exportSchemaAct->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_S); // --- QKeySequence::Save ambiguous in SALOME
220   
221   _exportSchemaAsAct = _wrapper->createAction(getMenuId(), tr("Save the current YACS Schema As..."), QIcon("icons:export_dataflow.png"),
222                                               tr("Save Schema As"), tr("Save the current YACS Schema As..."),
223                                               0, _parent, false, this,  SLOT(onExportSchemaAs()));
224   //_exportSchemaAsAct->setShortcut(QKeySequence::SaveAs); // --- ambiguous in SALOME
225
226   _importCatalogAct = _wrapper->createAction(getMenuId(), tr("Import a Schema as a Catalog"), QIcon("icons:insert_file.png"),
227                                              tr("Import Catalog"), tr("Import a Schema as a Catalog"),
228                                              0, _parent, false, this,  SLOT(onImportCatalog()));
229
230
231   _runLoadedSchemaAct = _wrapper->createAction(getMenuId(), tr("Prepare the current edited schema for run"), QIcon("icons:run_active.png"),
232                                                tr("Run Current Schema"), tr("Prepare the current edited schema for run"),
233                                                0, _parent, false, this,  SLOT(onRunLoadedSchema()));
234
235   _loadRunStateSchemaAct = _wrapper->createAction(getMenuId(), tr("Load a previous run state for this schema, prepare to run"), QIcon("icons:load_execution_state.png"),
236                                                   tr("Load Run State"), tr("Load a previous run state for this schema, prepare to run"),
237                                                   0, _parent, false, this,  SLOT(onLoadRunStateSchema()));
238
239   _loadAndRunSchemaAct = _wrapper->createAction(getMenuId(), tr("Load a schema for run"), QIcon("icons:run.png"),
240                                                 tr("Load Schema to run"), tr("Load a schema for run"),
241                                                 0, _parent, false, this,  SLOT(onLoadAndRunSchema()));
242
243   _chooseBatchJobAct = _wrapper->createAction(getMenuId(), tr("Choose Batch Job to watch"), QIcon("icons:batch.png"),
244                                          tr("Choose Batch Job to watch"), tr("Choose Batch Job to watch"),
245                                          0, _parent, false, this,  SLOT(onChooseBatchJob()));
246
247   _startResumeAct = _wrapper->createAction(getMenuId(), tr("Start or Resume Schema execution"), QIcon("icons:suspend_resume.png"),
248                                            tr("Start/Resume execution"), tr("Start or Resume Schema execution"),
249                                            0, _parent, false, this,  SLOT(onStartResume()));
250
251   _abortAct = _wrapper->createAction(getMenuId(), tr("Abort the current execution"), QIcon("icons:kill.png"),
252                                      tr("Abort execution"), tr("Abort the current execution"),
253                                      0, _parent, false, this,  SLOT(onAbort()));
254
255   _pauseAct = _wrapper->createAction(getMenuId(), tr("Suspend the current execution"), QIcon("icons:pause.png"),
256                                      tr("Suspend execution"), tr("Suspend the current execution"),
257                                      0, _parent, false, this,  SLOT(onPause()));
258
259   _resetAct = _wrapper->createAction(getMenuId(), tr("Reset error nodes and restart the current execution"), QIcon("icons:reset.png"),
260                                      tr("Restart execution"), tr("Restart the current execution with reset of error nodes"),
261                                      0, _parent, false, this,  SLOT(onReset()));
262
263
264   _saveRunStateAct = _wrapper->createAction(getMenuId(), tr("Save the current run state"), QIcon("icons:save_dataflow_state.png"),
265                                             tr("Save State"), tr("Save the current run state"),
266                                             0, _parent, false, this,  SLOT(onSaveRunState()));
267
268   _newEditionAct = _wrapper->createAction(getMenuId(), tr("Edit again the current schema in a new context"), QIcon("icons:new_edition.png"),
269                                           tr("Edit Again"), tr("Edit again the current schema in a new context"),
270                                           0, _parent, false, this,  SLOT(onNewEdition()));
271
272
273   _getYacsContainerLogAct = _wrapper->createAction(getMenuId(), tr("get YACS container log"), QIcon("icons:change_informations.png"),
274                                                    tr("YACS Container Log"), tr("get YACS container log"),
275                                                    0, _parent, false, this,  SLOT(onGetYacsContainerLog()));
276
277   _getErrorReportAct = _wrapper->createAction(getMenuId(), tr("get Node Error Report"), QIcon("icons:filter_notification.png"),
278                                               tr("Node Error Report"), tr("get Node Error Report"),
279                                               0, _parent, false, this,  SLOT(onGetErrorReport()));
280
281   _getErrorDetailsAct = _wrapper->createAction(getMenuId(), tr("get Node Error Details"), QIcon("icons:icon_text.png"),
282                                                tr("Node Error Details"), tr("get Node Error Details"),
283                                                0, _parent, false, this,  SLOT(onGetErrorDetails()));
284
285   _getContainerLogAct = _wrapper->createAction(getMenuId(), tr("get Node Container Log"), QIcon("icons:change_informations.png"),
286                                                tr("Node Container Log"), tr("get Node Container Log"),
287                                                0, _parent, false, this,  SLOT(onGetContainerLog()));
288
289   _shutdownProcAct = _wrapper->createAction(getMenuId(), tr("Shutdown Proc"), QIcon("icons:kill.png"),
290                                              tr("Shutdown Proc"), tr("Shutdown Proc"),
291                                              0, _parent, false, this,  SLOT(onShutdownProc()));
292
293
294   _editDataTypesAct = _wrapper->createAction(getMenuId(), tr("Edit Data Types"), QIcon("icons:kill.png"),
295                                              tr("Edit Data Types"), tr("Edit Data Types"),
296                                              0, _parent, false, this,  SLOT(onEditDataTypes()));
297
298   _createDataTypeAct = _wrapper->createAction(getMenuId(), tr("Create Data Types"), QIcon("icons:kill.png"),
299                                               tr("Create Data Types"), tr("Create Data Types"),
300                                               0, _parent, false, this,  SLOT(onCreateDataType()));
301
302   _importDataTypeAct = _wrapper->createAction(getMenuId(), tr("Import Data Types, use drag and drop from catalog"), QIcon("icons:folder_cyan.png"),
303                                               tr("Import Data Types"), tr("Import Data Types, use drag and drop from catalog"),
304                                               0, _parent, false, this,  SLOT(onImportDataType()));
305
306   _newContainerAct = _wrapper->createAction(getMenuId(), tr("Create a New Container"), QIcon("icons:container.png"),
307                                             tr("Create Container"), tr("Create a New Container"),
308                                             0, _parent, false, this,  SLOT(onNewContainer()));
309
310   _selectComponentInstanceAct = _wrapper->createAction(getMenuId(), tr("Select a Component Instance"), QIcon("icons:icon_select.png"),
311                                                        tr("Select a Component Instance"), tr("Select a Component Instance"),
312                                                        0, _parent, false, this,  SLOT(onSelectComponentInstance()));
313
314   _newSalomeComponentAct = _wrapper->createAction(getMenuId(), tr("Create a New SALOME Component Instance"), QIcon("icons:new_salome_component.png"),
315                                                   tr("Create Component Instance"), tr("Create a New SALOME Component Instance"),
316                                                   0, _parent, false, this,  SLOT(onNewSalomeComponent()));
317
318   _newSalomePythonComponentAct = _wrapper->createAction(getMenuId(), tr("Create a New SALOME Python Component"), QIcon("icons:new_salomepy_component.png"),
319                                                         tr("SALOME Python Component"), tr("Create a New SALOME Python Component"),
320                                                         0, _parent, false, this,  SLOT(onNewSalomePythonComponent()));
321
322   _newCorbaComponentAct = _wrapper->createAction(getMenuId(), tr("Create a New CORBA Component"), QIcon("icons:new_corba_component.png"),
323                                                  tr("CORBA Component"), tr("Create a New CORBA Component"),
324                                                  0, _parent, false, this,  SLOT(onNewCorbaComponent()));
325
326   _salomeServiceNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New SALOME Service Node"), QIcon("icons:new_salome_service_node.png"),
327                                                  tr("SALOME Service Node"), tr("Create a New SALOME Service Node"),
328                                                  0, _parent, false, this,  SLOT(onSalomeServiceNode()));
329
330   _serviceInlineNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Inline Service Node"), QIcon("icons:new_service_inline_node.png"),
331                                                  tr("Inline Service Node"), tr("Create a New Inline Service Node"),
332                                                  0, _parent, false, this,  SLOT(onServiceInlineNode()));
333
334   _CORBAServiceNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New CORBA Service Node"), QIcon("icons:new_corba_service_node.png"),
335                                                 tr("CORBA Node"), tr("Create a New CORBA Service Node"),
336                                                 0, _parent, false, this,  SLOT(onCORBAServiceNode()));
337
338   _nodeNodeServiceNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Node referencing a Node"), QIcon("icons:new_nodenode_service_node.png"),
339                                                    tr("Ref on Node"), tr("Create a New Node referencing a Node"),
340                                                    0, _parent, false, this,  SLOT(onNodeNodeServiceNode()));
341
342   _cppNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New C++ Node"), QIcon("icons:new_cpp_node.png"),
343                                        tr("Cpp Node"), tr("Create a New C++ Node"),
344                                        0, _parent, false, this,  SLOT(onCppNode()));
345
346   _inDataNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Input data Node"), QIcon("icons:node.png"),
347                                           tr("Input Data Node"), tr("Create a New Input data Node"),
348                                           0, _parent, false, this,  SLOT(onInDataNode()));
349
350   _outDataNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Output data Node"), QIcon("icons:node.png"),
351                                            tr("Output Data Node"), tr("Create a New Output data Node"),
352                                            0, _parent, false, this,  SLOT(onOutDataNode()));
353
354   _inStudyNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Input Study Node"), QIcon("icons:node.png"),
355                                            tr("Input Study Node"), tr("Create a New Input Study Node"),
356                                            0, _parent, false, this,  SLOT(onInStudyNode()));
357
358   _outStudyNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Output Study Node"), QIcon("icons:node.png"),
359                                             tr("Output Study Node"), tr("Create a New Output Study Node"),
360                                             0, _parent, false, this,  SLOT(onOutStudyNode()));
361
362   _inlineScriptNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Inline Python Script Node"), QIcon("icons:new_inline_script_node.png"),
363                                                 tr("Inline Script Node"), tr("Create a New Inline Python Script Node"),
364                                                 0, _parent, false, this,  SLOT(onInlineScriptNode()));
365
366   _inlineFunctionNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Inline Python Function Node"), QIcon("icons:new_inline_function_node.png"),
367                                                   tr("Inline Function Node"), tr("Create a New Inline Python Function Node"),
368                                                   0, _parent, false, this,  SLOT(onInlineFunctionNode()));
369
370   _blockNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Bloc Node"), QIcon("icons:new_block_node.png"),
371                                          tr("bloc Node"), tr("Create a New Bloc Node"),
372                                          0, _parent, false, this,  SLOT(onBlockNode()));
373
374   _FORNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New For Loop Node"), QIcon("icons:new_for_loop_node.png"),
375                                        tr("For Loop Node"), tr("Create a New For Loop Node"),
376                                        0, _parent, false, this,  SLOT(onFORNode()));
377
378   _FOREACHNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New For Each Loop Node"), QIcon("icons:new_foreach_loop_node.png"),
379                                            tr("For Each Loop Node"), tr("Create a New For Each Loop Node"),
380                                            0, _parent, false, this,  SLOT(onFOREACHNode()));
381
382   _WHILENodeAct = _wrapper->createAction(getMenuId(), tr("Create a New While Loop Node"), QIcon("icons:new_while_loop_node.png"),
383                                          tr("While Loop Node"), tr("Create a New While Loop Node"),
384                                          0, _parent, false, this,  SLOT(onWHILENode()));
385
386   _SWITCHNodeAct = _wrapper->createAction(getMenuId(), tr("Create a New Switch Node"), QIcon("icons:new_switch_loop_node.png"),
387                                           tr("Switch Node"), tr("Create a New Switch Node"),
388                                           0, _parent, false, this,  SLOT(onSWITCHNode()));
389
390   _OptimizerLoopAct = _wrapper->createAction(getMenuId(), tr("Create a New Optimizer Loop Node"), QIcon("icons:new_for_loop_node.png"),
391                                              tr("Optimizer Loop"), tr("Create a New Optimizer Loop"),
392                                              0, _parent, false, this,  SLOT(onOptimizerLoop()));
393
394   _nodeFromCatalogAct = _wrapper->createAction(getMenuId(), tr("Create a New Node from Catalog, use drag and drop from catalog"), QIcon("icons:new_from_library_node.png"),
395                                                tr("Node from Catalog"), tr("Create a New Node from Catalog, use drag and drop from catalog"),
396                                                0, _parent, false, this,  SLOT(onNodeFromCatalog()));
397
398   _deleteItemAct = _wrapper->createAction(getMenuId(), tr("Delete a Schema Item"), QIcon("icons:delete.png"),
399                                           tr("Delete Item"), tr("Delete a Schema Item"),
400                                           0, _parent, false, this,  SLOT(onDeleteItem()));
401   _deleteItemAct->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_D); // --- QKeySequence::Delete dangerous...
402
403   _cutItemAct = _wrapper->createAction(getMenuId(), tr("Cut a Schema Item"), QIcon("icons:cut.png"),
404                                        tr("Cut Item"), tr("Cut a Schema Item"),
405                                        0, _parent, false, this,  SLOT(onCutItem()));
406   _cutItemAct->setShortcut(QKeySequence::Cut);
407
408   _copyItemAct = _wrapper->createAction(getMenuId(), tr("Copy a Schema Item"), QIcon("icons:copy.png"),
409                                         tr("Copy Item"), tr("Copy a Schema Item"),
410                                         0, _parent, false, this,  SLOT(onCopyItem()));
411   _copyItemAct->setShortcut(QKeySequence::Copy);
412
413   _pasteItemAct = _wrapper->createAction(getMenuId(), tr("Paste a Schema Item"), QIcon("icons:paste.png"),
414                                          tr("Paste Item"), tr("Paste a Schema Item"),
415                                          0, _parent, false, this,  SLOT(onPasteItem()));
416   _pasteItemAct->setShortcut(QKeySequence::Paste);
417
418   _putInBlocAct = _wrapper->createAction(getMenuId(), tr("Put node in block"), QIcon("icons:paste.png"),
419                                          tr("Put node in block"), tr("Put node in block"),
420                                          0, _parent, false, this,  SLOT(onPutInBloc()));
421
422   _putGraphInBlocAct = _wrapper->createAction(getMenuId(), tr("Bloc"), QIcon("icons:new_block_node.png"),
423                                               tr("Bloc"), tr("Bloc"),
424                                               0, _parent, false, this,  SLOT(onPutGraphInBloc()));
425
426   _putGraphInForLoopAct = _wrapper->createAction(getMenuId(), tr("For Loop"), QIcon("icons:new_for_loop_node.png"),
427                                                  tr("For Loop"), tr("For Loop"),
428                                                  0, _parent, false, this,  SLOT(onPutGraphInForLoop()));
429
430   _putGraphInWhileLoopAct = _wrapper->createAction(getMenuId(), tr("While Loop"), QIcon("icons:new_while_loop_node.png"),
431                                                    tr("While Loop"), tr("While Loop"),
432                                                    0, _parent, false, this,  SLOT(onPutGraphInWhileLoop()));
433
434   _putGraphInOptimizerLoopAct = _wrapper->createAction(getMenuId(), tr("Optimizer Loop"), QIcon("icons:new_for_loop_node.png"),
435                                                        tr("Optimizer Loop"), tr("Optimizer Loop"),
436                                                        0, _parent, false, this,  SLOT(onPutGraphInOptimizerLoop()));
437
438   _arrangeLocalNodesAct = _wrapper->createAction(getMenuId(), tr("arrange nodes on that bloc level, without recursion"), QIcon("icons:arrange_nodes.png"),
439                                                  tr("arrange local nodes"), tr("arrange nodes on that bloc level, without recursion"),
440                                                  0, _parent, false, this,  SLOT(onArrangeLocalNodes()));
441
442   _arrangeRecurseNodesAct = _wrapper->createAction(getMenuId(), tr("arrange nodes on that bloc level, with recursion"), QIcon("icons:sample.png"),
443                                                    tr("arrange nodes recursion"), tr("arrange nodes on that bloc level, with recursion"),
444                                                    0, _parent, false, this,  SLOT(onArrangeRecurseNodes()));
445
446   _computeLinkAct = _wrapper->createAction(getMenuId(), tr("compute orthogonal links"), QIcon("icons:rebuild_links.png"),
447                                            tr("compute links"), tr("compute orthogonal links"),
448                                            0, _parent, false, this,  SLOT(onRebuildLinks()));
449
450   _zoomToBlocAct = _wrapper->createAction(getMenuId(), tr("zoom 2D view to selected bloc"), QIcon("icons:zoomToBloc.png"),
451                                           tr("zoom to bloc"), tr("zoom 2D view to the selected composed node"),
452                                           0, _parent, false, this,  SLOT(onZoomToBloc()));
453
454   _centerOnNodeAct = _wrapper->createAction(getMenuId(), tr("center 2D view on selected node"), QIcon("icons:centerOnNode.png"),
455                                             tr("center on node"), tr("center 2D view on selected node"),
456                                             0, _parent, false, this,  SLOT(onCenterOnNode()));
457   _centerOnNodeAct->setShortcut(QKeySequence::Find);
458
459   _shrinkExpand = _wrapper->createAction(getMenuId(), tr("shrink or expand the selected node"), QIcon("icons:shrinkExpand.png"),
460                                             tr("shrink/expand"), tr("shrink or expand the selected node"),
461                                             0, _parent, false, this,  SLOT(onShrinkExpand()));
462
463   _toggleStraightLinksAct = _wrapper->createAction(getMenuId(), tr("draw straight or orthogonal links"), QIcon("icons:straightLink.png"),
464                                                    tr("straight/orthogonal"), tr("draw straight or orthogonal links"),
465                                                    0, _parent, true, this,  SLOT(onToggleStraightLinks(bool)));
466   
467   _toggleStraightLinksAct->setChecked(Resource::straightLinks);
468   onToggleStraightLinks(Resource::straightLinks);
469
470   _toggleAutomaticComputeLinkAct = _wrapper->createAction(getMenuId(), tr("compute othogonal links automatically when nodes move"), QIcon("icons:autoComputeLink.png"),
471                                                           tr("automatic link"), tr("compute othogonal links automatically when nodes move"),
472                                                           0, _parent, true, this,  SLOT(onToggleAutomaticComputeLinks(bool)));
473
474   _toggleAutomaticComputeLinkAct->setChecked(Resource::autoComputeLinks);
475   onToggleAutomaticComputeLinks(Resource::autoComputeLinks); // Why is this needed ?
476
477   _toggleSimplifyLinkAct = _wrapper->createAction(getMenuId(), tr("simplify links by removing unnecessary direction changes"), QIcon("icons:simplifyLink.png"),
478                                                   tr("simplify links"), tr("simplify links by removing unnecessary direction changes"),
479                                                   0, _parent, true, this,  SLOT(onToggleSimplifyLinks(bool)));
480   _toggleSimplifyLinkAct->setChecked(Resource::simplifyLink);
481   onToggleSimplifyLinks(Resource::simplifyLink);
482
483   _toggleForce2NodesLinkAct = _wrapper->createAction(getMenuId(), tr("force orthogonal links by adding an edge on simples links"), QIcon("icons:force2nodeLink.png"),
484                                                      tr("force ortho links"), tr("force orthogonal links by adding an edge on simples links"),
485                                                      0, _parent, true, this,  SLOT(onToggleForce2NodesLinks(bool)));
486   _toggleForce2NodesLinkAct->setChecked(true);
487
488   _toggleAddRowColsAct = _wrapper->createAction(getMenuId(), tr("allow more path for the links, for a better separation"), QIcon("icons:addRowCols.png"),
489                                                 tr("separate links"), tr("allow more path for the links, for a better separation"),
490                                                 0, _parent, true, this,  SLOT(onToggleAddRowCols(bool)));
491   _toggleAddRowColsAct->setChecked(Resource::addRowCols);
492   onToggleAddRowCols(Resource::addRowCols);
493
494   _selectReferenceAct = _wrapper->createAction(getMenuId(), tr("select reference"), QIcon("icons:ob_service_node.png"),
495                                                tr("select reference"), tr("select reference"),
496                                                0, _parent, false, this,  SLOT(onSelectReference()));
497
498   _whatsThisAct = _wrapper->createAction(getMenuId(), tr("active whatsThis Mode to get help on widgets"), QIcon("icons:whatsThis.png"),
499                                          tr("whatsThis Mode"), tr("active whatsThis Mode to get help on widgets"),
500                                          0, _parent, false, this,  SLOT(onWhatsThis()));
501   _whatsThisAct->setShortcut(QKeySequence::WhatsThis);
502
503   _withoutStopModeAct = _wrapper->createAction(getMenuId(), tr("set execution mode without stop"), QIcon("icons:run_active.png"),
504                                                tr("mode without stop"), tr("set execution mode without stop"),
505                                                0, _parent, true, this,  SLOT(onWithoutStopMode(bool)));
506
507   _breakpointsModeAct = _wrapper->createAction(getMenuId(), tr("set execution mode with stop on breakpoints"), QIcon("icons:breakpoints_active.png"),
508                                                tr("mode breakpoints"), tr("set execution mode with stop on breakpoints"),
509                                                0, _parent, true, this,  SLOT(onBreakpointsMode(bool)));
510
511   _stepByStepModeAct = _wrapper->createAction(getMenuId(), tr("set execution mode step by step"), QIcon("icons:step_by_step_active.png"),
512                                               tr("mode step by step"), tr("set execution mode step by step"),
513                                               0, _parent, true, this,  SLOT(onStepByStepMode(bool)));
514
515   _toggleStopOnErrorAct = _wrapper->createAction(getMenuId(), tr("Force stop on first error during execution"), QIcon("icons:toggle_stop_on_error.png"),
516                                                  tr("stop on error"), tr("Force stop on first error during execution"),
517                                                  0, _parent, true, this,  SLOT(onToggleStopOnError(bool)));
518
519   _toggleSceneItemVisibleAct = _wrapper->createAction(getMenuId(), tr("toggle 2D scene item visibility"), QIcon("icons:toggleVisibility.png"),
520                                                       tr("visible/hidden"), tr("toggle 2D scene item visibility"),
521                                                       0, _parent, true, this,  SLOT(onToggleSceneItemVisible(bool)));
522
523
524
525   _showAllLinksAct = _wrapper->createAction(getMenuId(), tr("Show all the links"), QIcon("icons:showLink.png"),
526                                             tr("show all links"), tr("Show all the links"),
527                                             0, _parent, false, this,  SLOT(onShowAllLinks()));
528
529   _hideAllLinksAct = _wrapper->createAction(getMenuId(), tr("Hide all the links"), QIcon("icons:hideLink.png"),
530                                             tr("hide all links"), tr("Hide all the links"),
531                                             0, _parent, false, this,  SLOT(onHideAllLinks()));
532   
533
534   _showOnlyPortLinksAct = _wrapper->createAction(getMenuId(), tr("Show only links from/to this port"), QIcon("icons:showLink.png"),
535                                                  tr("show only links"), tr("Show only links from/to this port"),
536                                                  0, _parent, false, this,  SLOT(onShowOnlyPortLinks()));
537
538   _showPortLinksAct = _wrapper->createAction(getMenuId(), tr("Show links from/to this port"), QIcon("icons:showLink.png"),
539                                              tr("show links"), tr("Show links from/to this port"),
540                                              0, _parent, false, this,  SLOT(onShowPortLinks()));
541
542   _hidePortLinksAct = _wrapper->createAction(getMenuId(), tr("Hide links from/to this port"), QIcon("icons:hideLink.png"),
543                                              tr("hide links"), tr("Hide links from/to this port"),
544                                              0, _parent, false, this,  SLOT(onHidePortLinks()));
545   
546   
547   _showOnlyCtrlLinksAct = _wrapper->createAction(getMenuId(), tr("Show only control links from/to this node"), QIcon("icons:showLink.png"),
548                                                  tr("show only Control links"), tr("Show only control links from/to this node"),
549                                                  0, _parent, false, this,  SLOT(onShowOnlyCtrlLinks()));
550
551   _showCtrlLinksAct = _wrapper->createAction(getMenuId(), tr("Show control links from/to this node"), QIcon("icons:showLink.png"),
552                                              tr("show control links"), tr("Show control links from/to this node"),
553                                              0, _parent, false, this,  SLOT(onShowCtrlLinks()));
554
555   _hideCtrlLinksAct = _wrapper->createAction(getMenuId(), tr("Hide control links from/to this node"), QIcon("icons:hideLink.png"),
556                                              tr("hide control links"), tr("Hide control links from/to this node"),
557                                              0, _parent, false, this,  SLOT(onHideCtrlLinks()));
558
559   
560   _showOnlyLinkAct = _wrapper->createAction(getMenuId(), tr("Show only this link"), QIcon("icons:showLink.png"),
561                                             tr("show only"), tr("Show only this link"),
562                                             0, _parent, false, this,  SLOT(onShowOnlyLink()));
563
564   _showLinkAct = _wrapper->createAction(getMenuId(), tr("Show this link"), QIcon("icons:showLink.png"),
565                                         tr("show"), tr("Show this link"),
566                                         0, _parent, false, this,  SLOT(onShowLink()));
567   
568   _hideLinkAct = _wrapper->createAction(getMenuId(), tr("Hide this link"), QIcon("icons:hideLink.png"),
569                                         tr("hide"), tr("Hide this link"),
570                                         0, _parent, false, this,  SLOT(onHideLink()));
571
572
573   _emphasisPortLinksAct = _wrapper->createAction(getMenuId(), tr("emphasis on links from/to this port"), QIcon("icons:emphasisLink.png"),
574                                                  tr("emphasize links"), tr("emphasis on links from/to this port"),
575                                                  0, _parent, false, this,  SLOT(onEmphasisPortLinks()));
576   
577   _emphasisCtrlLinksAct = _wrapper->createAction(getMenuId(), tr("emphasis on control links from/to this node"), QIcon("icons:emphasisLink.png"),
578                                                  tr("emphasize control links"), tr("emphasis on control links from/to this node"),
579                                                  0, _parent, false, this,  SLOT(onEmphasisCtrlLinks()));
580   
581   _emphasisLinkAct = _wrapper->createAction(getMenuId(), tr("emphasis on this link"), QIcon("icons:emphasisLink.png"),
582                                             tr("emphasize"), tr("emphasis on this link"),
583                                             0, _parent, false, this,  SLOT(onEmphasisLink()));
584
585   _deEmphasizeAllAct = _wrapper->createAction(getMenuId(), tr("remove all emphasis"), QIcon("icons:deEmphasisLink.png"),
586                                               tr("remove all emphasis"), tr("remove all emphasis"),
587                                               0, _parent, false, this,  SLOT(onDeEmphasizeAll()));
588   
589
590   _undoAct = _wrapper->createAction(getMenuId(), tr("undo last action"), QIcon("icons:undo.png"),
591                                     tr("undo"), tr("undo last action"),
592                                     0, _parent, false, this,  SLOT(onUndo()));
593   _undoAct->setShortcut(QKeySequence::Undo);
594   
595   _redoAct = _wrapper->createAction(getMenuId(), tr("redo last action"), QIcon("icons:redo.png"),
596                                     tr("redo"), tr("redo last action"),
597                                     0, _parent, false, this,  SLOT(onRedo()));
598   _redoAct->setShortcut(QKeySequence::Redo);
599   
600   _showUndoAct = _wrapper->createAction(getMenuId(), tr("show undo commands"), QIcon("icons:undo.png"),
601                                         tr("show undo"), tr("show undo commands"),
602                                         0, _parent, false, this,  SLOT(onShowUndo()));
603   
604   _showRedoAct = _wrapper->createAction(getMenuId(), tr("show redo commands"), QIcon("icons:redo.png"),
605                                         tr("show redo"), tr("show redo commands"),
606                                         0, _parent, false, this,  SLOT(onShowRedo()));
607   
608
609   _execModeGroup = new QActionGroup(this);
610   _execModeGroup->addAction(_withoutStopModeAct);
611   _execModeGroup->addAction(_breakpointsModeAct);
612   _execModeGroup->addAction(_stepByStepModeAct);
613   _withoutStopModeAct->setChecked(true);
614 }
615
616 void GenericGui::createMenus()
617 {
618   int aMenuId;
619   aMenuId = _wrapper->createMenu( tr( "File" ), -1, -1 );
620   _wrapper->createMenu( _wrapper->separator(), aMenuId, -1, 10 );
621   aMenuId = _wrapper->createMenu( "YACS", aMenuId, -1, 10 );
622   _wrapper->createMenu( _newSchemaAct, aMenuId );
623   _wrapper->createMenu( _importSchemaAct, aMenuId );
624
625   aMenuId = _wrapper->createMenu( "YACS", -1, -1, 30 );
626   _wrapper->createMenu( _newSchemaAct, aMenuId );//, 10
627   _wrapper->createMenu( _importSchemaAct, aMenuId );
628   _wrapper->createMenu( _importSupervSchemaAct, aMenuId );
629   _wrapper->createMenu( _wrapper->separator(), aMenuId);
630   _wrapper->createMenu( _exportSchemaAct, aMenuId );
631   _wrapper->createMenu( _exportSchemaAsAct, aMenuId );
632   _wrapper->createMenu( _wrapper->separator(), aMenuId);
633   _wrapper->createMenu( _runLoadedSchemaAct, aMenuId );
634   _wrapper->createMenu( _loadRunStateSchemaAct, aMenuId );
635   _wrapper->createMenu( _loadAndRunSchemaAct, aMenuId );
636   _wrapper->createMenu( _chooseBatchJobAct, aMenuId );
637   _wrapper->createMenu( _wrapper->separator(), aMenuId);
638   _wrapper->createMenu( _undoAct, aMenuId );
639   _wrapper->createMenu( _redoAct, aMenuId );
640   _wrapper->createMenu( _showUndoAct, aMenuId );
641   _wrapper->createMenu( _showRedoAct, aMenuId );
642   _wrapper->createMenu( _wrapper->separator(), aMenuId);
643   _wrapper->createMenu( _startResumeAct, aMenuId );
644   _wrapper->createMenu( _abortAct, aMenuId );
645   _wrapper->createMenu( _pauseAct, aMenuId );
646   _wrapper->createMenu( _resetAct, aMenuId );
647   _wrapper->createMenu( _wrapper->separator(), aMenuId);
648   _wrapper->createMenu( _saveRunStateAct, aMenuId );
649   //_wrapper->createMenu( _newEditionAct, aMenuId );
650   _wrapper->createMenu( _wrapper->separator(), aMenuId);
651   _wrapper->createMenu( _withoutStopModeAct, aMenuId );
652   _wrapper->createMenu( _breakpointsModeAct, aMenuId );
653   _wrapper->createMenu( _stepByStepModeAct, aMenuId );
654   _wrapper->createMenu( _wrapper->separator(), aMenuId);
655   _wrapper->createMenu( _toggleStopOnErrorAct, aMenuId );
656   _wrapper->createMenu( _wrapper->separator(), aMenuId);
657   _wrapper->createMenu( _importCatalogAct, aMenuId );
658   _wrapper->createMenu( _wrapper->separator(), aMenuId);
659   _wrapper->createMenu( _toggleStraightLinksAct, aMenuId );
660   _wrapper->createMenu( _toggleAutomaticComputeLinkAct, aMenuId );
661   _wrapper->createMenu( _toggleSimplifyLinkAct, aMenuId );
662   _wrapper->createMenu( _toggleForce2NodesLinkAct, aMenuId );
663   _wrapper->createMenu( _toggleAddRowColsAct, aMenuId );
664   _wrapper->createMenu( _wrapper->separator(), aMenuId);
665   _wrapper->createMenu( _showAllLinksAct, aMenuId );
666   _wrapper->createMenu( _hideAllLinksAct, aMenuId );
667   _wrapper->createMenu( _wrapper->separator(), aMenuId);
668   _wrapper->createMenu( _whatsThisAct, aMenuId );
669 }
670
671 void GenericGui::createTools()
672 {
673   int aToolId = _wrapper->createTool ( tr( "YACS Toolbar" ) );
674   _wrapper->createTool( _newSchemaAct, aToolId );
675   _wrapper->createTool( _importSchemaAct, aToolId );
676   _wrapper->createTool( _wrapper->separator(), aToolId );
677   _wrapper->createTool( _exportSchemaAct, aToolId );
678   _wrapper->createTool( _exportSchemaAsAct, aToolId );
679   _wrapper->createTool( _wrapper->separator(), aToolId);
680   _wrapper->createTool( _runLoadedSchemaAct, aToolId );
681   _wrapper->createTool( _loadRunStateSchemaAct, aToolId );
682   _wrapper->createTool( _loadAndRunSchemaAct, aToolId );
683   _wrapper->createTool( _chooseBatchJobAct, aToolId );
684   _wrapper->createTool( _wrapper->separator(), aToolId );
685   _wrapper->createTool( _undoAct, aToolId );
686   _wrapper->createTool( _redoAct, aToolId );
687   _wrapper->createTool( _wrapper->separator(), aToolId );
688   _wrapper->createTool( _startResumeAct, aToolId );
689   _wrapper->createTool( _abortAct, aToolId );
690   _wrapper->createTool( _pauseAct, aToolId );
691   _wrapper->createTool( _resetAct, aToolId );
692   _wrapper->createTool( _wrapper->separator(), aToolId );
693   _wrapper->createTool( _saveRunStateAct, aToolId );
694   //_wrapper->createTool( _newEditionAct, aToolId );
695   _wrapper->createTool( _withoutStopModeAct, aToolId );
696   _wrapper->createTool( _breakpointsModeAct, aToolId );
697   _wrapper->createTool( _stepByStepModeAct, aToolId );
698   _wrapper->createTool( _wrapper->separator(), aToolId );
699   _wrapper->createTool( _toggleStopOnErrorAct, aToolId );
700   _wrapper->createTool( _wrapper->separator(), aToolId );
701   _wrapper->createTool( _importCatalogAct, aToolId );
702   _wrapper->createTool( _wrapper->separator(), aToolId );
703   _wrapper->createTool( _toggleStraightLinksAct, aToolId );
704   _wrapper->createTool( _toggleAutomaticComputeLinkAct, aToolId );
705   _wrapper->createTool( _toggleSimplifyLinkAct, aToolId );
706   //_wrapper->createTool( _toggleForce2NodesLinkAct, aToolId );
707   _wrapper->createTool( _toggleAddRowColsAct, aToolId );
708   _wrapper->createTool( _wrapper->separator(), aToolId );
709   _wrapper->createTool( _showAllLinksAct, aToolId );
710   _wrapper->createTool( _hideAllLinksAct, aToolId );
711   _wrapper->createTool( _wrapper->separator(), aToolId );
712   _wrapper->createTool( _whatsThisAct, aToolId );
713 }
714
715 void GenericGui::initialMenus()
716 {
717   showEditionMenus(false);
718   showExecMenus(false);
719   showCommonMenus(false);
720   showBaseMenus(true);
721 }
722
723 void GenericGui::hideAllMenus()
724 {
725   showBaseMenus   (false);
726   showCommonMenus (false);
727   showEditionMenus(false);
728   showExecMenus   (false);
729 }
730
731 void GenericGui::showBaseMenus(bool show)
732 {
733   DEBTRACE("GenericGui::showBaseMenus " << show);
734   _wrapper->setMenuShown(_newSchemaAct, show);
735   _wrapper->setToolShown(_newSchemaAct, show);
736   _wrapper->setMenuShown(_importSchemaAct, show);
737   _wrapper->setToolShown(_importSchemaAct, show);
738   _wrapper->setMenuShown(_importSupervSchemaAct, show);
739   _wrapper->setMenuShown(_loadAndRunSchemaAct, show);
740   _wrapper->setToolShown(_loadAndRunSchemaAct, show);
741   _wrapper->setMenuShown(_chooseBatchJobAct, show);
742   _wrapper->setToolShown(_chooseBatchJobAct, show);
743   _wrapper->setMenuShown(_whatsThisAct, show);
744   _wrapper->setToolShown(_whatsThisAct, show);
745 }
746
747 void GenericGui::showEditionMenus(bool show)
748 {
749   DEBTRACE("GenericGui::showEditionMenus " << show);
750   _wrapper->setMenuShown(_exportSchemaAct, show);
751   _wrapper->setToolShown(_exportSchemaAct, show);
752   _wrapper->setMenuShown(_exportSchemaAsAct, show);
753   _wrapper->setToolShown(_exportSchemaAsAct, show);
754   _wrapper->setMenuShown(_runLoadedSchemaAct, show);
755   _wrapper->setToolShown(_loadRunStateSchemaAct, show);
756   _wrapper->setMenuShown(_loadRunStateSchemaAct, show);
757   _wrapper->setToolShown(_runLoadedSchemaAct, show);
758   _wrapper->setMenuShown(_undoAct, show);
759   _wrapper->setToolShown(_undoAct, show);
760   _wrapper->setMenuShown(_redoAct, show);
761   _wrapper->setToolShown(_redoAct, show);
762   _wrapper->setMenuShown(_showUndoAct, show);
763   _wrapper->setMenuShown(_showRedoAct, show);
764   _wrapper->setMenuShown(_importCatalogAct, show);
765   _wrapper->setToolShown(_importCatalogAct, show);
766 }
767
768 void GenericGui::showExecMenus(bool show)
769 {
770   DEBTRACE("GenericGui::showExecMenus " << show);
771   _wrapper->setMenuShown(_startResumeAct, show);
772   _wrapper->setToolShown(_startResumeAct, show);
773   _wrapper->setMenuShown(_abortAct, show);
774   _wrapper->setToolShown(_abortAct, show);
775   _wrapper->setMenuShown(_pauseAct, show);
776   _wrapper->setToolShown(_pauseAct, show);
777   _wrapper->setMenuShown(_resetAct, show);
778   _wrapper->setToolShown(_resetAct, show);
779   _wrapper->setMenuShown(_saveRunStateAct, show);
780   _wrapper->setToolShown(_saveRunStateAct, show);
781   //_wrapper->setMenuShown(_newEditionAct, show);
782   //_wrapper->setToolShown(_newEditionAct, show);
783   _wrapper->setMenuShown(_withoutStopModeAct, show);
784   _wrapper->setToolShown(_withoutStopModeAct, show);
785   _wrapper->setMenuShown(_breakpointsModeAct, show);
786   _wrapper->setToolShown(_breakpointsModeAct, show);
787   _wrapper->setMenuShown(_stepByStepModeAct, show);
788   _wrapper->setToolShown(_stepByStepModeAct, show);
789   _wrapper->setMenuShown(_toggleStopOnErrorAct, show);
790   _wrapper->setToolShown(_toggleStopOnErrorAct, show);
791 }
792
793 void GenericGui::showCommonMenus(bool show)
794 {
795   DEBTRACE("GenericGui::showCommonMenus " << show);
796   _wrapper->setMenuShown(_toggleStraightLinksAct, show);
797   _wrapper->setToolShown(_toggleStraightLinksAct, show);
798   _wrapper->setMenuShown(_toggleAutomaticComputeLinkAct, show);
799   _wrapper->setToolShown(_toggleAutomaticComputeLinkAct, show);
800   _wrapper->setMenuShown(_toggleSimplifyLinkAct, show);
801   _wrapper->setToolShown(_toggleSimplifyLinkAct, show);
802   _wrapper->setMenuShown(_toggleForce2NodesLinkAct, show);
803   //_wrapper->setToolShown(_toggleForce2NodesLinkAct, show);
804   _wrapper->setMenuShown(_toggleAddRowColsAct, show);
805   _wrapper->setToolShown(_toggleAddRowColsAct, show);
806   _wrapper->setMenuShown(_showAllLinksAct, show);
807   _wrapper->setToolShown(_showAllLinksAct, show);
808   _wrapper->setMenuShown(_hideAllLinksAct, show);
809   _wrapper->setToolShown(_hideAllLinksAct, show);
810 }
811
812 void GenericGui::switchContext(QWidget *view, bool onExit)
813 {
814   DEBTRACE("GenericGui::switchContext " << view);
815   if (! _mapViewContext.count(view))
816     {
817       onExit ? hideAllMenus() : initialMenus();
818       _dwTree->setWidget(0);
819       _dwStacked->setWidget(0);
820       return;
821     }
822   QtGuiContext* newContext = _mapViewContext[view];
823
824   _dwTree->setWidget(newContext->getEditTree());
825   _dwTree->widget()->show();
826   _dwTree->raise();
827   _dwStacked->setWidget(newContext->getStackedWidget());
828
829   QtGuiContext::setQtCurrent(newContext);
830
831   if (newContext->isEdition())
832     {
833       showExecMenus(false);
834       showBaseMenus(true);
835       showEditionMenus(true);
836       showCommonMenus(true);
837       if (_dwTree) _dwTree->setWindowTitle("Tree View: edition mode");
838     }
839   else
840     {
841       showEditionMenus(false);
842       showBaseMenus(true);
843       showExecMenus(true);
844       showCommonMenus(true);
845       _withoutStopModeAct->setChecked(true);
846       if (_dwTree) _dwTree->setWindowTitle("Tree View: execution mode");
847     }
848   _dwStacked->setMinimumWidth(10);
849 }
850
851 bool GenericGui::closeContext(QWidget *view, bool onExit)
852 {
853   DEBTRACE("GenericGui::closeContext " << onExit);
854   if (! _mapViewContext.count(view))
855     return true;
856   QtGuiContext* context = _mapViewContext[view];
857   switchContext(view);
858
859   bool tryToSave = false;
860
861   if (QtGuiContext::getQtCurrent()->isEdition())
862     {
863       if (!QtGuiContext::getQtCurrent()->_setOfModifiedSubjects.empty())
864         {
865           QMessageBox msgBox;
866           msgBox.setText("Some elements are modified and not taken into account.");
867           string info = "do you want to apply your changes ?\n";
868           info += " - Save    : do not take into account edition in progress,\n";
869           info += "             but if there are other modifications, select a file name for save\n";
870           info += " - Discard : discard all modifications and close the schema";
871           if (!onExit)
872             info += "\n - Cancel  : do not close the schema, return to edition";
873           msgBox.setInformativeText(info.c_str());
874           if (!onExit)
875             {
876               msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
877               msgBox.setDefaultButton(QMessageBox::Cancel);
878             }
879           else
880             {
881               msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard);
882               msgBox.setDefaultButton(QMessageBox::Save);
883             }
884           int ret = msgBox.exec();
885           switch (ret)
886             {
887             case QMessageBox::Save:
888               tryToSave = true;
889               break;
890             case QMessageBox::Discard:
891               tryToSave = false;
892               break;
893             case QMessageBox::Cancel:
894             default:
895               DEBTRACE("Cancel or default");
896               return false;
897               break;
898             }
899         }
900       else
901         if (QtGuiContext::getQtCurrent()->isNotSaved())
902           {
903             QMessageBox msgBox;
904             msgBox.setWindowTitle("Close the active schema");
905             msgBox.setText("The schema has been modified");
906             string info = "do you want to save the schema ?\n";
907             info += " - Save    : select a file name for save\n";
908             info += " - Discard : discard all modifications and close the schema";
909             if (!onExit)
910               info += "\n - Cancel  : do not close the schema, return to edition";
911             msgBox.setInformativeText(info.c_str());
912             if (!onExit)
913               {
914                 msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
915                 msgBox.setDefaultButton(QMessageBox::Cancel);
916               }
917             else
918               {
919                 msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard);
920                 msgBox.setDefaultButton(QMessageBox::Save);
921               }
922             int ret = msgBox.exec();
923             switch (ret)
924               {
925               case QMessageBox::Save:
926                 tryToSave = true;
927                 break;
928               case QMessageBox::Discard:
929                 tryToSave = false;
930                 break;
931               case QMessageBox::Cancel:
932                 DEBTRACE("Cancel or default");
933               default:
934                 return false;
935                 break;
936               }
937           }
938
939       if (tryToSave)
940         {
941           onExportSchemaAs();
942           if ((!onExit) && (!_isSaved)) // --- probably, user has cancelled the save dialog. Do not close
943             return false;
944         }
945     }
946
947   map<QWidget*, YACS::HMI::QtGuiContext*>::iterator it = _mapViewContext.begin();
948   QtGuiContext* newContext = 0;
949   QWidget* newView = 0;
950   for (; it != _mapViewContext.end(); ++it)
951     {
952       if ((*it).second != context)
953         {
954           newView = (*it).first;
955           newContext = (*it).second;
956           break;
957         }
958     }
959   int studyId = _wrapper->activeStudyId();
960   if (context->getStudyId() == studyId)
961     {
962       _wrapper->deleteSchema(view);
963       DEBTRACE("delete context");
964       if (GuiExecutor* exec = context->getGuiExecutor())
965         {
966           exec->closeContext();
967         }
968       delete context;
969       _mapViewContext.erase(view);
970       switchContext(newView, onExit);
971     }
972   return true;
973 }
974
975 void GenericGui::showDockWidgets(bool isVisible)
976 {
977   DEBTRACE("GenericGui::showDockWidgets " << isVisible);
978   if (_dwTree) _dwTree->setVisible(isVisible);
979   if (_dwTree) _dwTree->toggleViewAction()->setVisible(isVisible);
980   if (_dwStacked) _dwStacked->setVisible(isVisible);
981   if (_dwStacked) _dwStacked->toggleViewAction()->setVisible(isVisible);
982   if (_dwCatalogs) _dwCatalogs->setVisible(isVisible);
983   if (_dwCatalogs) _dwCatalogs->toggleViewAction()->setVisible(isVisible);
984 }
985
986 void GenericGui::raiseStacked()
987 {
988   if (_dwStacked) _dwStacked->raise();
989 }
990
991 std::list<std::string> GenericGui::getMachineList()
992 {
993   if (!_machineList.empty()) return _machineList;
994
995   YACS::ENGINE::RuntimeSALOME* runTime = YACS::ENGINE::getSALOMERuntime();
996   CORBA::ORB_ptr orb = runTime->getOrb();
997   if (!orb) return _machineList;
998
999   SALOME_NamingService namingService(orb);
1000   SALOME_LifeCycleCORBA lcc(&namingService);
1001
1002   CORBA::Object_var obj =
1003     namingService.Resolve(SALOME_ResourcesManager::_ResourcesManagerNameInNS);
1004   if (CORBA::is_nil(obj)) return _machineList;
1005
1006   Engines::ResourcesManager_var resManager = Engines::ResourcesManager::_narrow(obj);
1007   if(!resManager) return _machineList;
1008
1009   Engines::ResourceParameters params;
1010   lcc.preSet(params);
1011
1012   Engines::ResourceList* resourceList =
1013     resManager->GetFittingResources(params);
1014
1015   for (int i = 0; i < resourceList->length(); i++)
1016   {
1017     const char* aResource = (*resourceList)[i];
1018     _machineList.push_back(aResource);
1019   }
1020
1021   return _machineList;
1022 }
1023
1024 // -----------------------------------------------------------------------------
1025
1026 /*! a QtGuiContext instance is created for each schema in edition or each execution or run
1027  *  of a schema. The context stores references of a lot of objects related to the edition
1028  *  or execution.
1029  *  \param proc       the schema to run or edit, loaded from file or just created empty.
1030  *  \param schemaName filename of the schema in edition, also used in execution to publish
1031  *                    a run under the edition name in Salome object browser.
1032  *  \param runName    filename of the schema in execution, not used in edition.
1033  *  \param forEdition if true, edition mode, if false, execution mode.
1034  */
1035 void GenericGui::createContext(YACS::ENGINE::Proc* proc,
1036                                const QString& schemaName,
1037                                const QString& runName,
1038                                bool forEdition)
1039 {
1040   DEBTRACE("GenericGui::createContext");
1041   clock_t  start_t;
1042   clock_t  end_t;
1043   start_t = clock();
1044
1045
1046   QWidget* central = _parent->centralWidget();
1047   if (central)
1048     central->setFocus();
1049   else
1050     DEBTRACE("No Central Widget");
1051
1052   QString fileName;
1053   QWidget* refWindow = 0; // --- used only on run to refer to the schema in edition
1054   if (forEdition)
1055     {
1056       fileName = schemaName;
1057     }
1058   else
1059     {
1060       fileName = runName;
1061       if (QtGuiContext::getQtCurrent())
1062         refWindow = QtGuiContext::getQtCurrent()->getWindow();
1063     }
1064
1065   QtGuiContext* context = new QtGuiContext(this);
1066   QtGuiContext::setQtCurrent(context);
1067
1068   // --- catalogs
1069
1070   context->setEdition(forEdition);
1071   context->setSessionCatalog(_sessionCatalog);
1072   context->setFileName(fileName);
1073   context->setCurrentCatalog(_builtinCatalog);
1074
1075   // --- scene, viewWindow & GraphicsView
1076
1077   Scene *scene = new Scene();
1078   QWidget *viewWindow = _wrapper->getNewWindow(scene);
1079   _mapViewContext[viewWindow] = context;
1080   GraphicsView* gView = new GraphicsView(viewWindow);
1081   gView->setScene(scene);
1082   gView->setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
1083   int studyId = _wrapper->AssociateViewToWindow(gView, viewWindow);
1084   context->setStudyId(studyId);
1085   std::ostringstream value;
1086   value << studyId;
1087   proc->setProperty("DefaultStudyID",value.str());
1088   context->setScene(scene);
1089   context->setView(gView);
1090   context->setWindow(viewWindow);
1091   gView->show();
1092
1093   // --- Schema Model
1094
1095   SchemaModel *schemaModel = new SchemaModel(context, viewWindow);
1096   schemaModel->setEdition(forEdition);
1097   context->setSchemaModel(schemaModel);
1098   RootSceneItem *rootSceneItem = new RootSceneItem(context);
1099
1100   // --- tree associated to model
1101
1102   FormEditTree *editTree = new FormEditTree(_dwTree);
1103   editTree->setMinimumHeight(400);
1104   _dwTree->setWidget(editTree);
1105   editTree->show();
1106   context->setEditTree(editTree);
1107   editTree->tv_schema->setModel(schemaModel);
1108   context->setSelectionModel(editTree->tv_schema->selectionModel());
1109   _dwTree->raise();
1110
1111   QObject::connect(editTree->tv_schema->selectionModel(),
1112                    SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)),
1113                    schemaModel,
1114                    SLOT(updateSelection(const QItemSelection &, const QItemSelection &)));
1115
1116   // --- stacked widget
1117
1118   QStackedWidget *stacked = new QStackedWidget(_dwStacked);
1119   _dwStacked->setWidget(stacked);
1120   context->setStackedWidget(stacked);
1121   YACS::HMI::ItemEditionRoot* rootEdit = new YACS::HMI::ItemEditionRoot(context,
1122                                                                         0,
1123                                                                         context->getName().c_str());
1124   context->setEditionRoot(rootEdit);
1125
1126   QObject::connect(schemaModel,
1127                    SIGNAL(signalSelection(const QModelIndex &)),
1128                    editTree->tv_schema,
1129                    SLOT(viewSelection(const QModelIndex &)));
1130
1131   // --- load schema
1132
1133   proc->setEdition(forEdition);
1134
1135   {
1136     end_t = clock();
1137     double passe =  (end_t -start_t);
1138     passe = passe/CLOCKS_PER_SEC;
1139     DEBTRACE("create context -1- : " << passe);
1140     start_t = end_t;
1141   }
1142
1143   context->setLoading(true);
1144
1145   context->setProc(proc);
1146   setLoadedPresentation(proc);
1147
1148   {
1149     end_t = clock();
1150     double passe =  (end_t -start_t);
1151     passe = passe/CLOCKS_PER_SEC;
1152     DEBTRACE("create context - load proc- : " << passe);
1153     start_t = end_t;
1154   }
1155
1156   context->setLoading(false);
1157
1158   if (forEdition && _wrapper)  // --- Edition mode
1159     {
1160       _wrapper->createNewSchema(fileName, viewWindow);
1161     }
1162   else if (_wrapper)           // --- Execution Mode
1163     {
1164       GuiExecutor *guiExec = new GuiExecutor(proc);
1165       context->setGuiExecutor(guiExec);
1166       _wrapper->createNewRun(schemaName, fileName, refWindow, viewWindow);
1167     }
1168
1169
1170   QtGuiContext::getQtCurrent()->getSubjectProc()->update(UPDATE,
1171                                                          ProcInvoc::getTypeOfNode(proc),
1172                                                          0); // --- force validity check
1173
1174   // --- adjust widgets
1175
1176   TreeView *vtree = dynamic_cast<TreeView*>(editTree->tv_schema);
1177   YASSERT(vtree);
1178   vtree->resizeColumns();
1179   _catalogsWidget->setMinimumWidth(10); // --- reset the constraint on width
1180   editTree->setMinimumHeight(40);
1181   _dwStacked->setMinimumWidth(10);
1182   // --- show menus
1183
1184   if (forEdition)
1185     {
1186       showExecMenus(false);
1187       showEditionMenus(true);
1188       showCommonMenus(true);
1189       if (_dwTree) _dwTree->setWindowTitle("Tree View: edition mode");
1190     }
1191   else
1192     {
1193       showEditionMenus(false);
1194       showExecMenus(true);
1195       showCommonMenus(true);
1196       _withoutStopModeAct->setChecked(true);
1197       if (_dwTree) _dwTree->setWindowTitle("Tree View: execution mode");
1198     }
1199
1200   QtGuiContext::getQtCurrent()->setNotSaved(false);
1201   {
1202     end_t = clock();
1203     double passe =  (end_t -start_t);
1204     passe = passe/CLOCKS_PER_SEC;
1205     DEBTRACE("create context - end - : " << passe);
1206     start_t = end_t;
1207   }
1208 }
1209
1210 // -----------------------------------------------------------------------------
1211
1212 void GenericGui::setLoadedPresentation(YACS::ENGINE::Proc* proc)
1213 {
1214   DEBTRACE("GenericGui::setLoadedPresentation");
1215   QtGuiContext::getQtCurrent()->setLoadingPresentation(true);
1216   map<SceneNodeItem*, QPointF> nodesToMove;
1217   map<YACS::ENGINE::Node*, PrsData> presNodes = _loader->getPrsData(proc);
1218   if (!presNodes.empty())
1219     {
1220       map<YACS::ENGINE::Node*, PrsData>::iterator it = presNodes.begin();
1221       for (; it!= presNodes.end(); ++it)
1222         {
1223           YACS::ENGINE::Node* node = (*it).first;
1224           PrsData pres = (*it).second;
1225           SubjectNode *snode = QtGuiContext::getQtCurrent()->_mapOfSubjectNode[node];
1226           SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[snode];
1227           YASSERT(item);
1228           SceneNodeItem *inode = dynamic_cast<SceneNodeItem*>(item);
1229           YASSERT(inode);
1230           inode->setPos(QPointF(pres._x, pres._y));
1231           inode->setWidth(pres._width);
1232           inode->setHeight(pres._height);
1233           inode->setExpanded(pres._expanded);
1234           inode->setExpandedPos(QPointF(pres._expx, pres._expy));
1235           inode->setExpandedWH(pres._expWidth, pres._expHeight);
1236           inode->setShownState(shownState(pres._shownState));
1237
1238           // collect nodes to correct it's Y-position if this collides with parent's header
1239           if (inode->getParent() && inode->y() < inode->getParent()->getHeaderBottom())
1240             nodesToMove[inode] = QPointF(inode->x(), inode->getParent()->getHeaderBottom()+1);
1241         }
1242     }
1243   QtGuiContext::getQtCurrent()->setLoadingPresentation(false);
1244   
1245   //after loading of presentation:
1246
1247   //move nodes because of progress bar, if any was added
1248   map<SceneNodeItem*, QPointF>::iterator it = nodesToMove.begin();
1249   for (; it!= nodesToMove.end(); ++it)
1250     {
1251       (*it).first->setTopLeft((*it).second);
1252     }
1253
1254   //update links
1255   if (Scene::_autoComputeLinks)
1256     _guiEditor->rebuildLinks();
1257   else
1258     {
1259       YACS::HMI::SubjectProc* subproc = QtGuiContext::getQtCurrent()->getSubjectProc();
1260       SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[subproc];
1261       SceneComposedNodeItem *proc = dynamic_cast<SceneComposedNodeItem*>(item);
1262       proc->updateLinks();
1263     }
1264 }
1265
1266 // -----------------------------------------------------------------------------
1267
1268 void GenericGui::onNewSchema()
1269 {
1270   DEBTRACE("GenericGui::onNewSchema");
1271
1272   std::stringstream name;
1273   name << "newSchema_" << ++_schemaCnt;
1274
1275   YACS::ENGINE::RuntimeSALOME* runTime = YACS::ENGINE::getSALOMERuntime();
1276   YACS::ENGINE::Proc *proc = runTime->createProc(name.str());
1277
1278   _loader->reset();
1279
1280   QString fileName = name.str().c_str();
1281   createContext(proc, fileName, "", true);
1282 }
1283
1284 void GenericGui::loadSchema(const std::string& filename,bool edit, bool arrangeLocalNodes)
1285 {
1286   YACS::ENGINE::Proc *proc = _loader->load(filename.c_str());
1287   if (!proc)
1288     return;
1289   YACS::ENGINE::Logger* logger= proc->getLogger("parser");
1290   if(!logger->isEmpty())
1291     {
1292       DEBTRACE(logger->getStr());
1293     }
1294   QString fn=QString::fromStdString(filename);
1295   if(edit)
1296     createContext(proc, fn, "", true);
1297   else
1298     createContext(proc, fn, fn, false);
1299   if (arrangeLocalNodes)
1300   {
1301     _guiEditor->arrangeProc();
1302   }
1303 }
1304
1305 void GenericGui::onImportSchema()
1306 {
1307   clock_t  start_t;
1308   clock_t  end_t;
1309   start_t = clock();
1310   DEBTRACE("GenericGui::onImportSchema");
1311   QFileDialog dialog(_parent,
1312                      "Choose a filename to load" ,
1313                      QString::null,
1314                      tr( "XML-Files (*.xml);;All Files (*)" ));
1315
1316   dialog.setHistory(_wrapper->getQuickDirList());
1317
1318   QString fn;
1319   QStringList fileNames;
1320   if (dialog.exec())
1321     {
1322       fileNames = dialog.selectedFiles();
1323       if (!fileNames.isEmpty())
1324         fn = fileNames.first();
1325     }
1326
1327   if ( !fn.isEmpty() )
1328     {
1329       // add ".xml" suffix
1330       QFileInfo fi(fn);
1331       if (!fi.exists() && fi.suffix() != "xml")
1332         fn += ".xml";
1333
1334       DEBTRACE("file loaded : " <<fn.toStdString());
1335       YACS::ENGINE::Proc *proc = 0;
1336
1337       try {
1338          proc = _loader->load(fn.toLatin1());
1339       }
1340       catch (...) {
1341       }
1342       
1343       {
1344         end_t = clock();
1345         double passe =  (end_t -start_t);
1346         passe = passe/CLOCKS_PER_SEC;
1347         DEBTRACE("load xml file : " << passe);
1348         start_t = end_t;
1349       }
1350
1351       if (!proc)
1352         {
1353           QMessageBox msgBox(QMessageBox::Critical,
1354                              "Import YACS Schema, native YACS XML format",
1355                              "The file has not the native YACS XML format or is not readable.");
1356           msgBox.exec();
1357           return;
1358         }
1359       YACS::ENGINE::Logger* logger= proc->getLogger("parser");
1360       if(!logger->isEmpty())
1361         {
1362           DEBTRACE(logger->getStr());
1363         }
1364       createContext(proc, fn, "", true);
1365     }
1366 }
1367
1368 void GenericGui::onImportSupervSchema()
1369 {
1370   DEBTRACE("GenericGui::onImportSupervSchema");
1371   QFileDialog dialog(_parent,
1372                      "Choose a  SUPERV filename to load" ,
1373                      QString::null,
1374                      tr( "XML-Files (*.xml);;All Files (*)" ));
1375
1376   dialog.setHistory(_wrapper->getQuickDirList());
1377
1378   QString fn;
1379   QStringList fileNames;
1380   if (dialog.exec())
1381     {
1382       fileNames = dialog.selectedFiles();
1383       if (!fileNames.isEmpty())
1384         fn = fileNames.first();
1385     }
1386
1387   if (fn.isEmpty()) return;
1388
1389   // add ".xml" suffix
1390   QFileInfo fi(fn);
1391   if (!fi.exists() && fi.suffix() != "xml")
1392     fn += ".xml";
1393
1394   DEBTRACE("file loaded : " <<fn.toStdString());
1395   QString tmpFileName;
1396   try
1397     {
1398 #ifdef WIN32
1399       QString tmpDir = getenv("TEMP");
1400           QString fileExt = "bat";
1401 #else
1402       QString tmpDir = "/tmp";
1403           QString fileExt = "sh";
1404 #endif
1405       QDir aTmpDir(tmpDir);
1406       aTmpDir.mkdir(QString("YACS_") + getenv("USER"));
1407       YASSERT(aTmpDir.cd(QString("YACS_") + getenv("USER")));
1408       QDateTime curTime = QDateTime::currentDateTime();   
1409       tmpFileName = "SUPERV_import_" + curTime.toString("yyyyMMdd_hhmmss") + ".xml";
1410       QString tmpOutput = "salomeloader_output";
1411       tmpFileName = aTmpDir.absoluteFilePath(tmpFileName);
1412       DEBTRACE(tmpFileName.toStdString());
1413       
1414       QString aCall = "salomeloader."+ fileExt+ " "+ fn + " " + tmpFileName + " > " + tmpOutput;
1415       DEBTRACE(aCall.toStdString());
1416       
1417       int ret = system(aCall.toAscii());
1418       if(ret != 0)
1419         {
1420           // --- read file with logs
1421           fstream f(tmpOutput.toAscii());
1422           stringstream hfile;
1423           hfile << f.rdbuf();
1424           f.close();
1425           
1426           // --- Problem in execution
1427           int status=WEXITSTATUS(ret);
1428           if(status == 1)
1429             {
1430               QString mes = "Problems in conversion: some errors but an incomplete proc has nevertheless been created.\n\n";
1431               mes += QString(hfile.str().c_str());
1432               QMessageBox msgBox(QMessageBox::Warning,
1433                                  "Import YACS Schema, SUPERV XML format",
1434                                  mes);
1435               msgBox.exec();
1436             }
1437           else if(status == 2)
1438             {
1439               QString mes = "Problems in conversion: a fatal error has been encountered. The proc can't be created.\n\n";
1440               mes += QString(hfile.str().c_str());
1441               QMessageBox msgBox(QMessageBox::Critical,
1442                                  "Import YACS Schema, SUPERV XML format",
1443                                  mes);
1444               msgBox.exec();
1445               return;
1446             }
1447           else
1448             {
1449               DEBTRACE("Unknown problem: " << ret );
1450               QMessageBox msgBox(QMessageBox::Critical,
1451                                  "Import YACS Schema, SUPERV XML format",
1452                                  "Unexpected exception in salomeloader.");
1453               msgBox.exec();
1454               return;
1455             }
1456         }
1457     }
1458   catch(...)
1459     {
1460       QMessageBox msgBox(QMessageBox::Critical,
1461                          "Import YACS Schema, SUPERV XML format",
1462                          "Unexpected exception in convertSupervFile");
1463       msgBox.exec();
1464       return;
1465     }
1466
1467   fn = tmpFileName;
1468   if (fn.isEmpty()) return; // must not happen
1469
1470   DEBTRACE("file loaded : " <<fn.toStdString());
1471   YACS::ENGINE::Proc *proc = _loader->load(fn.toLatin1());
1472   if (!proc)
1473     {
1474       QMessageBox msgBox(QMessageBox::Critical,
1475                          "Import YACS Schema, SUPERV file converted in native YACS XML format",
1476                          "The file has not the native YACS XML format or is not readable.");
1477       msgBox.exec();
1478       return;
1479     }
1480   YACS::ENGINE::Logger* logger= proc->getLogger("parser");
1481   if(!logger->isEmpty())
1482     {
1483       DEBTRACE(logger->getStr());
1484     }
1485   createContext(proc, fn, "", true);
1486 }
1487
1488 //! bug confirmOverwrite : correction Qt 4.3.5
1489 QString GenericGui::getSaveFileName(const QString& fileName)
1490 {
1491   QFileDialog dialog(_parent, "Save schema", fileName);
1492   QStringList filters;
1493   filters << "XML files (*.xml)"
1494           << "Any files (*)";
1495   dialog.setFileMode(QFileDialog::AnyFile);
1496   dialog.setFilters(filters);
1497   dialog.selectFilter("(*.xml)");
1498   dialog.setDefaultSuffix("xml");
1499   dialog.setConfirmOverwrite(true);
1500   //dialog.setConfirmOverwrite(false);  // bug Qt4.3.3
1501   dialog.setAcceptMode(QFileDialog::AcceptSave);
1502   QString selectedFile;
1503   QStringList fileNames;
1504   fileNames.clear();
1505   if (bool ret = dialog.exec())
1506     {
1507       DEBTRACE(ret << " " << dialog.confirmOverwrite());
1508       fileNames = dialog.selectedFiles();
1509       if (!fileNames.isEmpty())
1510         selectedFile = fileNames.first();
1511     }
1512   QString filteredName = _guiEditor->asciiFilter(selectedFile);
1513   DEBTRACE(filteredName.toStdString());
1514   return filteredName;
1515 }
1516
1517 void GenericGui::onExportSchema()
1518 {
1519   DEBTRACE("GenericGui::onExportSchema");
1520   if (!QtGuiContext::getQtCurrent()) return;
1521   YACS::ENGINE::Proc* proc = QtGuiContext::getQtCurrent()->getProc();
1522   QString fo = QtGuiContext::getQtCurrent()->getFileName();
1523   QString foo = fo;
1524   QString fn = fo;
1525   if (fo.startsWith("newSchema_"))
1526     {
1527       fo.clear();
1528       fn = getSaveFileName(fo);
1529     }
1530   if (fn.isEmpty()) return;
1531
1532   DEBTRACE("GenericGui::onExportSchema: " << fn.toStdString());
1533   //to be sure that all pending changes are effective
1534   _parent->setFocus();
1535   QtGuiContext::getQtCurrent()->setFileName(fn);
1536   VisitorSaveGuiSchema aWriter(proc);
1537   aWriter.openFileSchema( fn.toStdString() );
1538   aWriter.visitProc();
1539   aWriter.closeFileSchema();
1540   QtGuiContext::getQtCurrent()->setNotSaved(false);
1541
1542   if (fn.compare(foo) && _wrapper)
1543     _wrapper->renameSchema(foo, fn, QtGuiContext::getQtCurrent()->getWindow());
1544 }
1545
1546 void GenericGui::onExportSchemaAs()
1547 {
1548   DEBTRACE("GenericGui::onExportSchemaAs");
1549   _isSaved = false;
1550   if (!QtGuiContext::getQtCurrent()) return;
1551   YACS::ENGINE::Proc* proc = QtGuiContext::getQtCurrent()->getProc();
1552   QString fo = QtGuiContext::getQtCurrent()->getFileName();
1553   QString foo = fo;
1554   if (fo.startsWith("newSchema_")) fo.clear();
1555   QString fn = getSaveFileName(fo);
1556   if (fn.isEmpty()) return;
1557
1558   DEBTRACE("GenericGui::onExportSchemaAs: " << fn.toStdString());
1559   QtGuiContext::getQtCurrent()->setFileName(fn);
1560   VisitorSaveGuiSchema aWriter(proc);
1561   aWriter.openFileSchema(fn.toStdString());
1562   aWriter.visitProc();
1563   aWriter.closeFileSchema();
1564   _isSaved = true;
1565   QtGuiContext::getQtCurrent()->setNotSaved(false);
1566
1567   if (fn.compare(foo) && _wrapper)
1568     _wrapper->renameSchema(foo, fn, QtGuiContext::getQtCurrent()->getWindow());
1569 }
1570
1571 void GenericGui::onImportCatalog()
1572 {
1573   DEBTRACE("GenericGui::onImportCatalog");
1574   QFileDialog dialog(_parent,
1575                      "Choose a YACS Schema to load as a Catalog" ,
1576                      QString::null,
1577                      tr( "XML-Files (*.xml);;All Files (*)" ));
1578
1579   dialog.setHistory(_wrapper->getQuickDirList());
1580
1581   QString fn;
1582   QStringList fileNames;
1583   if (dialog.exec())
1584     {
1585       fileNames = dialog.selectedFiles();
1586       if (!fileNames.isEmpty())
1587         fn = fileNames.first();
1588     }
1589
1590   if ( !fn.isEmpty() )
1591     _catalogsWidget->addCatalogFromFile(fn.toStdString());
1592 }
1593   
1594 void GenericGui::onRunLoadedSchema(bool withState)
1595 {
1596   DEBTRACE("GenericGui::onRunLoadedSchema");
1597   if (!QtGuiContext::getQtCurrent()) return;
1598
1599   clock_t  start_t;
1600   clock_t  end_t;
1601   start_t = clock();
1602
1603   // --- check proc state (cf. editionProc)
1604
1605   if (!QtGuiContext::getQtCurrent()->_setOfModifiedSubjects.empty())
1606     {
1607       set<Subject*>::iterator it = QtGuiContext::getQtCurrent()->_setOfModifiedSubjects.begin();
1608       (*it)->select(true);
1609       return;
1610     }
1611
1612   YACS::ENGINE::Proc* proc = QtGuiContext::getQtCurrent()->getProc();
1613   if (!proc->isValid())
1614     {
1615       QtGuiContext::getQtCurrent()->getSubjectProc()->select(true);
1616       return;
1617     }
1618
1619   YACS::ENGINE::LinkInfo info(YACS::ENGINE::LinkInfo::ALL_STOP_ASAP);
1620   try
1621     {
1622       proc->checkConsistency(info);
1623     }
1624   catch (Exception &ex)
1625     {
1626       DEBTRACE(ex.what());
1627       QtGuiContext::getQtCurrent()->getSubjectProc()->select(true);
1628       return;
1629     }
1630   if (info.areWarningsOrErrors()) return;
1631  
1632   {
1633     end_t = clock();
1634     double passe =  (end_t -start_t);
1635     passe = passe/CLOCKS_PER_SEC;
1636     cerr <<"run schema -1- : " << passe << endl;
1637     start_t = end_t;
1638   }
1639   // --- save proc under a run name
1640
1641   QFileInfo fo = QtGuiContext::getQtCurrent()->getFileName();
1642   QString procName = fo.baseName();
1643   //QString tmpDir = SALOMEDS_Tool::GetTmpDir().c_str();
1644 #ifdef WIN32
1645   QString tmpDir = getenv("TEMP");
1646 #else
1647   QString tmpDir = "/tmp";
1648 #endif
1649   QDir aTmpDir(tmpDir);
1650   aTmpDir.mkdir(QString("YACS_") + getenv("USER"));
1651   YASSERT(aTmpDir.cd(QString("YACS_") + getenv("USER")));
1652   QDateTime curTime = QDateTime::currentDateTime();   
1653   QString aRunName = procName + "_" + curTime.toString("yyyyMMdd_hhmmss") + ".xml";
1654   aRunName = aTmpDir.absoluteFilePath(aRunName);
1655   DEBTRACE(aRunName.toStdString());
1656
1657   VisitorSaveGuiSchema aWriter(proc);
1658   aWriter.openFileSchema(aRunName.toStdString());
1659   aWriter.visitProc();
1660   aWriter.closeFileSchema();
1661
1662   // --- create a run context
1663
1664   YACS::ENGINE::Proc *procrun = _loader->load(aRunName.toLatin1());
1665   {
1666     end_t = clock();
1667     double passe =  (end_t -start_t);
1668     passe = passe/CLOCKS_PER_SEC;
1669     cerr <<"run schema -2- : " << passe << endl;
1670     start_t = end_t;
1671   }
1672   createContext(procrun, QtGuiContext::getQtCurrent()->getFileName(), aRunName, false);
1673
1674   // load state if required
1675
1676   GuiExecutor *executor = QtGuiContext::getQtCurrent()->getGuiExecutor();
1677   if (!executor) return;
1678   if (withState)
1679     {
1680       QString fn = QFileDialog::getOpenFileName( _parent,
1681                                                  "Choose a previous run state to load" ,
1682                                                  QString::null,
1683                                                  tr( "XML-Files (*.xml);;All Files (*)" ));
1684       if (!fn.isEmpty())
1685         {
1686           DEBTRACE("run state to load: " <<fn.toStdString());
1687           executor->setLoadStateFile(fn.toStdString());
1688         }
1689     }
1690   executor->startResumeDataflow(true); // --- initialise gui state
1691   if(_toggleStopOnErrorAct->isChecked())
1692     executor->setStopOnError(false);
1693 }
1694
1695 void GenericGui::onLoadRunStateSchema()
1696 {
1697   DEBTRACE("GenericGui::onLoadRunStateSchema");
1698   onRunLoadedSchema(true);
1699 }
1700
1701 void GenericGui::onLoadAndRunSchema()
1702 {
1703   DEBTRACE("GenericGui::onLoadAndRunSchema");
1704   QString fn = QFileDialog::getOpenFileName( _parent,
1705                                              "Choose a filename to load" ,
1706                                              QString::null,
1707                                              tr( "XML-Files (*.xml);;All Files (*)" ));
1708   if ( !fn.isEmpty() )
1709     {
1710       // add ".xml" suffix
1711       QFileInfo fi(fn);
1712       if (!fi.exists() && fi.suffix() != "xml")
1713         fn += ".xml";
1714
1715       DEBTRACE("file loaded : " <<fn.toStdString());
1716       YACS::ENGINE::Proc *proc =0;
1717       
1718       try {
1719          proc = _loader->load(fn.toLatin1());
1720       }
1721       catch (...) {
1722       }
1723       
1724       if (!proc)
1725         {
1726           QMessageBox msgBox(QMessageBox::Critical,
1727                              "Import YACS Schema, native YACS XML format",
1728                              "The file has not the native YACS XML format or is not readable.");
1729           msgBox.exec();
1730           return;
1731         }
1732       YACS::ENGINE::Logger* logger= proc->getLogger("parser");
1733       if(!logger->isEmpty())
1734         {
1735           DEBTRACE(logger->getStr());
1736         }
1737       createContext(proc, fn, "", true);
1738       onRunLoadedSchema();
1739     }
1740 }
1741
1742 void GenericGui::onChooseBatchJob() {
1743   DEBTRACE("GenericGui::onChooseBatchJob");
1744
1745   // Show the Batch Jobs list
1746   if(_BJLdialog) delete _BJLdialog;
1747   _BJLdialog = new BatchJobsListDialog(tr("Select one Batch Job to watch"),this);
1748   _BJLdialog->show();
1749   _BJLdialog->move(300,200);
1750   _BJLdialog->resize(450,200);
1751
1752 }
1753
1754 void GenericGui::onStartResume()
1755 {
1756   DEBTRACE("GenericGui::onStartResume");
1757   if (!QtGuiContext::getQtCurrent()) return;
1758   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1759   QtGuiContext::getQtCurrent()->getGuiExecutor()->startResumeDataflow();
1760 }
1761
1762 void GenericGui::onAbort()
1763 {
1764   DEBTRACE("GenericGui::onAbort");
1765   if (!QtGuiContext::getQtCurrent()) return;
1766   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1767   QtGuiContext::getQtCurrent()->getGuiExecutor()->killDataflow();
1768 }
1769
1770 void GenericGui::onPause()
1771 {
1772   DEBTRACE("GenericGui::onPause");
1773   if (!QtGuiContext::getQtCurrent()) return;
1774   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1775   QtGuiContext::getQtCurrent()->getGuiExecutor()->suspendDataflow();
1776 }
1777
1778 void GenericGui::onReset()
1779 {
1780   DEBTRACE("GenericGui::onReset");
1781   if (!QtGuiContext::getQtCurrent()) return;
1782   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1783   QtGuiContext::getQtCurrent()->getGuiExecutor()->resetDataflow();
1784 }
1785
1786 void GenericGui::onSaveRunState()
1787 {
1788   DEBTRACE("GenericGui::onSaveRunState");
1789   if (!QtGuiContext::getQtCurrent()) return;
1790   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1791   QDateTime curTime = QDateTime::currentDateTime(); 
1792   QFileInfo procName = QtGuiContext::getQtCurrent()->getFileName();
1793   QString stateName = procName.baseName();
1794   DEBTRACE(stateName.toStdString());
1795   stateName += "_state_" + curTime.toString("yyyyMMdd_hhmmss") + ".xml";
1796   DEBTRACE(stateName.toStdString());
1797   stateName = getSaveFileName(stateName);
1798   DEBTRACE(stateName.toStdString());
1799   if (!stateName.isEmpty())
1800     QtGuiContext::getQtCurrent()->getGuiExecutor()->saveState(stateName.toStdString());
1801 }
1802
1803 void GenericGui::onNewEdition()
1804 {
1805   DEBTRACE("GenericGui::onNewEdition");
1806   //   if (!QtGuiContext::getQtCurrent()) return;
1807   //   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1808   //   QtGuiContext::getQtCurrent()->getGuiExecutor()->resetDataflow();
1809 }
1810
1811 void GenericGui::onGetYacsContainerLog()
1812 {
1813   DEBTRACE("GenericGui::onGetYacsContainerLog");
1814   if (!QtGuiContext::getQtCurrent()) return;
1815   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1816   string log = QtGuiContext::getQtCurrent()->getGuiExecutor()->getContainerLog();
1817   ContainerLogViewer *lv = new ContainerLogViewer("YACS Container Log", _parent);
1818   lv->readFile(log);
1819   lv->show();
1820 }
1821
1822 void GenericGui::onGetErrorReport()
1823 {
1824   DEBTRACE("GenericGui::onGetErrorReport");
1825   if (!QtGuiContext::getQtCurrent()) return;
1826   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
1827   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
1828   if (!snode) return;
1829   string log;
1830   if (QtGuiContext::getQtCurrent()->getGuiExecutor())
1831     {
1832       log = QtGuiContext::getQtCurrent()->getGuiExecutor()->getErrorReport(snode->getNode());
1833     }
1834   else
1835     {
1836       log = snode->getNode()->getErrorReport();
1837     }
1838
1839   LogViewer *lv = new LogViewer("Node error report", _parent);
1840   lv->setText(log);
1841   lv->show();
1842 }
1843
1844 void GenericGui::onGetErrorDetails()
1845 {
1846   DEBTRACE("GenericGui::onGetErrorDetails");
1847   if (!QtGuiContext::getQtCurrent()) return;
1848   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
1849   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
1850   if (!snode) return;
1851   string log;
1852   if (QtGuiContext::getQtCurrent()->getGuiExecutor())
1853     {
1854       log = QtGuiContext::getQtCurrent()->getGuiExecutor()->getErrorDetails(snode->getNode());
1855     }
1856   else
1857     {
1858       log = snode->getNode()->getErrorDetails();
1859     }
1860
1861   LogViewer *lv = new LogViewer("Node Error Details", _parent);
1862   lv->setText(log);
1863   lv->show();
1864 }
1865
1866 void GenericGui::onGetContainerLog()
1867 {
1868   DEBTRACE("GenericGui::onGetContainerLog");
1869   if (!QtGuiContext::getQtCurrent()) return;
1870   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1871   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
1872   SubjectElementaryNode *snode = dynamic_cast<SubjectElementaryNode*>(sub);
1873   if (!snode) return;
1874   string log = QtGuiContext::getQtCurrent()->getGuiExecutor()->getContainerLog(snode->getNode());
1875
1876   LogViewer *lv = new LogViewer("Node Container Log", _parent);
1877   if (log.empty())
1878     {
1879       string info = "\n";
1880       if (dynamic_cast<YACS::ENGINE::ServiceNode*>(snode->getNode()))
1881         {
1882           info +="The container log of this node\n";
1883           info += "is not stored in a file and \n";
1884           info += "can't be displayed here, \n";
1885           info += "but you can have a look at \n";
1886           info += "the SALOME standard output,\n";
1887           info += "on your terminal...";
1888         }
1889       else
1890         {
1891           info += "See YACS Container log \n";
1892           info += "(on main proc menu) \n";
1893           info += "for all inline nodes";
1894         }
1895       lv->setText(info);
1896     }
1897   else
1898     lv->readFile(log);
1899   lv->show();
1900 }
1901
1902 void GenericGui::onShutdownProc()
1903 {
1904   DEBTRACE("GenericGui::onShutdownProc");
1905   if (!QtGuiContext::getQtCurrent()) return;
1906   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
1907   QtGuiContext::getQtCurrent()->getGuiExecutor()->shutdownProc();
1908 }
1909
1910 void GenericGui::onEditDataTypes()
1911 {
1912   DEBTRACE("GenericGui::onEditDataTypes");
1913 }
1914
1915 void GenericGui::onCreateDataType()
1916 {
1917   DEBTRACE("GenericGui::onCreateDataType");
1918 }
1919
1920 void GenericGui::onImportDataType()
1921 {
1922   DEBTRACE("GenericGui::onImportDataType");
1923   if (_dwCatalogs) _dwCatalogs->raise();
1924 }
1925
1926 void GenericGui::onSelectComponentInstance()
1927 {
1928   DEBTRACE("GenericGui::onSelectComponentInstance");
1929   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
1930   if (!sub) return;
1931   SubjectComponent *ref = dynamic_cast<SubjectComponent*>(sub);
1932   YASSERT(ref);
1933   YACS::ENGINE::ComponentInstance* compo=ref->getComponent();
1934   QtGuiContext::getQtCurrent()->_mapOfLastComponentInstance[compo->getCompoName()]=compo;
1935 }
1936
1937 void GenericGui::onNewContainer()
1938 {
1939   DEBTRACE("GenericGui::onNewContainer");
1940   _guiEditor->CreateContainer();
1941 }
1942
1943 void GenericGui::onNewSalomeComponent()
1944 {
1945   DEBTRACE("GenericGui::onNewSalomeComponent");
1946   _guiEditor->CreateComponentInstance();
1947 }
1948
1949 void GenericGui::onNewSalomePythonComponent()
1950 {
1951   DEBTRACE("GenericGui::onNewSalomePythonComponent");
1952 }
1953
1954 void GenericGui::onNewCorbaComponent()
1955 {
1956   DEBTRACE("GenericGui::onNewCorbaComponent");
1957 }
1958
1959
1960 void GenericGui::onSalomeServiceNode()
1961 {
1962   DEBTRACE("GenericGui::onSalomeServiceNode");
1963   _guiEditor->CreateNode("SalomeNode");
1964 }
1965
1966 void GenericGui::onServiceInlineNode()
1967 {
1968   DEBTRACE("GenericGui::onServiceInlineNode");
1969   _guiEditor->CreateNode("SalomePythonNode");
1970 }
1971
1972 void GenericGui::onCORBAServiceNode()
1973 {
1974   DEBTRACE("GenericGui::onCORBAServiceNode");
1975   _guiEditor->CreateNode("CORBANode");
1976 }
1977
1978 void GenericGui::onNodeNodeServiceNode()
1979 {
1980   DEBTRACE("GenericGui::onNodeNodeServiceNode");
1981 }
1982
1983 void GenericGui::onCppNode()
1984 {
1985   DEBTRACE("GenericGui::onCppNode");
1986   _guiEditor->CreateNode("CppNode");
1987 }
1988
1989 void GenericGui::onXMLNode()
1990 {
1991   DEBTRACE("GenericGui::onXMLNode");
1992   _guiEditor->CreateNode("XmlNode");
1993 }
1994
1995 void GenericGui::onInDataNode()
1996 {
1997   DEBTRACE("GenericGui::onInDataNode");
1998   _guiEditor->CreateNode("PresetNode");
1999 }
2000
2001 void GenericGui::onOutDataNode()
2002 {
2003   DEBTRACE("GenericGui::onOutDataNode");
2004   _guiEditor->CreateNode("OutNode");
2005 }
2006
2007 void GenericGui::onInStudyNode()
2008 {
2009   DEBTRACE("GenericGui::onInStudyNode");
2010   _guiEditor->CreateNode("StudyInNode");
2011 }
2012
2013 void GenericGui::onOutStudyNode()
2014 {
2015   DEBTRACE("GenericGui::onOutStudyNode");
2016   _guiEditor->CreateNode("StudyOutNode");
2017 }
2018
2019 void GenericGui::onInlineScriptNode()
2020 {
2021   DEBTRACE("GenericGui::onInlineScriptNode");
2022   _guiEditor->CreateNode("PyScript");
2023 }
2024
2025 void GenericGui::onInlineFunctionNode()
2026 {
2027   DEBTRACE("GenericGui::onInlineFunctionNode");
2028   _guiEditor->CreateNode("PyFunction");
2029 }
2030
2031 void GenericGui::onBlockNode()
2032 {
2033   DEBTRACE("GenericGui::onBlockNode");
2034   _guiEditor->CreateBloc();
2035 }
2036
2037 void GenericGui::onFORNode()
2038 {
2039   DEBTRACE("GenericGui::onFORNode");
2040   _guiEditor->CreateForLoop();
2041 }
2042
2043 void GenericGui::onFOREACHNode()
2044 {
2045   DEBTRACE("GenericGui::onFOREACHNode");
2046   createForEachLoop("double");
2047 }
2048
2049 void GenericGui::createForEachLoop(std::string type)
2050 {
2051   DEBTRACE("GenericGui::createForEachLoop");
2052   _guiEditor->CreateForEachLoop(type);
2053 }
2054
2055 void GenericGui::onWHILENode()
2056 {
2057   DEBTRACE("GenericGui::onWHILENode");
2058   _guiEditor->CreateWhileLoop();
2059 }
2060
2061 void GenericGui::onSWITCHNode()
2062 {
2063   DEBTRACE("GenericGui::onSWITCHNode");
2064   _guiEditor->CreateSwitch();
2065 }
2066
2067 void GenericGui::onOptimizerLoop()
2068 {
2069   DEBTRACE("GenericGui::onOptimizerLoop");
2070   _guiEditor->CreateOptimizerLoop();
2071 }
2072
2073 void GenericGui::onNodeFromCatalog()
2074 {
2075   DEBTRACE("GenericGui::onNodeFromCatalog");
2076   if (_dwCatalogs) _dwCatalogs->raise();
2077 }
2078
2079 void GenericGui::onDeleteItem()
2080 {
2081   DEBTRACE("GenericGui::onDeleteItem");
2082   _guiEditor->DeleteSubject();
2083 }
2084
2085 void GenericGui::onCutItem()
2086 {
2087   DEBTRACE("GenericGui::onCutItem");
2088   _guiEditor->CutSubject();
2089 }
2090
2091 void GenericGui::onCopyItem()
2092 {
2093   DEBTRACE("GenericGui::onCopyItem");
2094   _guiEditor->CopySubject();
2095 }
2096
2097 void GenericGui::onPasteItem()
2098 {
2099   DEBTRACE("GenericGui::onPasteItem");
2100   _guiEditor->PasteSubject();
2101 }
2102
2103 void GenericGui::onPutInBloc()
2104 {
2105   _guiEditor->PutSubjectInBloc();
2106 }
2107
2108 void GenericGui::onPutGraphInBloc()
2109 {
2110   DEBTRACE("GenericGui::onPutGraphInBloc");
2111   _guiEditor->PutGraphInBloc();
2112   _guiEditor->arrangeNodes(false);
2113 }
2114
2115 void GenericGui::onPutGraphInForLoop()
2116 {
2117   DEBTRACE("GenericGui::onPutGraphInForLoop");
2118   _guiEditor->PutGraphInNode("ForLoop");
2119 }
2120
2121 void GenericGui::putGraphInForeachLoop(std::string type)
2122 {
2123   DEBTRACE("GenericGui::PutGraphInForeachLoop");
2124   _guiEditor->PutGraphInNode("ForEachLoop_"+type);
2125 }
2126
2127 void GenericGui::onPutGraphInWhileLoop()
2128 {
2129   DEBTRACE("GenericGui::onPutGraphInWhileLoop");
2130   _guiEditor->PutGraphInNode("WhileLoop");
2131 }
2132
2133 void GenericGui::onPutGraphInOptimizerLoop()
2134 {
2135   DEBTRACE("GenericGui::onPutGraphInOptimizerLoop");
2136   _guiEditor->PutGraphInNode("OptimizerLoop");
2137 }
2138
2139 void GenericGui::onArrangeLocalNodes()
2140 {
2141   DEBTRACE("GenericGui::onArrangeLocalNodes");
2142   _guiEditor->arrangeNodes(false);
2143 }
2144
2145 void GenericGui::onArrangeRecurseNodes()
2146 {
2147   DEBTRACE("GenericGui::onArrangeRecurseNodes");
2148   _guiEditor->arrangeNodes(true);
2149 }
2150
2151 void GenericGui::onRebuildLinks()
2152 {
2153   DEBTRACE("GenericGui::onRebuildLinks");
2154   _guiEditor->rebuildLinks();
2155 }
2156
2157 void GenericGui::onZoomToBloc()
2158 {
2159   DEBTRACE("GenericGui::onZoomToBloc");
2160   QtGuiContext::getQtCurrent()->getView()->onZoomToBloc();
2161 }
2162
2163 void GenericGui::onCenterOnNode()
2164 {
2165   DEBTRACE("GenericGui::onCenterOnNode");
2166   QtGuiContext::getQtCurrent()->getView()->onCenterOnNode();
2167 }
2168
2169 void GenericGui::onShrinkExpand() {
2170   DEBTRACE("GenericGui::onShrinkExpand");
2171   _guiEditor->shrinkExpand();
2172 }
2173
2174 void GenericGui::onToggleStraightLinks(bool checked)
2175 {
2176   Scene::_straightLinks = checked;
2177   DEBTRACE("Scene::_straightLinks=" << checked);
2178   if (!QtGuiContext::getQtCurrent())
2179     return;
2180   map<Subject*, SchemaItem*>::const_iterator it = QtGuiContext::getQtCurrent()->_mapOfSchemaItem.begin();
2181   for( ; it != QtGuiContext::getQtCurrent()->_mapOfSchemaItem.end(); ++it)
2182     {
2183       Subject* sub = (*it).first;
2184       sub->update(SWITCHSHAPE, 0, 0);
2185     }
2186 }
2187
2188 void GenericGui::onToggleAutomaticComputeLinks(bool checked)
2189 {
2190   Scene::_autoComputeLinks = checked;
2191   DEBTRACE("Scene::_autoComputeLinks=" << checked);
2192 }
2193
2194 void GenericGui::onToggleSimplifyLinks(bool checked)
2195 {
2196   Scene::_simplifyLinks = checked;
2197   DEBTRACE("Scene::_simplifyLinks=" << checked);
2198 }
2199
2200 void GenericGui::onToggleForce2NodesLinks(bool checked)
2201 {
2202   Scene::_force2NodesLink  = checked;
2203   DEBTRACE("Scene::_force2NodesLink=" << checked);
2204 }
2205
2206 void GenericGui::onToggleAddRowCols(bool checked)
2207 {
2208   Scene::_addRowCols  = checked;
2209   DEBTRACE("Scene::_addRowCols=" << checked);
2210 }
2211
2212 void GenericGui::onSelectReference()
2213 {
2214   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2215   if (!sub) return;
2216   SubjectReference *ref = dynamic_cast<SubjectReference*>(sub);
2217   YASSERT(ref);
2218   SubjectServiceNode *snode = dynamic_cast<SubjectServiceNode*>(ref->getReference());
2219   snode->select(true);
2220 }
2221
2222 void GenericGui::onWhatsThis()
2223 {
2224   DEBTRACE("GenericGui::onWhatsThis");
2225   QWhatsThis::enterWhatsThisMode();
2226 }
2227
2228 void GenericGui::onWithoutStopMode(bool checked)
2229 {
2230   DEBTRACE("GenericGui::onWithoutStopMode " << checked);
2231   if (!QtGuiContext::getQtCurrent()) return;
2232   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
2233   if (checked) QtGuiContext::getQtCurrent()->getGuiExecutor()->setContinueMode();
2234 }
2235
2236 void GenericGui::onBreakpointsMode(bool checked)
2237 {
2238   DEBTRACE("GenericGui::onWithoutStopMode " << checked);
2239   if (!QtGuiContext::getQtCurrent()) return;
2240   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
2241   if (checked) QtGuiContext::getQtCurrent()->getGuiExecutor()->setBreakpointMode();
2242 }
2243
2244 void GenericGui::onStepByStepMode(bool checked)
2245 {
2246   DEBTRACE("GenericGui::onWithoutStopMode " << checked);
2247   if (!QtGuiContext::getQtCurrent()) return;
2248   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
2249   if (checked) QtGuiContext::getQtCurrent()->getGuiExecutor()->setStepByStepMode();
2250 }
2251
2252 void GenericGui::onToggleStopOnError(bool checked)
2253 {
2254   DEBTRACE("GenericGui::onToggleStopOnError " << checked);
2255   if (!QtGuiContext::getQtCurrent()) return;
2256   if (!QtGuiContext::getQtCurrent()->getGuiExecutor()) return;
2257   if(checked)
2258     QtGuiContext::getQtCurrent()->getGuiExecutor()->setStopOnError(false);
2259   else
2260     QtGuiContext::getQtCurrent()->getGuiExecutor()->unsetStopOnError();
2261 }
2262
2263 void GenericGui::onToggleSceneItemVisible(bool checked)
2264 {
2265   DEBTRACE("GenericGui::onToggleSceneItemVisible " << checked);
2266   if (!QtGuiContext::getQtCurrent()) return;
2267   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2268   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
2269   if (!snode) return;
2270   DEBTRACE("---");
2271   if (!QtGuiContext::getQtCurrent()->_mapOfSceneItem.count(sub)) return;
2272   DEBTRACE("---");
2273   SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2274   item->setVisible(checked);
2275 }
2276
2277 void GenericGui::displayLinks(bool isShown)
2278 {
2279   if (!QtGuiContext::getQtCurrent()) return;
2280   map<pair<YACS::ENGINE::OutPort*, YACS::ENGINE::InPort*>,YACS::HMI::SubjectLink*>::const_iterator it;
2281   for (it = QtGuiContext::getQtCurrent()->_mapOfSubjectLink.begin();
2282        it != QtGuiContext::getQtCurrent()->_mapOfSubjectLink.end();
2283        ++it)
2284     {
2285       YACS::HMI::SubjectLink* sub = (*it).second;
2286       if (!sub) continue;
2287       SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2288       item->setVisible(isShown);
2289     }
2290 }
2291
2292 void GenericGui::displayControlLinks(bool isShown)
2293 {
2294   if (!QtGuiContext::getQtCurrent()) return;
2295   map<pair<YACS::ENGINE::Node*, YACS::ENGINE::Node*>,YACS::HMI::SubjectControlLink*>::const_iterator it;
2296   for (it = QtGuiContext::getQtCurrent()->_mapOfSubjectControlLink.begin();
2297        it != QtGuiContext::getQtCurrent()->_mapOfSubjectControlLink.end();
2298        ++it)
2299     {
2300       YACS::HMI::SubjectControlLink* sub = (*it).second;
2301       if (!sub) continue;
2302       SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2303       item->setVisible(isShown);
2304     }
2305 }
2306
2307 void GenericGui::displayPortLinks(bool isShown)
2308 {
2309   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2310   DEBTRACE("displayPortLinks, subject : " << sub->getName());
2311   SubjectDataPort *sport = dynamic_cast<SubjectDataPort*>(sub);
2312   if (sport)
2313     {
2314       DEBTRACE("dataPort : " << sport->getName());
2315       list<SubjectLink*> linkList = sport->getListOfSubjectLink();
2316       list<SubjectLink*>::const_iterator it = linkList.begin();
2317       for( ; it != linkList.end(); ++it)
2318         {
2319           YACS::HMI::SubjectLink* sub = (*it);
2320           if (!sub) continue;
2321           SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2322           item->setVisible(isShown);
2323         }
2324       return;
2325     }
2326   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
2327   if (snode)
2328     {
2329       DEBTRACE("Node : " << snode->getName());
2330       list<SubjectControlLink*> linkList = snode->getSubjectControlLinks();
2331       list<SubjectControlLink*>::const_iterator it = linkList.begin();
2332       for( ; it != linkList.end(); ++it)
2333         {
2334           YACS::HMI::SubjectControlLink* sub = (*it);
2335           if (!sub) continue;
2336           SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2337           item->setVisible(isShown);
2338         }
2339       return;
2340     }
2341 }
2342
2343 void GenericGui::displayALink(bool isShown)
2344 {
2345   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2346   if (! QtGuiContext::getQtCurrent()->_mapOfSceneItem.count(sub)) return;
2347   SceneItem *item = QtGuiContext::getQtCurrent()->_mapOfSceneItem[sub];
2348   item->setVisible(isShown);
2349 }
2350
2351 void GenericGui::onShowAllLinks()
2352 {
2353   DEBTRACE("GenericGui::onShowAllLinks");
2354   displayLinks(true);
2355   displayControlLinks(true);
2356 }
2357
2358 void GenericGui::onHideAllLinks()
2359 {
2360   DEBTRACE("GenericGui::onHideAllLinks");
2361   displayLinks(false);
2362   displayControlLinks(false);
2363 }
2364
2365 void GenericGui::onShowOnlyPortLinks()
2366 {
2367   DEBTRACE("GenericGui::onShowOnlyPortLinks");
2368   onHideAllLinks();
2369   displayPortLinks(true);
2370 }
2371
2372 void GenericGui::onShowPortLinks()
2373 {
2374   DEBTRACE("GenericGui::onShowPortLinks");
2375   displayPortLinks(true);
2376 }
2377
2378 void GenericGui::onHidePortLinks()
2379 {
2380   DEBTRACE("GenericGui::onHidePortLinks");
2381   displayPortLinks(false);
2382 }
2383
2384 void GenericGui::onEmphasisPortLinks()
2385 {
2386   DEBTRACE("GenericGui::onEmphasisPortLinks");
2387   if (!QtGuiContext::getQtCurrent()) return;
2388   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2389   DEBTRACE("EmphasizePortLinks, subject : " << sub->getName());
2390   if (!sub)
2391     return;
2392
2393   SubjectDataPort *sport = dynamic_cast<SubjectDataPort*>(sub);
2394   if (sport)
2395     {
2396       emphasizePortLink(sport, true);
2397       return;
2398     }
2399
2400   // --- if a Node, explore all data ports
2401
2402   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
2403   if (snode)
2404     {
2405       DEBTRACE("Node : " << snode->getName());
2406       {
2407         list<SubjectInputPort*> linkList = snode->getSubjectInputPorts();
2408         list<SubjectInputPort*>::const_iterator it = linkList.begin();
2409         for( ; it != linkList.end(); ++it)
2410           {
2411             YACS::HMI::SubjectInputPort* sub = (*it);
2412             if (!sub) continue;
2413             emphasizePortLink(sub, true);
2414           }
2415       }
2416       {
2417         list<SubjectOutputPort*> linkList = snode->getSubjectOutputPorts();
2418         list<SubjectOutputPort*>::const_iterator it = linkList.begin();
2419         for( ; it != linkList.end(); ++it)
2420           {
2421             YACS::HMI::SubjectOutputPort* sub = (*it);
2422             if (!sub) continue;
2423             emphasizePortLink(sub, true);
2424           }
2425       }
2426       return;
2427     }
2428 }
2429
2430 void GenericGui::onShowOnlyCtrlLinks()
2431 {
2432   DEBTRACE("GenericGui::onShowOnlyCtrlLinks");
2433   onHideAllLinks();
2434   displayPortLinks(true);
2435 }
2436
2437 void GenericGui::onShowCtrlLinks()
2438 {
2439   DEBTRACE("GenericGui::onShowCtrlLinks");
2440   displayPortLinks(true);
2441 }
2442
2443 void GenericGui::onHideCtrlLinks()
2444 {
2445   DEBTRACE("GenericGui::onHideCtrlLinks");
2446   displayPortLinks(false);
2447 }
2448
2449 void GenericGui::onEmphasisCtrlLinks()
2450 {
2451   DEBTRACE("GenericGui::onEmphasisCtrlLinks");
2452   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2453   DEBTRACE("Emphasize Ctrl Links, subject : " << sub->getName());
2454   if (!sub)
2455     return;
2456   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
2457   if (snode)
2458     {
2459       DEBTRACE("Node : " << snode->getName());
2460       list<SubjectControlLink*> linkList = snode->getSubjectControlLinks();
2461       list<SubjectControlLink*>::const_iterator it = linkList.begin();
2462       for( ; it != linkList.end(); ++it)
2463         {
2464           YACS::HMI::SubjectControlLink* sub = (*it);
2465           if (!sub) continue;
2466           sub->update(EMPHASIZE, true, sub);
2467           Subject *sin = sub->getSubjectInNode();
2468           Subject *sout = sub->getSubjectOutNode();
2469           sin->update(EMPHASIZE, true, sub);
2470           sout->update(EMPHASIZE, true, sub);
2471         }
2472       return;
2473     }
2474 }
2475
2476 void GenericGui::onShowOnlyLink()
2477 {
2478   DEBTRACE("GenericGui::onShowOnlyLink");
2479   onHideAllLinks();
2480   displayALink(true);
2481 }
2482
2483 void GenericGui::onShowLink()
2484 {
2485   DEBTRACE("GenericGui::onShowLink");
2486   displayALink(true);
2487 }
2488
2489 void GenericGui::onHideLink()
2490 {
2491   DEBTRACE("GenericGui::onHideLink");
2492   displayALink(false);
2493 }
2494
2495 void GenericGui::onEmphasisLink()
2496 {
2497   DEBTRACE("GenericGui::onEmphasisLink");
2498   Subject *sub = QtGuiContext::getQtCurrent()->getSelectedSubject();
2499   if (!sub)
2500     return;
2501   sub->update(EMPHASIZE, true, sub);
2502 }
2503
2504 void GenericGui::onDeEmphasizeAll()
2505 {
2506   DEBTRACE("GenericGui::onDeEmphasizeAll");
2507   map<Subject*, SchemaItem*>::const_iterator it = QtGuiContext::getQtCurrent()->_mapOfSchemaItem.begin();
2508   for( ; it != QtGuiContext::getQtCurrent()->_mapOfSchemaItem.end(); ++it)
2509     {
2510       Subject* sub = (*it).first;
2511       sub->update(EMPHASIZE, false, sub);
2512     }
2513 }
2514
2515 void GenericGui::onUndo()
2516 {
2517   DEBTRACE("GenericGui::onUndo");
2518   if (QtGuiContext::getQtCurrent()->_setOfModifiedSubjects.empty())
2519     QtGuiContext::getQtCurrent()->getInvoc()->undo();
2520   else Message("undo not possible when there are local modifications not confirmed");
2521 }
2522
2523 void GenericGui::onRedo()
2524 {
2525   DEBTRACE("GenericGui::onRedo");
2526   if (QtGuiContext::getQtCurrent()->_setOfModifiedSubjects.empty())
2527     QtGuiContext::getQtCurrent()->getInvoc()->redo();
2528   else Message("redo not possible when there are local modifications not confirmed");
2529 }
2530
2531 void GenericGui::onShowUndo()
2532 {
2533   _guiEditor->showUndo(_parent);
2534 }
2535
2536 void GenericGui::onShowRedo()
2537 {
2538   _guiEditor->showRedo(_parent);
2539 }
2540
2541 void GenericGui::onCleanOnExit()
2542 {
2543   DEBTRACE("GenericGui::onCleanOnExit");
2544   int studyId = _wrapper->activeStudyId();
2545   map<QWidget*, YACS::HMI::QtGuiContext*> mapViewContextCopy = _mapViewContext;
2546   map<QWidget*, YACS::HMI::QtGuiContext*>::iterator it = mapViewContextCopy.begin();
2547   for (; it != mapViewContextCopy.end(); ++it)
2548     {
2549       closeContext((*it).first, true);
2550     }
2551 }
2552
2553 void GenericGui::emphasizePortLink(YACS::HMI::SubjectDataPort* sub, bool emphasize)
2554 {
2555   DEBTRACE("dataPort : " << sub->getName());
2556   list<SubjectLink*> linkList = sub->getListOfSubjectLink();
2557   list<SubjectLink*>::const_iterator it = linkList.begin();
2558   for( ; it != linkList.end(); ++it)
2559     {
2560       YACS::HMI::SubjectLink* subli = (*it);
2561       if (!subli) continue;
2562       subli->update(EMPHASIZE, emphasize, sub);
2563       Subject *sin = subli->getSubjectInPort();
2564       Subject *sout = subli->getSubjectOutPort();
2565       sin->update(EMPHASIZE, emphasize, sub);
2566       sout->update(EMPHASIZE, emphasize, sub);
2567     }
2568 }
2569
2570 void GenericGui::onHelpContextModule( const QString& theComponentName, const QString& theFileName, const QString& theContext)
2571 {
2572   _wrapper->onHelpContextModule(theComponentName,theFileName,theContext);
2573 }