Salome HOME
Merge with OCC_development_01
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI.cxx
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SUPERVGUI.cxx
25 //  Author : Francis KLOSS
26 //  Module : SUPERV
27
28 using namespace std;
29 #include "SUPERVGUI.h"
30
31 #include "QAD_Resource.h"
32 #include "QAD_FileDlg.h"
33 #include "QAD_Application.h"
34 #include "QAD_StudyFrame.h"
35 #include "QAD_RightFrame.h"
36 #include "QAD_LeftFrame.h"
37 #include "QAD_ViewFrame.h"
38 #include "QAD_ObjectBrowser.h"
39 #include "QAD_ObjectBrowserItem.h"
40 #include "SALOME_Selection.h"
41 #include "SALOMEGUI_NameDlg.h"            
42 #include "Utils_ORB_INIT.hxx"
43 #include "SALOME_ListIteratorOfListIO.hxx"
44 #include "SALOME_InteractiveObject.hxx"
45 #include <qapplication.h>
46 #include "SALOMEGUI_ImportOperation.h"
47
48 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
49
50
51 int SUPERVGUI::factory = 0;
52 SUPERVGUI Supervision("");
53
54
55 SUPERVGUI::SUPERVGUI(const QString& theName, QObject* theParent)
56      : SALOMEGUI( theName, theParent ),
57        desktop(0),
58        study(0),
59        browser(0)
60   //info(0)
61 {
62     Trace("SUPERVGUI::SUPERVGUI")
63     if (factory==0) {
64         factory = 1;
65         MESSAGE("SUPERVGUI Info : factory build");
66     } else {
67         MESSAGE("SUPERVGUI Error : another call to factory constructor");
68     };
69 }
70
71 SUPERVGUI::~SUPERVGUI() {
72     Trace("SUPERVGUI::~SUPERVGUI")
73     if (factory==1) {
74         factory = 0;
75         //if (!engine->_is_nil()) CORBA::release(engine);         
76         //info->close();
77         if (browser) {
78           if (browser->isVisible())
79             browser->close();
80           delete browser;
81         }
82         MESSAGE("SUPERVGUI Info : factory destroy");
83     } else {
84         MESSAGE("SUPERVGUI Error : another call to factory destructor");
85     };
86 }
87
88 void SUPERVGUI::init(QAD_Desktop* parent) {
89     Trace("SUPERVGUI::init")
90     if (desktop==0) {
91         desktop = parent;
92         study = desktop->getActiveStudy();
93         SALOME_NamingService* namingService = desktop->getNameService();
94         loadEngine(namingService);
95         browser = new SUPERVGUI_Service(namingService);
96         //info    = new SUPERVGUI_Information();
97         cursor  = desktop->cursor();
98         connect(desktop->getMainFrame(), SIGNAL(windowActivated(QWidget*)), this, SLOT(setMain(QWidget*)));
99
100         int anId = 300;
101         parent->menuBar()->changeItem(anId,parent->getComponentUserName("SUPERV"));
102         
103     };
104 }
105
106
107 QAD_StudyFrame* SUPERVGUI::createGraph() {
108   QAD_StudyFrame* aStudyFrame = study->newWindow3d(study->getNextStudyFrameName(),
109                                                    VIEW_GRAPHSUPERV, false);
110   if (aStudyFrame) {
111     connect(study, 
112             SIGNAL(supervStudyFrameClosing(QAD_ViewFrame*)), 
113             &Supervision, 
114             SLOT(onGraphClosed(QAD_ViewFrame*)));
115   }
116   return aStudyFrame;
117 }
118
119
120
121 void SUPERVGUI::loadEngine(SALOME_NamingService* namingService) {
122     Trace("SUPERVGUI::loadEngine")
123     SALOME_LifeCycleCORBA LCC(namingService);
124     Engines::Component_var objComponent = LCC.FindOrLoad_Component("SuperVisionContainer", "SUPERV");
125     if (CORBA::is_nil(objComponent)) {
126         QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_CANT_LOAD_SUPERV"));
127         return;
128     };
129
130     SUPERV::SuperG_var aSuperVisionComponent;
131     aSuperVisionComponent = SUPERV::SuperG::_narrow(objComponent);
132     if (CORBA::is_nil(aSuperVisionComponent)) {
133         QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_CANT_NARROW_SUPERV"));
134         return;
135     };
136
137     //    engine  = new SUPERV::SuperG_var;
138     engine = aSuperVisionComponent;
139 }
140 /*
141 bool SUPERVGUI::information(SUPERV_CNode node, bool isReadOnly) {
142     Trace("SUPERVGUI::information")
143     return(info->run(node, isReadOnly));
144 }
145 */
146 void SUPERVGUI::putInfo(const char* mess) {
147     Trace("SUPERVGUI::putInfo")
148     desktop->putInfo(mess);
149 }
150
151 QAD_Desktop* SUPERVGUI::getDesktop() {
152     Trace("SUPERVGUI::getDesktop")
153     return(desktop);
154 }
155
156 SUPERV_Engine SUPERVGUI::getEngine() {
157     Trace("SUPERVGUI::getEngine")
158     return(engine);
159 }
160
161 SUPERVGUI_Service* SUPERVGUI::getBrowser() {
162     Trace("SUPERVGUI::getBrowser")
163     return(browser);
164 }
165
166 QCursor SUPERVGUI::getCursor() {
167     Trace("SUPERVGUI::getCursor")
168     return(cursor);
169 }
170
171 SUPERVGUI_Main* SUPERVGUI::getMain() {
172     Trace("SUPERVGUI::getMain")
173     return main;
174 }
175
176
177 void SUPERVGUI::registerGraph(QString theName, SUPERVGUI_Main* theGraph){
178   theGraph->setHashCode(theName);
179   myGraphList.append(theGraph);
180 }
181
182
183 void SUPERVGUI::unregisterGraph(SUPERVGUI_Main* theGraph) {
184   SUPERVGUI_Main* aMain;
185   for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
186     if (aMain == theGraph)
187       myGraphList.remove(aMain);
188   }
189 }
190
191
192 bool SUPERVGUI::isContains(QAD_Study* theStudy, const QString theKey) {
193   SUPERVGUI_Main* aMain;
194   for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
195     if ((aMain->getStudy() == theStudy) && (aMain->getHashCode() == theKey))
196       return true;
197   }
198   return false;
199 }
200
201
202 void SUPERVGUI::onGraphClosed(QAD_ViewFrame* theViewFrame) {
203   if(SUPERVGraph_ViewFrame* supervFrame = dynamic_cast<SUPERVGraph_ViewFrame*>(theViewFrame)){
204     disconnect(study, 0 , this, 0);
205     SUPERVGraph_View* view = supervFrame->getViewWidget();
206     SUPERVGUI_Main* aGraph = dynamic_cast<SUPERVGUI_Main*>(view);
207     if (aGraph) {
208       unregisterGraph(aGraph);
209       SUPERV_Graph aDataFlow = aGraph->getDataflow();
210       if ( !SUPERV_isNull( aDataFlow ) ) {
211         if ( aDataFlow->IsExecuting() ) {
212           const int aMsgResult = QMessageBox::warning(QAD_Application::getDesktop(),
213                                                       tr("WARNING"), 
214                                                       tr("MSG_DF_RUNNING"), 
215                                                       tr("MSG_DF_EXECUTION"), 
216                                                       tr("MSG_DF_KILL"));
217           if ( aMsgResult == 1 ) {
218             // KILL EXECUTION
219             if ( aDataFlow->Kill() ) {
220               // Kill() sends KillEvent and KillState to SUPERVGUI_Thread
221               // while sets myIsActive flag to false when it receives such event/state
222               // after myIsActive is false it calls QThread::exit() to terminate.
223
224               // why while() { qApp->processEvents() } ?
225               // because: SUPERVGUI_Thread::run() receives events, and calls myMain->execute()
226               // method using SALOME_Event paradigm, ProcessVoidEvent() function - 
227               // it puts this event to the main application event loop, in which we are being now.
228               // So if we block main GUI application thread (by calling aGraph->getMyThread()->wait() here)
229               // then we will have a deadlock of 2 threads waiting for one another 
230               while (aGraph->getMyThread()->running()) 
231                 qApp->processEvents();
232             }
233           }
234           else { // BACKGROUND EXECUTION
235             emit KillMainThread(true); // set SUPERVGUI_Thread::myIsActive to false
236             while ( aGraph->getMyThread()->running() )
237               qApp->processEvents();
238           }
239         }
240         else { // EXECUTION IS FINISHED, JUST DESTROY THE SUPERVGUI_Thread object and return.
241           emit KillMainThread(true);
242           while ( aGraph->getMyThread()->running() ) 
243             qApp->processEvents();
244         }
245       }
246     }
247   }
248 }
249
250 void SUPERVGUI::setMain(QWidget* w) {
251   main = 0;
252   QAD_StudyFrame* aStudyFrame = dynamic_cast<QAD_StudyFrame*>(w);
253   if (!aStudyFrame) return;
254
255   study = aStudyFrame->getStudy();
256   if (!study) return;
257
258   QAD_ViewFrame* viewFrame = aStudyFrame->getRightFrame()->getViewFrame();
259   if(SUPERVGraph_ViewFrame* supervFrame = dynamic_cast<SUPERVGraph_ViewFrame*>(viewFrame)){
260     SUPERVGraph_View* view = supervFrame->getViewWidget();
261     if (view) {
262       main = dynamic_cast<SUPERVGUI_Main*>(view);
263       connect(&Supervision, SIGNAL(KillMainThread(bool)), main->getMyThread(), SLOT(KillThread(bool)));
264     }
265   }
266   Trace("SUPERVGUI::setMain - main: "<<main);
267 }
268
269
270 void SUPERVGUI::importDataflow() {
271   Trace("SUPERVGUI::importDataflow");
272   QString f = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
273                                        "",
274                                        "*.xml",
275                                        tr("MSG_IMPORT"),
276                                        true);
277   
278   if (!f.isEmpty()) {
279     if (isContains(study, f)) {
280       if (QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), 
281                                tr("MSG_GRAPH_DISPLAYED").arg(f), 
282                                QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
283         return;
284     }
285
286     SUPERV_Graph aGraph = engine->StreamGraphE(f);
287     //QFileInfo aFile(f);
288     //aGraph->SetName(aFile.baseName());
289     if (SUPERV_isNull(aGraph)) {
290       QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_BAD_FILE").arg(f));
291       return;
292     }
293
294     QAD_StudyFrame* aStudyFrame = createGraph();
295     SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
296       (aStudyFrame->getRightFrame()->getViewFrame());
297     if(aViewFrame) {
298       main = new SUPERVGUI_Main(aViewFrame, desktop, aGraph);
299       registerGraph(f, main);
300       study->showFrame(aStudyFrame);
301     }   
302   }
303 }
304
305 void SUPERVGUI::displayDataflow() {
306     Trace("SUPERVGUI::displayDataflow");
307     QAD_ObjectBrowser* aBrowser = ((QAD_StudyFrame*)(desktop->getMainFrame()->activeWindow()))->getLeftFrame()->getObjectBrowser();
308     SUPERV_Graph aDataFlow;
309     QString aIORName;
310
311     QAD_ObjectBrowserItem* item = (QAD_ObjectBrowserItem*)(aBrowser->getListView()->currentItem());
312     SALOMEDS::SObject_var aObj = desktop->getActiveStudy()->getStudyDocument()->FindObjectID(item->getEntry().latin1());
313     SALOMEDS::GenericAttribute_var anAttr;
314     if (aObj->FindAttribute(anAttr, "AttributeIOR")) {
315       SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
316       Standard_CString ior = anIOR->Value();
317       aIORName = ior;
318       if (isContains(study, aIORName)) {
319         if (QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), 
320                                  tr("MSG_GRAPH_DISPLAYED").arg(""), 
321                                  QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
322           return;
323       }
324       //aDataFlow = engine->getStreamGraph(ior);
325       aDataFlow = engine->getGraph(ior);
326       if (SUPERV_isNull(aDataFlow)) {
327         QMessageBox::warning(0, tr("ERROR"), tr("MSG_ACCESS_BAD_IOR"));
328         return;
329       }
330       /* ASV: 20.10.04: fix for 6896
331       if (aDataFlow->IsStreamGraph()) {
332         SUPERV_StreamGraph aDataFlowStream = aDataFlow->ToStreamGraph();
333         if (SUPERV_isNull(aDataFlowStream)) {
334           QMessageBox::warning(0, tr("ERROR"), tr("MSG_ACCESS_BAD_IOR"));
335           return;
336         }
337         aDataFlow = aDataFlowStream;
338       }
339       */
340     }
341     QAD_StudyFrame* aStudyFrame = createGraph();
342     SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
343       (aStudyFrame->getRightFrame()->getViewFrame());
344     if(aViewFrame) {
345       main = new SUPERVGUI_Main(aViewFrame, desktop, aDataFlow);
346       main->setAsFromStudy(true);
347       registerGraph(aIORName, main);
348       study->showFrame(aStudyFrame);
349     }
350 }
351
352
353 void SUPERVGUI::renameDataflow() {
354   SALOME_Selection* Sel = SALOME_Selection::Selection( study->getSelection() );
355   SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
356   for ( ; It.More(); It.Next() ) {
357     Handle(SALOME_InteractiveObject) IObject = It.Value();
358     
359     SALOMEDS::Study_var aStudy = study->getStudyDocument();
360     SALOMEDS::SObject_var obj = aStudy->FindObjectID( IObject->getEntry() );
361     SALOMEDS::GenericAttribute_var anAttr;
362     SALOMEDS::AttributeName_var    aName;
363     if ( !obj->_is_nil() ) {
364       if (obj->FindAttribute(anAttr, "AttributeName")) {
365         aName = SALOMEDS::AttributeName::_narrow(anAttr);
366         QString nm = QString( aName->Value() );
367         nm = SALOMEGUI_NameDlg::getName( QAD_Application::getDesktop(), nm );
368         if ( !nm.isEmpty() ) {
369           // sak : 24.11.04 : fix for PAL6898 : if rename fails (study locked), 
370           // a message box is displayed, and cursor is "wait cursor".  We think that "wait cursor"
371           // is not neccessary here, because the rename operation is fast.
372           //QApplication::setOverrideCursor( Qt::waitCursor );
373           study->renameIObject( IObject, nm );
374           //QApplication::restoreOverrideCursor();
375         }
376       }
377     }
378   }
379 }
380
381
382 void SUPERVGUI::exportDataflow() {
383     Trace("SUPERVGUI::exportDataflow")
384     if (main==0) {
385         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_EXPORT"));
386     } else {
387       QString f = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
388                                            "",
389                                            "*.xml",
390                                            tr("TTL_EXPORT_DATAFLOW"),
391                                            false);
392       if (!f.isEmpty()) {
393         if (main->exportDataflow(f)) {
394           unregisterGraph(main);
395           registerGraph(f, main);
396         }
397       }
398     }
399 }
400
401 void SUPERVGUI::newDataflow() {
402     Trace("SUPERVGUI::editDataflow");
403
404     //asv 20.10.04: removed 2 SUPERVGUI_Main constructors.  there is only ONE way 
405     //to create a Main object now: with a non-null DataFlow as a 3d parameter
406     //1. create a Graph object
407     SUPERV_Graph aNewDataFlow = engine->StreamGraph( MAIN_NEW );
408     if (SUPERV_isNull( aNewDataFlow )) {
409       QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_CANT_CREATE_DF"));
410       return;
411     }
412     //2. create a ViewFrame object
413     QAD_StudyFrame* aStudyFrame = createGraph();
414     SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
415       (aStudyFrame->getRightFrame()->getViewFrame());
416     if(aViewFrame){
417       //3. bind Graph and ViewFrame -> create Main
418       main = new SUPERVGUI_Main(aViewFrame, desktop, aNewDataFlow );
419       main->addNode();
420       study->showFrame(aStudyFrame);
421     }
422 }
423
424 void SUPERVGUI::modifyDataflow() {
425     Trace("SUPERVGUI::modifyDataflow")
426     QString f = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
427                                          "",
428                                          "*.xml",
429                                          tr("Modify Dataflow"),
430                                          true);
431     if (!f.isEmpty()){
432       if (isContains(study, f)) {
433       if (QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), 
434                                tr("MSG_GRAPH_DISPLAYED").arg(f), 
435                                QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
436         return;
437       }
438       
439       SUPERV_Graph aGraph = engine->StreamGraph(f);
440       //QFile aFile(f);
441       //aGraph->SetName(aFile.name());
442       if (SUPERV_isNull(aGraph)) {
443         QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_BAD_FILE").arg(f));
444         return;
445       }
446
447       QAD_StudyFrame* aStudyFrame = createGraph();
448       SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
449         (aStudyFrame->getRightFrame()->getViewFrame());
450       if(aViewFrame) {
451         main = new SUPERVGUI_Main(aViewFrame, desktop, aGraph);
452         registerGraph(f, main);
453         study->showFrame(aStudyFrame);
454       }
455     }
456 }
457
458 void SUPERVGUI::reloadDataflow() {
459     Trace("SUPERVGUI::reloadDataflow")
460     if (main==0) {
461         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RELOAD"));
462     } else {
463         main->sync();
464     };
465 }
466
467 void SUPERVGUI::runDataflow() {
468     Trace("SUPERVGUI::runDataflow")
469     if (main==0) {
470         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
471     } else {
472         main->run();
473     };
474 }
475
476 void SUPERVGUI::stepByStep() {
477     Trace("SUPERVGUI::stepByStep")
478     if (main==0) {
479         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
480     } else {
481         main->startExecute();
482     }
483 }
484
485 void SUPERVGUI::killDataflow() {
486     Trace("SUPERVGUI::killDataflow")
487     if (main==0) {
488         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_KILL"));
489     } else {
490         main->kill();
491     };
492 }
493
494 void SUPERVGUI::suspendResumeDataflow() {
495     Trace("SUPERVGUI::suspendResumeDataflow")
496     if (main==0) {
497         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_SUSPEND"));
498     } else {
499         main->suspendResume();
500     };
501 }
502
503 void SUPERVGUI::showComponents() {
504   Trace("SUPERVGUI::showComponents");
505   if (main==0) {
506     QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_ADD"));
507   } else {
508     if (main->isEditable())
509       main->addNode();
510     else
511       QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOTEDITABLE"));
512   }
513 }
514
515
516 bool SUPERVGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext, const QString& theParent, const QString& theObject) {
517   Trace("SUPERVGUI::customPopup");
518   Supervision.init(parent);
519   if(popup->count() > 3) {
520     // Temporary code: is to be deleted soon
521     popup->removeItem(QAD_Display_Popup_ID);
522     popup->removeItem(QAD_DisplayOnly_Popup_ID);
523     popup->removeItem(QAD_Erase_Popup_ID);
524     int id = popup->idAt(popup->count() - 1);
525     if (id < 0 && id != -1) popup->removeItem(id); // separator
526     // Temporary code end
527   }
528     SALOME_Selection* Sel = SALOME_Selection::Selection(study->getSelection() );
529     if ((Sel==NULL) || (Sel->IObjectCount() == 0)) return false;
530
531     if (Sel->IObjectCount() == 1) {
532       Handle(SALOME_InteractiveObject) anIObj = Sel->firstIObject();
533
534       // insert SUPERV-specific popup items here
535
536       bool isDataflow, ownObj;
537       whatIsSelected(anIObj, ownObj, isDataflow);
538       
539       if (isDataflow) {
540         popup->insertItem(tr( "MSG_RENAME" ), this, SLOT(renameDataflow()));
541         popup->insertItem("Display", this, SLOT(displayDataflow()));
542         popup->insertSeparator();
543       }
544       if (ownObj)
545         popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
546     }
547     if (Sel->IObjectCount() > 1) {
548       int aIObjCount = 0;
549       SALOME_ListIteratorOfListIO It_forCheckOwner(Sel->StoredIObjects());
550       for(;It_forCheckOwner.More();It_forCheckOwner.Next()) {
551         Handle(SALOME_InteractiveObject) anIObj = It_forCheckOwner.Value();
552         bool aIsOwner, aIsDataflow;
553         whatIsSelected(anIObj, aIsOwner, aIsDataflow);
554         
555         if (aIsOwner) aIObjCount++;
556       }
557       if (aIObjCount == Sel->IObjectCount())  //all selected objects belong to Supervision
558         popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
559     }
560   return(true);
561 }
562
563  
564
565 /** Returns:
566     theIsOwner = true if Selected object belongs to Suipervision.
567     theIsDataflow = true if Selected object is Dataflow
568 */
569 void SUPERVGUI::whatIsSelected(const Handle(SALOME_InteractiveObject)& theObj, bool& theIsOwner, bool& theIsDataflow) {
570   theIsOwner = false;
571   theIsDataflow = false;
572
573   if (theObj.IsNull()) return;
574   
575   SALOMEDS::Study_var aStudy = study->getStudyDocument();
576   SALOMEDS::SObject_var  obj = aStudy->FindObjectID( theObj->getEntry() );
577
578   if ( !obj->_is_nil() ) {
579     SALOMEDS::SComponent_var comp = obj->GetFatherComponent();
580     if ( !comp->_is_nil() ) {
581       SALOMEDS::GenericAttribute_var anAttr;
582       SALOMEDS::AttributeName_var    aName;
583       if (comp->FindAttribute(anAttr, "AttributeName")) {
584         aName = SALOMEDS::AttributeName::_narrow(anAttr);
585         QString compName(aName->Value());
586         //if (compName.compare(STUDY_SUPERVISION) == 0) {
587         if (compName.compare(QAD_Application::getDesktop()->getComponentUserName("SUPERV")) == 0) {
588           SALOMEDS::GenericAttribute_var anAttr;
589           if (obj->FindAttribute(anAttr, "AttributeIOR")) {
590             SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
591             //SUPERV_Graph aDataFlow = engine->getStreamGraph(anIOR->Value());
592             SUPERV_Graph aDataFlow = engine->getGraph(anIOR->Value());
593             if (!SUPERV_isNull(aDataFlow)) {
594               if (aDataFlow->IsStreamGraph()) {
595                 if (!SUPERV_isNull(aDataFlow->ToStreamGraph()))
596                   theIsDataflow = true;
597               }
598               else
599                 theIsDataflow = true;
600             }
601           }
602           CORBA::String_var anObjectID = obj->GetID();
603           CORBA::String_var aComponentID = comp->GetID();
604           if (strcmp(anObjectID, aComponentID)) theIsOwner = true;          
605         }
606       }
607     }
608   }
609 }
610
611
612
613 void SUPERVGUI::deleteObject() {
614   SALOME_Selection* Sel = SALOME_Selection::Selection(study->getSelection() );
615   if ((Sel==NULL) || (Sel->IObjectCount() == 0)) return;
616
617   // sak : 24.11.04 : fix for PAL6899 : if the study is locked - warn the user and return.
618   SALOMEDS::Study_var aStudy = study->getStudyDocument();
619   if ( aStudy->GetProperties()->IsLocked() ) {
620     QMessageBox::warning(QAD_Application::getDesktop(), tr("WRN_WARNING"), tr("WRN_STUDY_LOCKED"));
621     return;
622   }
623
624   // sak : 24.11.04 : fix for PAL6901 : Incorrect deletion of the objects : pressing ESC button
625   // emitted "YES" button click, now it is corrected, and treated as "NO" button click.
626   if (QMessageBox::warning(QAD_Application::getDesktop(),
627                            tr("WARNING"),
628                            tr("MSG_ASK_DELETE"),
629                            QMessageBox::No, QMessageBox::Yes) != QMessageBox::Yes)
630     return;
631    
632   SALOME_ListIteratorOfListIO It(Sel->StoredIObjects());
633   for(;It.More();It.Next()) {
634     Handle(SALOME_InteractiveObject) anIObj = It.Value();
635     bool aIsOwner, aIsDataflow;
636     whatIsSelected(anIObj, aIsOwner, aIsDataflow);
637     
638     SALOMEDS::SObject_var  aObj = aStudy->FindObjectID( anIObj->getEntry() );
639     if (!aObj->_is_nil()) {
640       if (aIsDataflow) {
641         SALOMEDS::GenericAttribute_var anAttr;
642         if (aObj->FindAttribute(anAttr, "AttributeIOR")) {
643           SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
644           QString ior = anIOR->Value();
645             
646           SUPERVGUI_Main* aMain;
647           for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
648             if ((aMain->getStudy() == study) && (aMain->getHashCode() == ior)) {
649               aMain->setAsFromStudy(false);
650               break;
651             }
652           }
653         }
654       }
655       QAD_Operation* op = new SALOMEGUI_ImportOperation( study );
656       SALOMEDS::StudyBuilder_var aBuilder = aStudy->NewBuilder();
657       op->start();
658       aBuilder->RemoveObjectWithChildren(aObj);
659       op->finish();
660     }
661   }
662   Sel->ClearIObjects() ; 
663 }
664
665 bool SUPERVGUI::OnGUIEvent(int command, QAD_Desktop* parent) {
666   Supervision.init(parent);
667   switch (command) {
668   case 301: 
669     Supervision.importDataflow();
670     return(false);
671     
672   case 302: 
673     Supervision.exportDataflow();
674     return(false);
675     
676   case 303: 
677     Supervision.newDataflow();
678     return(false);
679     
680   case 304: 
681     Supervision.modifyDataflow();
682     return(false);
683     
684   case 305:
685     Supervision.reloadDataflow();
686     return(false);
687     
688   case 306:
689     Supervision.runDataflow();
690     return(false);
691     
692   case 307: 
693     Supervision.killDataflow();
694     return(false);
695     
696   case 308:
697     Supervision.suspendResumeDataflow();
698     return(false);
699     
700   case 309: 
701     Supervision.showComponents();
702     return(false);
703     
704   case 310: 
705     Supervision.stepByStep();
706     return(false);
707     
708   default: 
709     QMessageBox::warning(QAD_Application::getDesktop(), "Supervision Error", "Unknown Command From Salome");
710     return(false);
711   }
712 }
713
714 bool SUPERVGUI::SetSettings(QAD_Desktop* parent) {
715   Trace("SUPERVGUI::SetSettings");
716   Supervision.init(parent);
717   return(true);
718 }
719
720 void SUPERVGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject) {
721   theObject  = "";
722   theContext = "";
723 }
724
725 bool SUPERVGUI::ActiveStudyChanged(QAD_Desktop* parent) {
726   Trace("SUPERVGUI::activeStudyChanged");
727   study = desktop->getActiveStudy();
728   return true;
729 }
730
731 void SUPERVGUI::SupportedViewType (int* buffer, int bufferSize)
732 {
733   if (!buffer || !bufferSize) return;
734   buffer[0] = (int)VIEW_GRAPHSUPERV;
735 }
736
737 extern "C"
738 {
739   Standard_EXPORT SALOMEGUI* GetComponentGUI() {
740     return &Supervision;
741   }
742 }