Salome HOME
provide customization of translation files formats
[modules/gui.git] / src / SalomeApp / SalomeApp_Application.cxx
1 // File:      SalomeApp_Application.cxx
2 // Created:   10/22/2004 3:23:45 PM
3 // Author:    Sergey LITONIN
4 // Copyright (C) CEA 2004
5
6 #include "SalomeApp_PyInterp.h" // WARNING! This include must be the first!
7
8 #include "SalomeApp_Application.h"
9
10 #include "SalomeApp_Study.h"
11 #include "SalomeApp_Module.h"
12 #include "SalomeApp_OBFilter.h"
13 #include "SalomeApp_DataModel.h"
14 #include "SalomeApp_DataObject.h"
15 #include "SalomeApp_EventFilter.h"
16 #include "SalomeApp_WidgetContainer.h"
17
18 #include "SalomeApp_AboutDlg.h"
19 #include "SalomeApp_ModuleDlg.h"
20 #include "SalomeApp_Preferences.h"
21 #include "SalomeApp_PreferencesDlg.h"
22 #include "SalomeApp_StudyPropertiesDlg.h"
23 #include "SalomeApp_CheckFileDlg.h"
24
25 #include "SalomeApp_GLSelector.h"
26 #include "SalomeApp_OBSelector.h"
27 #include "SalomeApp_OCCSelector.h"
28 #include "SalomeApp_VTKSelector.h"
29 #include "SalomeApp_SelectionMgr.h"
30
31 #include <LogWindow.h>
32
33 #include <GLViewer_Viewer.h>
34 #include <GLViewer_ViewManager.h>
35
36 #include <Plot2d_ViewManager.h>
37 #include <SPlot2d_ViewModel.h>
38
39 #include <OCCViewer_ViewManager.h>
40 #include <SOCC_ViewModel.h>
41
42 #include <SVTK_ViewModel.h>
43 #include <SVTK_ViewManager.h>
44
45 #include <STD_TabDesktop.h>
46
47 #include <SUIT_Tools.h>
48 #include <SUIT_Session.h>
49
50 #include <QtxToolBar.h>
51 #include <QtxMRUAction.h>
52 #include <QtxDockAction.h>
53 #include <QtxResourceEdit.h>
54
55 #include <OB_Browser.h>
56
57 #include <PythonConsole_PyConsole.h>
58
59 #include <SUIT_FileDlg.h>
60 #include <SUIT_MessageBox.h>
61 #include <SUIT_ResourceMgr.h>
62 #include <SUIT_ActionOperation.h>
63
64 #include <Utils_ORB_INIT.hxx>
65 #include <Utils_SINGLETON.hxx>
66 #include <SALOME_ModuleCatalog_impl.hxx>
67 #include <SALOME_LifeCycleCORBA.hxx>
68
69 #include <qmap.h>
70 #include <qdir.h>
71 #include <qlabel.h>
72 #include <qimage.h>
73 #include <qaction.h>
74 #include <qmenubar.h>
75 #include <qcombobox.h>
76 #include <qmessagebox.h>
77 #include <qapplication.h>
78
79 #include "SALOMEDS_StudyManager.hxx"
80
81 #include "SALOME_ListIteratorOfListIO.hxx"
82 #include "SALOME_ListIO.hxx"
83
84 #define OBJECT_BROWSER_WIDTH 300
85
86 static const char* imageEmptyIcon[] = {
87 "20 20 1 1",
88 ".      c None",
89 "....................",
90 "....................",
91 "....................",
92 "....................",
93 "....................",
94 "....................",
95 "....................",
96 "....................",
97 "....................",
98 "....................",
99 "....................",
100 "....................",
101 "....................",
102 "....................",
103 "....................",
104 "....................",
105 "....................",
106 "....................",
107 "....................",
108 "...................."};
109
110 extern "C" SALOMEAPP_EXPORT SUIT_Application* createApplication()
111 {
112   return new SalomeApp_Application();
113 }
114
115 SalomeApp_Preferences* SalomeApp_Application::_prefs_ = 0;
116
117 /*
118   Class       : SalomeApp_Application
119   Description : Application containing SalomeApp module
120 */
121
122 SalomeApp_Application::SalomeApp_Application()
123 : CAM_Application( false ),
124 myPrefs( 0 )
125 {
126   STD_TabDesktop* desk = new STD_TabDesktop();
127
128   setDesktop( desk );
129
130   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
131   QPixmap aLogo = aResMgr->loadPixmap( "SalomeApp", tr( "APP_DEFAULT_ICO" ), false );
132
133   desktop()->setIcon( aLogo );
134   desktop()->setDockableMenuBar( true );
135   desktop()->setDockableStatusBar( false );
136
137   clearViewManagers();
138
139   mySelMgr = new SalomeApp_SelectionMgr( this );
140
141   connect( desk, SIGNAL( closing( SUIT_Desktop*, QCloseEvent* ) ),
142            this, SLOT( onDesktopClosing( SUIT_Desktop*, QCloseEvent* ) ) );
143
144   connect( mySelMgr, SIGNAL( selectionChanged() ), this, SLOT( onSelection() ) );
145 }
146
147 SalomeApp_Application::~SalomeApp_Application()
148 {
149   saveWindowsGeometry();
150
151   if ( resourceMgr() )
152   {
153     if ( desktop() )
154       desktop()->saveGeometry( resourceMgr(), "desktop" );
155     resourceMgr()->save();
156   }
157
158   delete mySelMgr;
159
160   SalomeApp_EventFilter::Destroy();
161 }
162
163 void SalomeApp_Application::start()
164 {
165   if ( desktop() )
166     desktop()->loadGeometry( resourceMgr(), "desktop" );
167
168   CAM_Application::start();
169
170   QAction* a = action( ViewWindowsId );
171   if ( a && a->inherits( "QtxDockAction" ) )
172     ((QtxDockAction*)a)->setAutoPlace( true );
173
174   SalomeApp_EventFilter::Init();
175
176   updateWindows();
177   updateViewManagers();
178
179   putInfo( "" );
180 }
181
182 QString SalomeApp_Application::applicationName() const
183 {
184   return tr( "APP_NAME" );
185 }
186
187 QString SalomeApp_Application::applicationVersion() const
188 {
189   static QString _app_version;
190
191   if ( _app_version.isEmpty() )
192   {
193     QString path( ::getenv( "GUI_ROOT_DIR" ) );
194     if ( !path.isEmpty() )
195       path += QDir::separator();
196     path += QString( "bin/salome/VERSION" );
197
198     QFile vf( path );
199     if ( vf.open( IO_ReadOnly ) )
200     {
201       QString line;
202       vf.readLine( line, 1024 );
203       vf.close();
204
205       if ( !line.isEmpty() )
206       {
207         while ( !line.isEmpty() && line.at( line.length() - 1 ) == QChar( '\n' ) )
208           line.remove( line.length() - 1, 1 );
209
210         int idx = line.findRev( ":" );
211         if ( idx != -1 )
212           _app_version = line.mid( idx + 1 ).stripWhiteSpace();
213       }
214     }
215   }
216
217   return _app_version;
218 }
219
220 CAM_Module* SalomeApp_Application::loadModule( const QString& name )
221 {
222   CAM_Module* mod = CAM_Application::loadModule( name );
223   if ( mod )
224   {
225     connect( this, SIGNAL( studyOpened() ), mod, SLOT( onModelOpened() ) );
226     connect( this, SIGNAL( studySaved() ),  mod, SLOT( onModelSaved() ) );
227     connect( this, SIGNAL( studyClosed() ), mod, SLOT( onModelClosed() ) );
228   }
229   return mod;
230 }
231
232 bool SalomeApp_Application::activateModule( const QString& modName )
233 {
234   QString actName;
235   CAM_Module* prevMod = activeModule();
236
237   if ( prevMod )
238     actName = prevMod->moduleName();
239
240   if ( actName == modName )
241     return true;
242
243   saveWindowsGeometry();
244
245   bool status = CAM_Application::activateModule( modName );
246
247   updateModuleActions();
248
249   if ( !status )
250     return false;
251
252   updateWindows();
253   updateViewManagers();
254
255   return true;
256 }
257
258 SalomeApp_SelectionMgr* SalomeApp_Application::selectionMgr() const
259 {
260   return mySelMgr;
261 }
262
263 void SalomeApp_Application::createActions()
264 {
265   STD_Application::createActions();
266
267   SUIT_Desktop* desk = desktop();
268   SUIT_ResourceMgr* resMgr = resourceMgr();
269   
270   // Dump study
271   createAction( DumpStudyId, tr( "TOT_DESK_FILE_DUMP_STUDY" ), QIconSet(),
272                 tr( "MEN_DESK_FILE_DUMP_STUDY" ), tr( "PRP_DESK_FILE_DUMP_STUDY" ),
273                 0, desk, false, this, SLOT( onDumpStudy() ) );
274     
275   // Load script
276   createAction( LoadScriptId, tr( "TOT_DESK_FILE_LOAD_SCRIPT" ), QIconSet(),
277                 tr( "MEN_DESK_FILE_LOAD_SCRIPT" ), tr( "PRP_DESK_FILE_LOAD_SCRIPT" ),
278                 0, desk, false, this, SLOT( onLoadScript() ) );
279
280   // Properties
281   createAction( PropertiesId, tr( "TOT_DESK_PROPERTIES" ), QIconSet(),
282                 tr( "MEN_DESK_PROPERTIES" ), tr( "PRP_DESK_PROPERTIES" ),
283                 0, desk, false, this, SLOT( onProperties() ) );
284
285   // Preferences
286   createAction( PreferencesId, tr( "TOT_DESK_PREFERENCES" ), QIconSet(),
287                 tr( "MEN_DESK_PREFERENCES" ), tr( "PRP_DESK_PREFERENCES" ),
288                 CTRL+Key_P, desk, false, this, SLOT( onPreferences() ) );
289
290   // MRU
291   QtxMRUAction* mru = new QtxMRUAction( tr( "TOT_DESK_MRU" ), tr( "MEN_DESK_MRU" ), desk );
292   connect( mru, SIGNAL( activated( QString ) ), this, SLOT( onMRUActivated( QString ) ) );
293   registerAction( MRUId, mru );
294
295   // default icon for neutral point ('SALOME' module)
296   QPixmap defIcon = resMgr->loadPixmap( "SalomeApp", tr( "APP_DEFAULT_ICO" ), false );
297   if ( defIcon.isNull() )
298     defIcon = QPixmap( imageEmptyIcon );
299
300   // default icon for any module
301   QPixmap modIcon = resMgr->loadPixmap( "SalomeApp", tr( "APP_MODULE_ICO" ), false );
302   if ( modIcon.isNull() )
303     modIcon = QPixmap( imageEmptyIcon );
304
305   QToolBar* modTBar = new QtxToolBar( true, desk );
306   modTBar->setLabel( tr( "INF_TOOLBAR_MODULES" ) );
307
308   QActionGroup* modGroup = new QActionGroup( this );
309   modGroup->setExclusive( true );
310   modGroup->setUsesDropDown( true );
311
312   QAction* a = createAction( -1, tr( "APP_NAME" ), defIcon, tr( "APP_NAME" ),
313                              tr( "PRP_APP_MODULE" ), 0, desk, true );
314   modGroup->add( a );
315   myActions.insert( QString(), a );
316
317   QMap<QString, QString> iconMap;
318   moduleIconNames( iconMap );
319
320   const int iconSize = 20;
321
322   modGroup->addTo( modTBar );
323   modTBar->addSeparator();
324
325   QStringList modList;
326   modules( modList, false );
327
328   for ( QStringList::Iterator it = modList.begin(); it != modList.end(); ++it )
329   {
330     if ( (*it).isEmpty() )
331       continue;
332
333     QString iconName;
334     if ( iconMap.contains( *it ) )
335       iconName = iconMap[*it];
336
337     QString modName = moduleName( *it );
338
339     QPixmap icon = resMgr->loadPixmap( modName, iconName, false );
340     if ( icon.isNull() )
341       icon = modIcon;
342
343     icon.convertFromImage( icon.convertToImage().smoothScale( iconSize, iconSize, QImage::ScaleMin ) );
344
345     QAction* a = createAction( -1, *it, icon, *it, tr( "PRP_MODULE" ).arg( *it ), 0, desk, true );
346     a->addTo( modTBar );
347     modGroup->add( a );
348
349     myActions.insert( *it, a );
350   }
351
352   SUIT_Tools::simplifySeparators( modTBar );
353
354   // New window
355
356   int windowMenu = createMenu( tr( "MEN_DESK_WINDOW" ), -1, 100 );
357   int newWinMenu = createMenu( tr( "MEN_DESK_NEWWINDOW" ), windowMenu, -1, 0 );
358   createMenu( separator(), windowMenu, -1, 1 );
359
360   QMap<int, int> accelMap;
361   accelMap[NewGLViewId]  = ALT+Key_G;
362   accelMap[NewPlot2dId]  = ALT+Key_P;
363   accelMap[NewOCCViewId] = ALT+Key_O;
364   accelMap[NewVTKViewId] = ALT+Key_K;
365
366   for ( int id = NewGLViewId; id <= NewVTKViewId; id++ )
367   {
368     QAction* a = createAction( id, tr( QString( "NEW_WINDOW_%1" ).arg( id - NewGLViewId ) ), QIconSet(),
369                                tr( QString( "NEW_WINDOW_%1" ).arg( id - NewGLViewId ) ),
370                                tr( QString( "NEW_WINDOW_%1" ).arg( id - NewGLViewId ) ),
371                                accelMap.contains( id ) ? accelMap[id] : 0, desk, false, this, SLOT( onNewWindow() ) );
372     createMenu( a, newWinMenu, -1 );
373   }
374   connect( modGroup, SIGNAL( selected( QAction* ) ), this, SLOT( onModuleActivation( QAction* ) ) );
375
376   int fileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1 );
377
378   createMenu( DumpStudyId, fileMenu, 10, -1 );
379   createMenu( separator(), fileMenu, -1, 15, -1 );
380   createMenu( LoadScriptId, fileMenu, 10, -1 );
381   createMenu( separator(), fileMenu, -1, 15, -1 );
382   createMenu( PropertiesId, fileMenu, 10, -1 );
383   createMenu( separator(), fileMenu, -1, 15, -1 );
384   createMenu( PreferencesId, fileMenu, 15, -1 );
385   createMenu( separator(), fileMenu, -1, 15, -1 );
386
387   /*
388   createMenu( separator(), fileMenu, -1, 100, -1 );
389   createMenu( MRUId, fileMenu, 100, -1 );
390   createMenu( separator(), fileMenu, -1, 100, -1 );
391   */
392 }
393
394 void SalomeApp_Application::onModuleActivation( QAction* a )
395 {
396   if ( !a )
397     return;
398
399   QString modName = a->menuText();
400   if ( modName == tr( "APP_NAME" ) )
401     modName = QString::null;
402
403   // Force user to create/open a study before module activation
404   QMap<QString, QString> iconMap;
405   moduleIconNames( iconMap );
406   QPixmap icon = resourceMgr()->loadPixmap( moduleName( modName ), iconMap[ modName ], false );
407   if ( icon.isNull() )
408     icon = resourceMgr()->loadPixmap( "SalomeApp", tr( "APP_MODULE_BIG_ICO" ), false ); // default icon for any module
409
410   bool cancelled = false;
411   while ( !modName.isEmpty() && !activeStudy() && !cancelled ){
412     SalomeApp_ModuleDlg aDlg( desktop(), modName, icon );
413     int res = aDlg.exec();
414
415     switch ( res ){
416     case 1:
417       onNewDoc();
418       break;
419     case 2:
420       onOpenDoc();
421       break;
422     case 3:
423       //onLoadStudy();
424       //break;
425     case 0:
426     default:
427       putInfo( tr("INF_CANCELLED") );
428       myActions[QString()]->setOn( true );
429       cancelled = true;
430     }
431   }
432
433   if ( !cancelled )
434     activateModule( modName );
435 }
436
437 QString SalomeApp_Application::defaultModule() const
438 {
439   QStringList aModuleNames;
440   modules( aModuleNames, false ); // obtain a complete list of module names for the current configuration
441   // If there's the one and only module --> activate it automatically
442   // TODO: Possible improvement - default module can be taken from preferences
443   return aModuleNames.count() > 1 ? "" : ( aModuleNames.count() ? aModuleNames.first() : "" );
444 }
445
446 void SalomeApp_Application::onNewWindow()
447 {
448   const QObject* obj = sender();
449   if ( !obj || !obj->inherits( "QAction" ) )
450     return;
451
452   QString type;
453   int id = actionId( (QAction*)obj );
454   switch ( id )
455   {
456   case NewGLViewId:
457     type = GLViewer_Viewer::Type();
458     break;
459   case NewPlot2dId:
460     type = Plot2d_Viewer::Type();
461     break;
462   case NewOCCViewId:
463     type = OCCViewer_Viewer::Type();
464     break;
465   case NewVTKViewId:
466     type = VTKViewer_Viewer::Type();
467     break;
468   }
469
470   if ( !type.isEmpty() )
471     createViewManager( type );
472 }
473
474 //=======================================================================
475 // name    : onNewDoc
476 // Purpose : SLOT. Create new document
477 //=======================================================================
478 void SalomeApp_Application::onNewDoc()
479 {
480   SUIT_Study* study = activeStudy();
481
482   saveWindowsGeometry();
483
484   CAM_Application::onNewDoc();
485
486   if ( !study ) // new study will be create in THIS application
487   {
488     updateWindows();
489     updateViewManagers();
490   }
491 }
492
493 //=======================================================================
494 // name    : onOpenDoc
495 // Purpose : SLOT. Open new document
496 //=======================================================================
497 void SalomeApp_Application::onOpenDoc()
498 {
499   SUIT_Study* study = activeStudy();
500   saveWindowsGeometry();
501
502   CAM_Application::onOpenDoc();
503
504   if ( !study ) // new study will be create in THIS application
505   {
506     updateWindows();
507     updateViewManagers();
508   }
509 }
510
511 bool SalomeApp_Application::onOpenDoc( const QString& aName )
512 {
513   bool res = CAM_Application::onOpenDoc( aName );
514
515   QAction* a = action( MRUId );
516   if ( a && a->inherits( "QtxMRUAction" ) )
517   {
518     QtxMRUAction* mru = (QtxMRUAction*)a;
519     if ( res )
520       mru->insert( aName );
521     else
522       mru->remove( aName );
523   }
524   return res;
525 }
526
527 void SalomeApp_Application::onSelection()
528 {
529   onSelectionChanged();
530
531   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
532     ((SalomeApp_Module*)activeModule())->selectionChanged();
533 }
534
535 void SalomeApp_Application::onSelectionChanged()
536 {
537  /*
538    SalomeApp_Module* module = dynamic_cast<SalomeApp_Module*>(activeModule());
539    if(module == NULL) return;
540    
541    QString ior = module->engineIOR();
542    if(ior.length() < 5) return; //Not a real CORBA IOR
543    CORBA::Object_var obj = orb()->string_to_object(ior.latin1());
544    if(CORBA::is_nil(obj)) return;
545    
546    SALOMEDS::Driver_var engine = SALOMEDS::Driver::_narrow(obj);
547    if(CORBA::is_nil(engine)) return;
548 */
549
550    SALOME_ListIO list;
551    SalomeApp_SelectionMgr* mgr = selectionMgr();
552    mgr->selectedObjects(list);
553    
554    SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>(activeStudy());
555    if(study == NULL) return;
556    
557    _PTR(Study) stdDS = study->studyDS();
558    if(!stdDS) return;
559    
560    QAction* qaction;  
561    //Varibales isEnabledCopy and isEnabledPaste are used for multi selection.
562    bool isEnabledCopy = true;  
563    bool isEnabledPaste = true;  
564
565    for ( SALOME_ListIteratorOfListIO it( list ); it.More() && (isEnabledCopy || isEnabledPaste); it.Next() )
566    {
567       _PTR(SObject) so = stdDS->FindObjectID(it.Value()->getEntry());
568
569       qaction = action(EditCopyId); 
570       if( isEnabledCopy && studyMgr()->CanCopy(so) ) qaction->setEnabled(true);  
571       else { 
572         isEnabledCopy = false;
573         qaction->setEnabled(false);         
574       }
575
576       qaction = action(EditPasteId);
577       if( isEnabledPaste && studyMgr()->CanPaste(so) ) qaction->setEnabled(true);
578       else {
579         isEnabledPaste = false;
580         qaction->setEnabled(false);
581       }
582    } 
583 }               
584  
585 void SalomeApp_Application::onRefresh()
586 {
587   updateObjectBrowser( true );
588 }
589
590  
591 void SalomeApp_Application::onOpenWith()
592 {
593   QApplication::setOverrideCursor( Qt::waitCursor );
594   SALOME_ListIO aList;
595   SalomeApp_SelectionMgr* mgr = selectionMgr();
596   mgr->selectedObjects(aList);
597   if (aList.Extent() > 1) return;
598   Handle(SALOME_InteractiveObject) aIObj = aList.First();
599   QString aModuleName(aIObj->getComponentDataType());
600   QString aModuleTitle = moduleTitle(aModuleName);
601   activateModule(aModuleTitle);
602   QApplication::restoreOverrideCursor();
603 }
604
605 void SalomeApp_Application::setActiveStudy( SUIT_Study* study )
606 {
607   CAM_Application::setActiveStudy( study );
608
609   activateWindows();
610 }
611
612 //=======================================================================
613 // name    : createNewStudy
614 // Purpose : Create new study
615 //=======================================================================
616 SUIT_Study* SalomeApp_Application::createNewStudy()
617 {
618   SalomeApp_Study* aStudy = new SalomeApp_Study( this );
619
620   // Set up processing of major study-related events
621   connect( aStudy, SIGNAL( created( SUIT_Study* ) ), this, SLOT( onStudyCreated( SUIT_Study* ) ) );
622   connect( aStudy, SIGNAL( opened ( SUIT_Study* ) ), this, SLOT( onStudyOpened ( SUIT_Study* ) ) );
623   connect( aStudy, SIGNAL( saved  ( SUIT_Study* ) ), this, SLOT( onStudySaved  ( SUIT_Study* ) ) );
624   connect( aStudy, SIGNAL( closed ( SUIT_Study* ) ), this, SLOT( onStudyClosed ( SUIT_Study* ) ) );
625
626   return aStudy;
627 }
628
629 //=======================================================================
630 // name    : createNewStudy
631 // Purpose : Enable/Disable menu items and toolbar buttons. Rebuild menu
632 //=======================================================================
633 void SalomeApp_Application::updateCommandsStatus()
634 {
635   CAM_Application::updateCommandsStatus();
636
637   for ( int id = NewGLViewId; id <= NewVTKViewId; id++ )
638   {
639     QAction* a = action( id );
640     if ( a )
641       a->setEnabled( activeStudy() );
642   }
643
644   // Dump study menu
645   QAction* a = action( DumpStudyId );
646   if ( a )
647     a->setEnabled( activeStudy() );
648
649   // Load script menu
650   a = action( LoadScriptId );
651   if ( a )
652     a->setEnabled( activeStudy() );
653   
654   a = action( PropertiesId );
655   if( a )
656     a->setEnabled( activeStudy() );
657     
658   a = action(EditCopyId);
659   a->setEnabled(false);       
660   a = action(EditPasteId);
661   a->setEnabled(false);      
662 }
663
664 //=======================================================================
665 // name    : onHelpAbout
666 // Purpose : SLOT. Display "About" message box
667 //=======================================================================
668 void SalomeApp_Application::onHelpAbout()
669 {
670   SalomeApp_AboutDlg* dlg = new SalomeApp_AboutDlg( applicationName(), applicationVersion(), desktop() );
671   dlg->exec();
672   delete dlg;
673 }
674
675 QWidget* SalomeApp_Application::window( const int flag, const int studyId ) const
676 {
677   QWidget* wid = 0;
678
679   int sId = studyId;
680   if ( sId < 0 )
681   {
682     if ( !activeStudy() )
683       return 0;
684     else
685       sId = activeStudy()->id();
686   }
687
688   if ( myWindows.contains( flag ) )
689     wid = myWindows[flag]->widget( sId );
690
691   return wid;
692 }
693
694 void SalomeApp_Application::addWindow( QWidget* wid, const int flag, const int studyId )
695 {
696   if ( !wid )
697     return;
698
699   int sId = studyId;
700   if ( sId < 0 )
701   {
702     if ( !activeStudy() )
703       return;
704     else
705       sId = activeStudy()->id();
706   }
707
708   if ( !myWindows.contains( flag ) )
709   {
710     QMap<int, int> winMap;
711     currentWindows( winMap );
712
713     myWindows.insert( flag, new SalomeApp_WidgetContainer( flag, desktop() ) );
714     if ( winMap.contains( flag ) )
715       desktop()->moveDockWindow( myWindows[flag], (Dock)winMap[flag] );
716
717     myWindows[flag]->setResizeEnabled( true );
718     myWindows[flag]->setCloseMode( QDockWindow::Always );
719     myWindows[flag]->setName( QString( "dock_window_%1" ).arg( flag ) );
720   }
721
722   myWindows[flag]->insert( sId, wid );
723
724   setWindowShown( flag, !myWindows[flag]->isEmpty() );
725 }
726
727 void SalomeApp_Application::removeWindow( const int flag, const int studyId )
728 {
729   if ( !myWindows.contains( flag ) )
730     return;
731
732   int sId = studyId;
733   if ( sId < 0 )
734   {
735     if ( !activeStudy() )
736       return;
737     else
738       sId = activeStudy()->id();
739   }
740
741   QWidget* wid = myWindows[flag]->widget( sId );
742   myWindows[flag]->remove( sId );
743   delete wid;
744
745   setWindowShown( flag, !myWindows[flag]->isEmpty() );
746 }
747
748 QWidget* SalomeApp_Application::getWindow( const int flag, const int studyId )
749 {
750   QWidget* wid = window( flag, studyId );
751   if ( !wid )
752     addWindow( wid = createWindow( flag ), flag, studyId );
753
754   return wid;
755 }
756
757 bool SalomeApp_Application::isWindowVisible( const int type ) const
758 {
759   bool res = false;
760   if ( myWindows.contains( type ) )
761   {
762     SUIT_Desktop* desk = ((SalomeApp_Application*)this)->desktop();
763     res = desk && desk->appropriate( myWindows[type] );
764   }
765   return res;
766 }
767
768 void SalomeApp_Application::setWindowShown( const int type, const bool on )
769 {
770   if ( !desktop() || !myWindows.contains( type ) )
771     return;
772
773   QDockWindow* dw = myWindows[type];
774   desktop()->setAppropriate( dw, on );
775   on ? dw->show() : dw->hide();
776 }
777
778 OB_Browser* SalomeApp_Application::objectBrowser()
779 {
780   OB_Browser* ob = 0;
781   QWidget* wid = getWindow( WT_ObjectBrowser );
782   if ( wid->inherits( "OB_Browser" ) )
783     ob = (OB_Browser*)wid;
784   return ob;
785 }
786
787 LogWindow* SalomeApp_Application::logWindow()
788 {
789   LogWindow* lw = 0;
790   QWidget* wid = getWindow( WT_LogWindow );
791   if ( wid->inherits( "LogWindow" ) )
792     lw = (LogWindow*)wid;
793   return lw;
794 }
795
796 PythonConsole* SalomeApp_Application::pythonConsole()
797 {
798   PythonConsole* console = 0;
799   QWidget* wid = getWindow( WT_PyConsole );
800   if ( wid->inherits( "PythonConsole" ) )
801     console = (PythonConsole*)wid;
802   return console;
803 }
804
805 SalomeApp_Preferences* SalomeApp_Application::preferences() const
806 {
807   return preferences( false );
808 }
809
810 SUIT_ViewManager* SalomeApp_Application::getViewManager( const QString& vmType, const bool create )
811 {
812   SUIT_ViewManager* aVM = viewManager( vmType );
813   SUIT_ViewManager* anActiveVM = CAM_Application::activeViewManager();
814
815   if ( anActiveVM && anActiveVM->getType() == vmType )
816     aVM = anActiveVM;
817
818   if ( aVM && create )
819   {
820     if ( !aVM->getActiveView() )
821       aVM->createView();
822     else
823       aVM->getActiveView()->setFocus();
824   }
825   else if ( create )
826     aVM = createViewManager( vmType );
827
828   return aVM;
829 }
830
831 SUIT_ViewManager* SalomeApp_Application::createViewManager( const QString& vmType )
832 {
833   SUIT_ResourceMgr* resMgr = resourceMgr();
834
835   SUIT_ViewManager* viewMgr = 0;
836   if ( vmType == GLViewer_Viewer::Type() )
837   {
838     viewMgr = new GLViewer_ViewManager( activeStudy(), desktop() );
839     new SalomeApp_GLSelector( (GLViewer_Viewer2d*)viewMgr->getViewModel(), mySelMgr );
840   }
841   else if ( vmType == Plot2d_Viewer::Type() )
842   {
843     viewMgr = new Plot2d_ViewManager( activeStudy(), desktop() );
844     viewMgr->setViewModel( new SPlot2d_Viewer() );// custom view model, which extends SALOME_View interface
845   }
846   else if ( vmType == OCCViewer_Viewer::Type() )
847   {
848     viewMgr = new OCCViewer_ViewManager( activeStudy(), desktop() );
849     SOCC_Viewer* vm = new SOCC_Viewer();
850     vm->setBackgroundColor( resMgr->colorValue( "OCCViewer", "background", vm->backgroundColor() ) );
851     vm->setTrihedronSize( resMgr->integerValue( "OCCViewer", "trihedron_size", vm->trihedronSize() ) );
852     int u( 1 ), v( 1 );
853     vm->isos( u, v );
854     u = resMgr->integerValue( "OCCViewer", "iso_number_u", u );
855     v = resMgr->integerValue( "OCCViewer", "iso_number_v", v );
856     //    vm->setIsos( u, v );
857     viewMgr->setViewModel( vm );// custom view model, which extends SALOME_View interface
858     new SalomeApp_OCCSelector( (OCCViewer_Viewer*)viewMgr->getViewModel(), mySelMgr );
859   }
860   else if ( vmType == SVTK_Viewer::Type() )
861   {
862     viewMgr = new SVTK_ViewManager( activeStudy(), desktop() );
863     SVTK_Viewer* vm = (SVTK_Viewer*)viewMgr->getViewModel();
864     vm->setBackgroundColor( resMgr->colorValue( "VTKViewer", "background", vm->backgroundColor() ) );
865     vm->setTrihedronSize( resMgr->integerValue( "VTKViewer", "trihedron_size", vm->trihedronSize() ) );
866     new SalomeApp_VTKSelector((SVTK_Viewer*)viewMgr->getViewModel(),mySelMgr);
867   }
868
869   if ( !viewMgr )
870     return 0;
871
872   addViewManager( viewMgr );
873   SUIT_ViewWindow* viewWin = viewMgr->createViewWindow();
874
875   if ( viewWin && desktop() )
876     viewWin->resize( (int)( desktop()->width() * 0.6 ), (int)( desktop()->height() * 0.6 ) );
877
878   connect( viewMgr, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
879            this, SLOT( onCloseView( SUIT_ViewManager* ) ) );
880
881   return viewMgr;
882 }
883
884 void SalomeApp_Application::onCloseView( SUIT_ViewManager* theVM )
885 {
886   removeViewManager( theVM );
887 }
888
889 void SalomeApp_Application::onStudyCreated( SUIT_Study* theStudy )
890 {
891   SUIT_DataObject* aRoot = 0;
892   if ( theStudy && theStudy->root() )
893   {
894     aRoot = theStudy->root();
895     //aRoot->setName( tr( "DATA_MODELS" ) );
896   }
897   if ( objectBrowser() != 0 )
898     objectBrowser()->setRootObject( aRoot );
899
900   activateModule( defaultModule() );
901
902   activateWindows();
903 }
904
905 void SalomeApp_Application::onStudyOpened( SUIT_Study* theStudy )
906 {
907   SUIT_DataObject* aRoot = 0;
908   if ( theStudy && theStudy->root() )
909   {
910     aRoot = theStudy->root();
911     //aRoot->dump();
912   }
913   if ( objectBrowser() != 0 ) {
914     objectBrowser()->setRootObject( aRoot );
915   }
916
917   activateModule( defaultModule() );
918
919   activateWindows();
920
921   emit studyOpened();
922 }
923
924 void SalomeApp_Application::onStudySaved( SUIT_Study* )
925 {
926   emit studySaved();
927 }
928
929 void SalomeApp_Application::onStudyClosed( SUIT_Study* )
930 {
931   emit studyClosed();
932
933   activateModule( "" );
934
935   saveWindowsGeometry();
936 }
937
938 void SalomeApp_Application::onDumpStudy( )
939 {
940   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( activeStudy() );
941   if ( !appStudy ) return;
942   _PTR(Study) aStudy = appStudy->studyDS();
943
944   QStringList aFilters;
945   aFilters.append( tr( "PYTHON_FILES_FILTER" ) );
946
947   SalomeApp_CheckFileDlg* fd = new SalomeApp_CheckFileDlg( desktop(), false, tr("PUBLISH_IN_STUDY"), true, true);
948   fd->setCaption( tr( "TOT_DESK_FILE_DUMP_STUDY" ) );
949   fd->setFilters( aFilters );  
950   fd->SetChecked(true);
951   fd->exec();
952   QString aFileName = fd->selectedFile();
953   bool toPublish = fd->IsChecked();
954   delete fd;
955
956   if(!aFileName.isEmpty()) {
957     QFileInfo aFileInfo(aFileName);
958     aStudy->DumpStudy( aFileInfo.dirPath( true ).latin1(), aFileInfo.baseName().latin1(), toPublish );
959   }
960 }
961
962 void SalomeApp_Application::onLoadScript( )
963 {
964   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( activeStudy() );
965   if ( !appStudy ) return;
966   _PTR(Study) aStudy = appStudy->studyDS();
967
968   if ( aStudy->GetProperties()->IsLocked() ) {
969     SUIT_MessageBox::warn1 ( desktop(),
970                              QObject::tr("WRN_WARNING"),
971                              QObject::tr("WRN_STUDY_LOCKED"),
972                              QObject::tr("BUT_OK") );
973     return;
974   }
975
976   QStringList filtersList;
977   filtersList.append(tr("PYTHON_FILES_FILTER"));
978   filtersList.append(tr("ALL_FILES_FILTER"));
979
980   QString aFile = SUIT_FileDlg::getFileName( desktop(), "", filtersList, tr( "TOT_DESK_FILE_LOAD_SCRIPT" ), true, true );
981
982   if ( !aFile.isEmpty() )
983   {
984     QString command = QString("execfile(\"%1\")").arg(aFile);
985
986     PythonConsole* pyConsole = pythonConsole();
987
988     if ( pyConsole )
989       pyConsole->exec( command );
990   }
991 }
992
993 void SalomeApp_Application::onPreferences()
994 {
995   QApplication::setOverrideCursor( Qt::waitCursor );
996
997   SalomeApp_PreferencesDlg* prefDlg = new SalomeApp_PreferencesDlg( preferences( true ), desktop());
998
999   QApplication::restoreOverrideCursor();
1000
1001   if ( !prefDlg )
1002     return;
1003
1004   prefDlg->exec();
1005
1006   delete prefDlg;
1007 }
1008
1009 void SalomeApp_Application::onMRUActivated( QString aName )
1010 {
1011   onOpenDoc( aName );
1012 }
1013
1014 void SalomeApp_Application::onPreferenceChanged( QString& modName, QString& section, QString& param )
1015 {
1016   SalomeApp_Module* sMod = 0;
1017   CAM_Module* mod = module( modName );
1018   if ( mod && mod->inherits( "SalomeApp_Module" ) )
1019     sMod = (SalomeApp_Module*)mod;
1020
1021   if ( sMod )
1022     sMod->preferencesChanged( section, param );
1023   else
1024     preferencesChanged( section, param );
1025 }
1026
1027 QString SalomeApp_Application::getFileFilter() const
1028 {
1029   return "(*.hdf)";
1030 }
1031
1032 void SalomeApp_Application::beforeCloseDoc( SUIT_Study* s )
1033 {
1034   CAM_Application::beforeCloseDoc( s );
1035
1036   for ( WindowMap::ConstIterator itr = myWindows.begin(); s && itr != myWindows.end(); ++itr )
1037     removeWindow( itr.key(), s->id() );
1038 }
1039
1040 void SalomeApp_Application::updateActions()
1041 {
1042   updateCommandsStatus();
1043 }
1044
1045 QWidget* SalomeApp_Application::createWindow( const int flag )
1046 {
1047   QWidget* wid = 0;
1048
1049   SUIT_ResourceMgr* resMgr = resourceMgr();
1050
1051   if ( flag == WT_ObjectBrowser )
1052   {
1053     OB_Browser* ob = new OB_Browser( desktop() );
1054     ob->setAutoUpdate( true );
1055     ob->setAutoOpenLevel( 1 );
1056     ob->setCaption( tr( "OBJECT_BROWSER" ) );
1057     ob->resize( OBJECT_BROWSER_WIDTH, ob->height() );
1058     ob->setFilter( new SalomeApp_OBFilter( selectionMgr() ) );
1059
1060     ob->setNameTitle( tr( "OBJ_BROWSER_NAME" ) );
1061
1062     for ( int i = SalomeApp_DataObject::CT_Value; i <= SalomeApp_DataObject::CT_RefEntry; i++ )
1063     {
1064       ob->addColumn( tr( QString().sprintf( "OBJ_BROWSER_COLUMN_%d", i ) ), i );
1065       ob->setColumnShown( i, resMgr->booleanValue( "ObjectBrowser",
1066                                                    QString().sprintf( "visibility_column_%d", i ), true ) );
1067     }
1068
1069     // Create OBSelector
1070     new SalomeApp_OBSelector( ob, mySelMgr );
1071
1072     wid = ob;
1073
1074     ob->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1075   }
1076   else if ( flag == WT_PyConsole )
1077   {
1078     PythonConsole* pyCons = new PythonConsole( desktop(), new SalomeApp_PyInterp() );
1079     pyCons->setCaption( tr( "PYTHON_CONSOLE" ) );
1080     wid = pyCons;
1081
1082     //    pyCons->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1083   }
1084   else if ( flag == WT_LogWindow )
1085   {
1086     LogWindow* logWin = new LogWindow( desktop() );
1087     logWin->setCaption( tr( "LOG_WINDOW" ) );
1088     wid = logWin;
1089
1090     logWin->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1091   }
1092
1093   return wid;
1094 }
1095
1096 void SalomeApp_Application::defaultWindows( QMap<int, int>& aMap ) const
1097 {
1098   aMap.insert( WT_ObjectBrowser, Qt::DockLeft );
1099   aMap.insert( WT_PyConsole, Qt::DockBottom );
1100   //  aMap.insert( WT_LogWindow, Qt::DockBottom );
1101 }
1102
1103 void SalomeApp_Application::defaultViewManagers( QStringList& ) const
1104 {
1105 }
1106
1107 SalomeApp_Preferences* SalomeApp_Application::preferences( const bool crt ) const
1108 {
1109   if ( myPrefs )
1110     return myPrefs;
1111
1112   SalomeApp_Application* that = (SalomeApp_Application*)this;
1113
1114   if ( !_prefs_ && crt )
1115   {
1116     _prefs_ = new SalomeApp_Preferences( resourceMgr() );
1117     that->createPreferences( _prefs_ );
1118   }
1119
1120   that->myPrefs = _prefs_;
1121
1122   QPtrList<SUIT_Application> appList = SUIT_Session::session()->applications();
1123   for ( QPtrListIterator<SUIT_Application> appIt ( appList ); appIt.current(); ++appIt )
1124   {
1125     if ( !appIt.current()->inherits( "SalomeApp_Application" ) )
1126       continue;
1127
1128     SalomeApp_Application* app = (SalomeApp_Application*)appIt.current();
1129
1130     QStringList modNameList;
1131     app->modules( modNameList, false );
1132     for ( QStringList::const_iterator it = modNameList.begin(); it != modNameList.end(); ++it )
1133     {
1134       int id = _prefs_->addPreference( *it );
1135       _prefs_->setProperty( id, "info", tr( "PREFERENCES_NOT_LOADED" ).arg( *it ) );
1136     }
1137
1138     ModuleList modList;
1139     app->modules( modList );
1140     for ( ModuleListIterator itr( modList ); itr.current(); ++itr )
1141     {
1142       SalomeApp_Module* mod = 0;
1143       if ( itr.current()->inherits( "SalomeApp_Module" ) )
1144         mod = (SalomeApp_Module*)itr.current();
1145
1146       if ( mod && !_prefs_->hasModule( mod->moduleName() ) )
1147         mod->createPreferences();
1148     }
1149   }
1150
1151   connect( myPrefs, SIGNAL( preferenceChanged( QString&, QString&, QString& ) ),
1152            this, SLOT( onPreferenceChanged( QString&, QString&, QString& ) ) );
1153
1154   return myPrefs;
1155 }
1156
1157 void SalomeApp_Application::moduleAdded( CAM_Module* mod )
1158 {
1159   CAM_Application::moduleAdded( mod );
1160
1161   SalomeApp_Module* salomeMod = 0;
1162   if ( mod && mod->inherits( "SalomeApp_Module" ) )
1163     salomeMod = (SalomeApp_Module*)mod;
1164
1165   if ( myPrefs && salomeMod && !myPrefs->hasModule( salomeMod->moduleName() ))
1166     salomeMod->createPreferences();
1167 }
1168
1169 void SalomeApp_Application::createPreferences( SalomeApp_Preferences* pref )
1170 {
1171   if ( !pref )
1172     return;
1173
1174   int salomeCat = pref->addPreference( tr( "PREF_CATEGORY_SALOME" ) );
1175
1176   int genTab = pref->addPreference( tr( "PREF_TAB_GENERAL" ), salomeCat );
1177
1178   int obGroup = pref->addPreference( tr( "PREF_GROUP_OBJBROWSER" ), genTab );
1179   for ( int i = SalomeApp_DataObject::CT_Value; i <= SalomeApp_DataObject::CT_RefEntry; i++ )
1180   {
1181     pref->addPreference( tr( QString().sprintf( "OBJ_BROWSER_COLUMN_%d", i ) ), obGroup,
1182                          SalomeApp_Preferences::Bool, "ObjectBrowser", QString().sprintf( "visibility_column_%d", i ) );
1183   }
1184   pref->setProperty( obGroup, "columns", 1 );
1185
1186   int viewTab = pref->addPreference( tr( "PREF_TAB_VIEWERS" ), salomeCat );
1187
1188   int occGroup = pref->addPreference( tr( "PREF_GROUP_OCCVIEWER" ), viewTab );
1189
1190   int vtkGroup = pref->addPreference( tr( "PREF_GROUP_VTKVIEWER" ), viewTab );
1191   pref->setProperty( occGroup, "columns", 1 );
1192   pref->setProperty( vtkGroup, "columns", 1 );
1193
1194   int occTS = pref->addPreference( tr( "PREF_TRIHEDRON_SIZE" ), occGroup,
1195                                    SalomeApp_Preferences::IntSpin, "OCCViewer", "trihedron_size" );
1196   pref->addPreference( tr( "PREF_VIEWER_BACKGROUND" ), occGroup,
1197                        SalomeApp_Preferences::Color, "OCCViewer", "background" );
1198
1199   pref->setProperty( occTS, "min", 1 );
1200   pref->setProperty( occTS, "max", 150 );
1201
1202   int isoU = pref->addPreference( tr( "PREF_ISOS_U" ), occGroup,
1203                                   SalomeApp_Preferences::IntSpin, "OCCViewer", "iso_number_u" );
1204   int isoV = pref->addPreference( tr( "PREF_ISOS_V" ), occGroup,
1205                                   SalomeApp_Preferences::IntSpin, "OCCViewer", "iso_number_v" );
1206
1207   pref->setProperty( isoU, "min", 0 );
1208   pref->setProperty( isoU, "max", 100000 );
1209
1210   pref->setProperty( isoV, "min", 0 );
1211   pref->setProperty( isoV, "max", 100000 );
1212
1213   int vtkTS = pref->addPreference( tr( "PREF_TRIHEDRON_SIZE" ), vtkGroup,
1214                                    SalomeApp_Preferences::IntSpin, "VTKViewer", "trihedron_size" );
1215   pref->addPreference( tr( "PREF_VIEWER_BACKGROUND" ), vtkGroup,
1216                        SalomeApp_Preferences::Color, "VTKViewer", "background" );
1217
1218   pref->setProperty( vtkTS, "min", 1 );
1219   pref->setProperty( vtkTS, "max", 150 );
1220 }
1221
1222 void SalomeApp_Application::preferencesChanged( const QString& sec, const QString& param )
1223 {
1224   SUIT_ResourceMgr* resMgr = resourceMgr();
1225   if ( !resMgr )
1226     return;
1227
1228   if ( sec == QString( "OCCViewer" ) && param == QString( "trihedron_size" ) )
1229   {
1230     int sz = resMgr->integerValue( sec, param, -1 );
1231     QPtrList<SUIT_ViewManager> lst;
1232     viewManagers( OCCViewer_Viewer::Type(), lst );
1233     for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current() && sz >= 0; ++it )
1234     {
1235       SUIT_ViewModel* vm = it.current()->getViewModel();
1236       if ( !vm || !vm->inherits( "OCCViewer_Viewer" ) )
1237         continue;
1238
1239       OCCViewer_Viewer* occVM = (OCCViewer_Viewer*)vm;
1240       occVM->setTrihedronSize( sz );
1241       occVM->getAISContext()->UpdateCurrentViewer();
1242     }
1243   }
1244
1245   if ( sec == QString( "VTKViewer" ) && param == QString( "trihedron_size" ) )
1246   {
1247     int sz = resMgr->integerValue( sec, param, -1 );
1248     QPtrList<SUIT_ViewManager> lst;
1249     viewManagers( SVTK_Viewer::Type(), lst );
1250     for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current() && sz >= 0; ++it )
1251     {
1252       SUIT_ViewModel* vm = it.current()->getViewModel();
1253       if ( !vm || !vm->inherits( "SVTK_Viewer" ) )
1254         continue;
1255
1256       SVTK_Viewer* vtkVM = (SVTK_Viewer*)vm;
1257       vtkVM->setTrihedronSize( sz );
1258       vtkVM->Repaint();
1259     }
1260   }
1261   /*
1262   if ( sec == QString( "OCCViewer" ) && ( param == QString( "iso_number_u" ) || param == QString( "iso_number_v" ) ) )
1263   {
1264     QPtrList<SUIT_ViewManager> lst;
1265     viewManagers( OCCViewer_Viewer::Type(), lst );
1266     int u = resMgr->integerValue( sec, "iso_number_u" );
1267     int v = resMgr->integerValue( sec, "iso_number_v" );
1268     for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current(); ++it )
1269       ((OCCViewer_Viewer*)it.current())->setIsos( u, v );
1270   }
1271   */
1272 }
1273
1274 void SalomeApp_Application::afterCloseDoc()
1275 {
1276   updateWindows();
1277
1278   CAM_Application::afterCloseDoc();
1279 }
1280
1281 CORBA::ORB_var SalomeApp_Application::orb()
1282 {
1283   ORB_INIT& init = *SINGLETON_<ORB_INIT>::Instance();
1284   static CORBA::ORB_var _orb = init( qApp->argc(), qApp->argv() );
1285   return _orb;
1286 }
1287
1288 SALOMEDSClient_StudyManager* SalomeApp_Application::studyMgr()
1289 {
1290   static SALOMEDSClient_StudyManager* _sm = new SALOMEDS_StudyManager();
1291   return _sm;
1292 }
1293
1294 SALOME_NamingService* SalomeApp_Application::namingService()
1295 {
1296   static SALOME_NamingService* _ns = new SALOME_NamingService( orb() );
1297   return _ns;
1298 }
1299
1300 SALOME_LifeCycleCORBA* SalomeApp_Application::lcc()
1301 {
1302   static SALOME_LifeCycleCORBA* _lcc = new SALOME_LifeCycleCORBA( namingService() );
1303   return _lcc;
1304 }
1305
1306 QString SalomeApp_Application::defaultEngineIOR()
1307 {
1308   // Look for a default module engine (needed for CORBAless modules to use SALOMEDS persistence)
1309   QString anIOR( "" );
1310   CORBA::Object_ptr anEngine = namingService()->Resolve( "/SalomeAppEngine" );
1311   if ( !CORBA::is_nil( anEngine ) )
1312     anIOR = orb()->object_to_string( anEngine );
1313   return anIOR;
1314 }
1315
1316 void SalomeApp_Application::moduleIconNames( QMap<QString, QString>& iconMap ) const
1317 {
1318   iconMap.clear();
1319
1320   SUIT_ResourceMgr* resMgr = resourceMgr();
1321   if ( !resMgr )
1322     return;
1323
1324   QStringList modList;
1325   modules( modList, false );
1326
1327   for ( QStringList::const_iterator it = modList.begin(); it != modList.end(); ++it )
1328   {
1329     QString modName = *it;
1330     QString modIntr = moduleName( modName );
1331     QString modIcon = resMgr->stringValue( modIntr, "icon", QString::null );
1332
1333     if ( modIcon.isEmpty() )
1334       continue;
1335
1336     if ( SUIT_Tools::extension( modIcon ).isEmpty() )
1337       modIcon += QString( ".png" );
1338
1339     iconMap.insert( modName, modIcon );
1340   }
1341 }
1342
1343 void SalomeApp_Application::updateModuleActions()
1344 {
1345   QString modName;
1346   if ( activeModule() )
1347     modName = activeModule()->moduleName();
1348
1349   if ( myActions.contains( modName ) )
1350     myActions[modName]->setOn( true );
1351 }
1352
1353 void SalomeApp_Application::currentWindows( QMap<int, int>& winMap ) const
1354 {
1355   winMap.clear();
1356   if ( !activeStudy() )
1357     return;
1358
1359   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
1360     ((SalomeApp_Module*)activeModule())->windows( winMap );
1361   else
1362     defaultWindows( winMap );
1363 }
1364
1365 void SalomeApp_Application::currentViewManagers( QStringList& lst ) const
1366 {
1367   lst.clear();
1368   if ( !activeStudy() )
1369     return;
1370
1371   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
1372     ((SalomeApp_Module*)activeModule())->viewManagers( lst );
1373   else
1374     defaultViewManagers( lst );
1375 }
1376
1377 void SalomeApp_Application::updateWindows()
1378 {
1379   QMap<int, int> winMap;
1380   currentWindows( winMap );
1381
1382   for ( QMap<int, int>::ConstIterator it = winMap.begin(); it != winMap.end(); ++it )
1383     getWindow( it.key() );
1384
1385   loadWindowsGeometry();
1386
1387   for ( WindowMap::ConstIterator itr = myWindows.begin(); itr != myWindows.end(); ++itr )
1388     setWindowShown( itr.key(), !itr.data()->isEmpty() && winMap.contains( itr.key() ) );
1389 }
1390
1391 void SalomeApp_Application::updateViewManagers()
1392 {
1393   QStringList lst;
1394   currentViewManagers( lst );
1395
1396   for ( QStringList::const_iterator it = lst.begin(); it != lst.end(); ++it )
1397     getViewManager( *it, true );
1398 }
1399
1400 void SalomeApp_Application::loadWindowsGeometry()
1401 {
1402   QtxDockAction* dockMgr = 0;
1403
1404   QAction* a = action( ViewWindowsId );
1405   if ( a && a->inherits( "QtxDockAction" ) )
1406     dockMgr = (QtxDockAction*)a;
1407
1408   if ( !dockMgr )
1409     return;
1410
1411   QString modName;
1412   if ( activeModule() )
1413     modName = moduleLibrary( activeModule()->moduleName(), false );
1414
1415   QString section = QString( "windows_geometry" );
1416   if ( !modName.isEmpty() )
1417     section += QString( "." ) + modName;
1418
1419   dockMgr->loadGeometry( resourceMgr(), section, false );
1420   dockMgr->restoreGeometry();
1421 }
1422
1423 void SalomeApp_Application::saveWindowsGeometry()
1424 {
1425   QtxDockAction* dockMgr = 0;
1426
1427   QAction* a = action( ViewWindowsId );
1428   if ( a && a->inherits( "QtxDockAction" ) )
1429     dockMgr = (QtxDockAction*)a;
1430
1431   if ( !dockMgr )
1432     return;
1433
1434   QString modName;
1435   if ( activeModule() )
1436     modName = moduleLibrary( activeModule()->moduleName(), false );
1437
1438   QString section = QString( "windows_geometry" );
1439   if ( !modName.isEmpty() )
1440     section += QString( "." ) + modName;
1441
1442   dockMgr->storeGeometry();
1443   dockMgr->saveGeometry( resourceMgr(), section, false );
1444 }
1445
1446 void SalomeApp_Application::activateWindows()
1447 {
1448   if ( activeStudy() )
1449   {
1450     for ( WindowMap::Iterator itr = myWindows.begin(); itr != myWindows.end(); ++itr )
1451       itr.data()->activate( activeStudy()->id() );
1452   }
1453 }
1454
1455 void SalomeApp_Application::onProperties()
1456 {
1457   SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( activeStudy() );
1458   if( !study )
1459     return;
1460
1461   _PTR(StudyBuilder) SB = study->studyDS()->NewBuilder();
1462   SB->NewCommand();
1463
1464   SalomeApp_StudyPropertiesDlg aDlg( desktop() );
1465   int res = aDlg.exec();
1466   if( res==QDialog::Accepted && aDlg.isChanged() )
1467     SB->CommitCommand();
1468   else
1469     SB->AbortCommand();
1470
1471   //study->updateCaptions();
1472 }
1473
1474 QString SalomeApp_Application::getFileName( bool open, const QString& initial, const QString& filters, 
1475                                             const QString& caption, QWidget* parent )
1476 {
1477   if ( !parent )
1478     parent = desktop();
1479   QStringList fls = QStringList::split( ";;", filters, false );
1480   return SUIT_FileDlg::getFileName( parent, initial, fls, caption, open, true );
1481 }
1482
1483 QString SalomeApp_Application::getDirectory( const QString& initial, const QString& caption, QWidget* parent )
1484 {
1485   if ( !parent )
1486     parent = desktop();
1487   return SUIT_FileDlg::getExistingDirectory( parent, initial, caption, true );
1488 }
1489
1490 QStringList SalomeApp_Application::getOpenFileNames( const QString& initial, const QString& filters, 
1491                                                      const QString& caption, QWidget* parent )
1492 {
1493   if ( !parent )
1494     parent = desktop();
1495   QStringList fls = QStringList::split( ";;", filters, false );
1496   return SUIT_FileDlg::getOpenFileNames( parent, initial, fls, caption, true );
1497 }
1498
1499 void SalomeApp_Application::contextMenuPopup( const QString& type, QPopupMenu* thePopup, QString& title )
1500 {
1501   CAM_Application::contextMenuPopup( type, thePopup, title );
1502   thePopup->insertSeparator();
1503   thePopup->insertItem( tr( "MEN_REFRESH" ), this, SLOT( onRefresh() ) );
1504   thePopup->insertItem( tr( "MEN_OPENWITH" ), this, SLOT( onOpenWith() ) );
1505 }
1506
1507 void SalomeApp_Application::updateObjectBrowser( const bool updateModels )
1508 {
1509   if ( updateModels ) 
1510   {
1511     for ( ModuleListIterator it = modules(); it.current(); ++it )
1512     {    
1513       CAM_DataModel* camDM = it.current()->dataModel();
1514       if ( camDM && camDM->inherits( "SalomeApp_DataModel" ) )
1515         ((SalomeApp_DataModel*)camDM)->update();
1516     }
1517   }
1518   if ( objectBrowser() )
1519     objectBrowser()->updateTree();
1520 }