Salome HOME
Merge with version on tag OCC-V2_1_0d
[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           QApplication::setOverrideCursor( Qt::waitCursor );
370           study->renameIObject( IObject, nm );
371           QApplication::restoreOverrideCursor();
372         }
373       }
374     }
375   }
376 }
377
378
379 void SUPERVGUI::exportDataflow() {
380     Trace("SUPERVGUI::exportDataflow")
381     if (main==0) {
382         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_EXPORT"));
383     } else {
384       QString f = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
385                                            "",
386                                            "*.xml",
387                                            tr("TTL_EXPORT_DATAFLOW"),
388                                            false);
389       if (!f.isEmpty()) {
390         if (main->exportDataflow(f)) {
391           unregisterGraph(main);
392           registerGraph(f, main);
393         }
394       }
395     }
396 }
397
398 void SUPERVGUI::newDataflow() {
399     Trace("SUPERVGUI::editDataflow");
400
401     //asv 20.10.04: removed 2 SUPERVGUI_Main constructors.  there is only ONE way 
402     //to create a Main object now: with a non-null DataFlow as a 3d parameter
403     //1. create a Graph object
404     SUPERV_Graph aNewDataFlow = engine->StreamGraph( MAIN_NEW );
405     if (SUPERV_isNull( aNewDataFlow )) {
406       QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_CANT_CREATE_DF"));
407       return;
408     }
409     //2. create a ViewFrame object
410     QAD_StudyFrame* aStudyFrame = createGraph();
411     SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
412       (aStudyFrame->getRightFrame()->getViewFrame());
413     if(aViewFrame){
414       //3. bind Graph and ViewFrame -> create Main
415       main = new SUPERVGUI_Main(aViewFrame, desktop, aNewDataFlow );
416       main->addNode();
417       study->showFrame(aStudyFrame);
418     }
419 }
420
421 void SUPERVGUI::modifyDataflow() {
422     Trace("SUPERVGUI::modifyDataflow")
423     QString f = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
424                                          "",
425                                          "*.xml",
426                                          tr("Modify Dataflow"),
427                                          true);
428     if (!f.isEmpty()){
429       if (isContains(study, f)) {
430       if (QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), 
431                                tr("MSG_GRAPH_DISPLAYED").arg(f), 
432                                QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
433         return;
434       }
435       
436       SUPERV_Graph aGraph = engine->StreamGraph(f);
437       //QFile aFile(f);
438       //aGraph->SetName(aFile.name());
439       if (SUPERV_isNull(aGraph)) {
440         QMessageBox::warning(QAD_Application::getDesktop(), tr("ERROR"), tr("MSG_BAD_FILE").arg(f));
441         return;
442       }
443
444       QAD_StudyFrame* aStudyFrame = createGraph();
445       SUPERVGraph_ViewFrame* aViewFrame = dynamic_cast<SUPERVGraph_ViewFrame*>
446         (aStudyFrame->getRightFrame()->getViewFrame());
447       if(aViewFrame) {
448         main = new SUPERVGUI_Main(aViewFrame, desktop, aGraph);
449         registerGraph(f, main);
450         study->showFrame(aStudyFrame);
451       }
452     }
453 }
454
455 void SUPERVGUI::reloadDataflow() {
456     Trace("SUPERVGUI::reloadDataflow")
457     if (main==0) {
458         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RELOAD"));
459     } else {
460         main->sync();
461     };
462 }
463
464 void SUPERVGUI::runDataflow() {
465     Trace("SUPERVGUI::runDataflow")
466     if (main==0) {
467         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
468     } else {
469         main->run();
470     };
471 }
472
473 void SUPERVGUI::stepByStep() {
474     Trace("SUPERVGUI::stepByStep")
475     if (main==0) {
476         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_RUN"));
477     } else {
478         main->startExecute();
479     }
480 }
481
482 void SUPERVGUI::killDataflow() {
483     Trace("SUPERVGUI::killDataflow")
484     if (main==0) {
485         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_KILL"));
486     } else {
487         main->kill();
488     };
489 }
490
491 void SUPERVGUI::suspendResumeDataflow() {
492     Trace("SUPERVGUI::suspendResumeDataflow")
493     if (main==0) {
494         QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_SUSPEND"));
495     } else {
496         main->suspendResume();
497     };
498 }
499
500 void SUPERVGUI::showComponents() {
501   Trace("SUPERVGUI::showComponents");
502   if (main==0) {
503     QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOWINDOW_TO_ADD"));
504   } else {
505     if (main->isEditable())
506       main->addNode();
507     else
508       QMessageBox::warning(QAD_Application::getDesktop(), tr("WARNING"), tr("MSG_NOTEDITABLE"));
509   }
510 }
511
512
513 bool SUPERVGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext, const QString& theParent, const QString& theObject) {
514   Trace("SUPERVGUI::customPopup");
515   Supervision.init(parent);
516   if(popup->count() > 3) {
517     // Temporary code: is to be deleted soon
518     popup->removeItem(QAD_Display_Popup_ID);
519     popup->removeItem(QAD_DisplayOnly_Popup_ID);
520     popup->removeItem(QAD_Erase_Popup_ID);
521     int id = popup->idAt(popup->count() - 1);
522     if (id < 0 && id != -1) popup->removeItem(id); // separator
523     // Temporary code end
524   }
525     SALOME_Selection* Sel = SALOME_Selection::Selection(study->getSelection() );
526     if ((Sel==NULL) || (Sel->IObjectCount() == 0)) return false;
527
528     if (Sel->IObjectCount() == 1) {
529       Handle(SALOME_InteractiveObject) anIObj = Sel->firstIObject();
530
531       // insert SUPERV-specific popup items here
532
533       bool isDataflow, ownObj;
534       whatIsSelected(anIObj, ownObj, isDataflow);
535       
536       if (isDataflow) {
537         popup->insertItem(tr( "MSG_RENAME" ), this, SLOT(renameDataflow()));
538         popup->insertItem("Display", this, SLOT(displayDataflow()));
539         popup->insertSeparator();
540       }
541       if (ownObj)
542         popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
543     }
544     if (Sel->IObjectCount() > 1) {
545       int aIObjCount = 0;
546       SALOME_ListIteratorOfListIO It_forCheckOwner(Sel->StoredIObjects());
547       for(;It_forCheckOwner.More();It_forCheckOwner.Next()) {
548         Handle(SALOME_InteractiveObject) anIObj = It_forCheckOwner.Value();
549         bool aIsOwner, aIsDataflow;
550         whatIsSelected(anIObj, aIsOwner, aIsDataflow);
551         
552         if (aIsOwner) aIObjCount++;
553       }
554       if (aIObjCount == Sel->IObjectCount())  //all selected objects belong to Supervision
555         popup->insertItem(tr("MSG_DELETE"), this, SLOT(deleteObject()));
556     }
557   return(true);
558 }
559
560  
561
562 /** Returns:
563     theIsOwner = true if Selected object belongs to Suipervision.
564     theIsDataflow = true if Selected object is Dataflow
565 */
566 void SUPERVGUI::whatIsSelected(const Handle(SALOME_InteractiveObject)& theObj, bool& theIsOwner, bool& theIsDataflow) {
567   theIsOwner = false;
568   theIsDataflow = false;
569
570   if (theObj.IsNull()) return;
571   
572   SALOMEDS::Study_var aStudy = study->getStudyDocument();
573   SALOMEDS::SObject_var  obj = aStudy->FindObjectID( theObj->getEntry() );
574
575   if ( !obj->_is_nil() ) {
576     SALOMEDS::SComponent_var comp = obj->GetFatherComponent();
577     if ( !comp->_is_nil() ) {
578       SALOMEDS::GenericAttribute_var anAttr;
579       SALOMEDS::AttributeName_var    aName;
580       if (comp->FindAttribute(anAttr, "AttributeName")) {
581         aName = SALOMEDS::AttributeName::_narrow(anAttr);
582         QString compName(aName->Value());
583         //if (compName.compare(STUDY_SUPERVISION) == 0) {
584         if (compName.compare(QAD_Application::getDesktop()->getComponentUserName("SUPERV")) == 0) {
585           SALOMEDS::GenericAttribute_var anAttr;
586           if (obj->FindAttribute(anAttr, "AttributeIOR")) {
587             SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
588             //SUPERV_Graph aDataFlow = engine->getStreamGraph(anIOR->Value());
589             SUPERV_Graph aDataFlow = engine->getGraph(anIOR->Value());
590             if (!SUPERV_isNull(aDataFlow)) {
591               if (aDataFlow->IsStreamGraph()) {
592                 if (!SUPERV_isNull(aDataFlow->ToStreamGraph()))
593                   theIsDataflow = true;
594               }
595               else
596                 theIsDataflow = true;
597             }
598           }
599           CORBA::String_var anObjectID = obj->GetID();
600           CORBA::String_var aComponentID = comp->GetID();
601           if (strcmp(anObjectID, aComponentID)) theIsOwner = true;          
602         }
603       }
604     }
605   }
606 }
607
608
609 void SUPERVGUI::deleteObject() {
610   SALOME_Selection* Sel = SALOME_Selection::Selection(study->getSelection() );
611   if ((Sel==NULL) || (Sel->IObjectCount() == 0)) return;
612    
613   if (QMessageBox::warning(QAD_Application::getDesktop(),
614                            tr("WARNING"),
615                            tr("MSG_ASK_DELETE"),
616                            QMessageBox::No,
617                            QMessageBox::Yes) == QMessageBox::No)
618     return;
619    
620   SALOME_ListIteratorOfListIO It(Sel->StoredIObjects());
621   for(;It.More();It.Next()) {
622     Handle(SALOME_InteractiveObject) anIObj = It.Value();
623     bool aIsOwner, aIsDataflow;
624     whatIsSelected(anIObj, aIsOwner, aIsDataflow);
625     
626     SALOMEDS::Study_var aStudy = study->getStudyDocument();
627     SALOMEDS::SObject_var  aObj = aStudy->FindObjectID( anIObj->getEntry() );
628     if (!aObj->_is_nil()) {
629       if (aIsDataflow) {
630         SALOMEDS::GenericAttribute_var anAttr;
631         if (aObj->FindAttribute(anAttr, "AttributeIOR")) {
632           SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
633           QString ior = anIOR->Value();
634             
635           SUPERVGUI_Main* aMain;
636           for (aMain = myGraphList.first(); aMain; aMain = myGraphList.next()) {
637             if ((aMain->getStudy() == study) && (aMain->getHashCode() == ior)) {
638               aMain->setAsFromStudy(false);
639               break;
640             }
641           }
642         }
643       }
644       QAD_Operation* op = new SALOMEGUI_ImportOperation( study );
645       SALOMEDS::StudyBuilder_var aBuilder = aStudy->NewBuilder();
646       op->start();
647       aBuilder->RemoveObjectWithChildren(aObj);
648       op->finish();
649     }
650   }
651   Sel->ClearIObjects() ; 
652 }
653
654 bool SUPERVGUI::OnGUIEvent(int command, QAD_Desktop* parent) {
655   Supervision.init(parent);
656   switch (command) {
657   case 301: 
658     Supervision.importDataflow();
659     return(false);
660     
661   case 302: 
662     Supervision.exportDataflow();
663     return(false);
664     
665   case 303: 
666     Supervision.newDataflow();
667     return(false);
668     
669   case 304: 
670     Supervision.modifyDataflow();
671     return(false);
672     
673   case 305:
674     Supervision.reloadDataflow();
675     return(false);
676     
677   case 306:
678     Supervision.runDataflow();
679     return(false);
680     
681   case 307: 
682     Supervision.killDataflow();
683     return(false);
684     
685   case 308:
686     Supervision.suspendResumeDataflow();
687     return(false);
688     
689   case 309: 
690     Supervision.showComponents();
691     return(false);
692     
693   case 310: 
694     Supervision.stepByStep();
695     return(false);
696     
697   default: 
698     QMessageBox::warning(QAD_Application::getDesktop(), "Supervision Error", "Unknown Command From Salome");
699     return(false);
700   }
701 }
702
703 bool SUPERVGUI::SetSettings(QAD_Desktop* parent) {
704   Trace("SUPERVGUI::SetSettings");
705   Supervision.init(parent);
706   return(true);
707 }
708
709 void SUPERVGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject) {
710   theObject  = "";
711   theContext = "";
712 }
713
714 bool SUPERVGUI::ActiveStudyChanged(QAD_Desktop* parent) {
715   Trace("SUPERVGUI::activeStudyChanged");
716   study = desktop->getActiveStudy();
717   return true;
718 }
719
720 void SUPERVGUI::SupportedViewType (int* buffer, int bufferSize)
721 {
722   if (!buffer || !bufferSize) return;
723   buffer[0] = (int)VIEW_GRAPHSUPERV;
724 }
725
726 extern "C"
727 {
728   Standard_EXPORT SALOMEGUI* GetComponentGUI() {
729     return &Supervision;
730   }
731 }