]> SALOME platform Git repositories - modules/gui.git/blob - src/SalomeApp/SalomeApp_Application.cxx
Salome HOME
Fix for Bug IPAL8981(3.0.0: Add "Dump Study" into menu).
[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" ) );
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" ) );
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" ) );
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 );
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 ] );
407
408   bool cancelled = false;
409   while ( !modName.isEmpty() && !activeStudy() && !cancelled ){
410     SalomeApp_ModuleDlg aDlg( desktop(), modName, icon );
411     int res = aDlg.exec();
412
413     switch ( res ){
414     case 1:
415       onNewDoc();
416       break;
417     case 2:
418       onOpenDoc();
419       break;
420     case 3:
421       //onLoadStudy();
422       //break;
423     case 0:
424     default:
425       putInfo( tr("INF_CANCELLED") );
426       myActions[QString()]->setOn( true );
427       cancelled = true;
428     }
429   }
430
431   if ( !cancelled )
432     activateModule( modName );
433 }
434
435 QString SalomeApp_Application::defaultModule() const
436 {
437   QStringList aModuleNames;
438   modules( aModuleNames, false ); // obtain a complete list of module names for the current configuration
439   // If there's the one and only module --> activate it automatically
440   // TODO: Possible improvement - default module can be taken from preferences
441   return aModuleNames.count() > 1 ? "" : ( aModuleNames.count() ? aModuleNames.first() : "" );
442 }
443
444 void SalomeApp_Application::onNewWindow()
445 {
446   const QObject* obj = sender();
447   if ( !obj || !obj->inherits( "QAction" ) )
448     return;
449
450   QString type;
451   int id = actionId( (QAction*)obj );
452   switch ( id )
453   {
454   case NewGLViewId:
455     type = GLViewer_Viewer::Type();
456     break;
457   case NewPlot2dId:
458     type = Plot2d_Viewer::Type();
459     break;
460   case NewOCCViewId:
461     type = OCCViewer_Viewer::Type();
462     break;
463   case NewVTKViewId:
464     type = VTKViewer_Viewer::Type();
465     break;
466   }
467
468   if ( !type.isEmpty() )
469     createViewManager( type );
470 }
471
472 //=======================================================================
473 // name    : onNewDoc
474 // Purpose : SLOT. Create new document
475 //=======================================================================
476 void SalomeApp_Application::onNewDoc()
477 {
478   SUIT_Study* study = activeStudy();
479
480   saveWindowsGeometry();
481
482   CAM_Application::onNewDoc();
483
484   if ( !study ) // new study will be create in THIS application
485   {
486     updateWindows();
487     updateViewManagers();
488   }
489 }
490
491 //=======================================================================
492 // name    : onOpenDoc
493 // Purpose : SLOT. Open new document
494 //=======================================================================
495 void SalomeApp_Application::onOpenDoc()
496 {
497   SUIT_Study* study = activeStudy();
498   saveWindowsGeometry();
499
500   CAM_Application::onOpenDoc();
501
502   if ( !study ) // new study will be create in THIS application
503   {
504     updateWindows();
505     updateViewManagers();
506   }
507 }
508
509 bool SalomeApp_Application::onOpenDoc( const QString& aName )
510 {
511   bool res = CAM_Application::onOpenDoc( aName );
512
513   QAction* a = action( MRUId );
514   if ( a && a->inherits( "QtxMRUAction" ) )
515   {
516     QtxMRUAction* mru = (QtxMRUAction*)a;
517     if ( res )
518       mru->insert( aName );
519     else
520       mru->remove( aName );
521   }
522   return res;
523 }
524
525 void SalomeApp_Application::onSelection()
526 {
527   onSelectionChanged();
528
529   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
530     ((SalomeApp_Module*)activeModule())->selectionChanged();
531 }
532
533 void SalomeApp_Application::onSelectionChanged()
534 {
535  /*
536    SalomeApp_Module* module = dynamic_cast<SalomeApp_Module*>(activeModule());
537    if(module == NULL) return;
538    
539    QString ior = module->engineIOR();
540    if(ior.length() < 5) return; //Not a real CORBA IOR
541    CORBA::Object_var obj = orb()->string_to_object(ior.latin1());
542    if(CORBA::is_nil(obj)) return;
543    
544    SALOMEDS::Driver_var engine = SALOMEDS::Driver::_narrow(obj);
545    if(CORBA::is_nil(engine)) return;
546 */
547
548    SALOME_ListIO list;
549    SalomeApp_SelectionMgr* mgr = selectionMgr();
550    mgr->selectedObjects(list);
551    
552    SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>(activeStudy());
553    if(study == NULL) return;
554    
555    _PTR(Study) stdDS = study->studyDS();
556    if(!stdDS) return;
557    
558    QAction* qaction;  
559    
560    for ( SALOME_ListIteratorOfListIO it( list ); it.More(); it.Next() )
561    {
562       _PTR(SObject) so = stdDS->FindObjectID(it.Value()->getEntry());
563       qaction = action(EditCutId);
564       if( studyMgr()->CanCopy(so) ) {
565         qaction->setEnabled(true);
566         qaction = action(EditCopyId); 
567         qaction->setEnabled(true);  
568       }
569       else {
570         qaction->setEnabled(false);
571         qaction = action(EditCopyId);
572         qaction->setEnabled(false);         
573       }
574       qaction = action(EditPasteId);
575       if( studyMgr()->CanPaste(so) ) qaction->setEnabled(true);
576       else qaction->setEnabled(false);
577    } 
578 }               
579  
580 void SalomeApp_Application::onRefresh()
581 {
582   updateObjectBrowser( true );
583 }
584
585 void SalomeApp_Application::setActiveStudy( SUIT_Study* study )
586 {
587   CAM_Application::setActiveStudy( study );
588
589   activateWindows();
590 }
591
592 //=======================================================================
593 // name    : createNewStudy
594 // Purpose : Create new study
595 //=======================================================================
596 SUIT_Study* SalomeApp_Application::createNewStudy()
597 {
598   SalomeApp_Study* aStudy = new SalomeApp_Study( this );
599
600   // Set up processing of major study-related events
601   connect( aStudy, SIGNAL( created( SUIT_Study* ) ), this, SLOT( onStudyCreated( SUIT_Study* ) ) );
602   connect( aStudy, SIGNAL( opened ( SUIT_Study* ) ), this, SLOT( onStudyOpened ( SUIT_Study* ) ) );
603   connect( aStudy, SIGNAL( saved  ( SUIT_Study* ) ), this, SLOT( onStudySaved  ( SUIT_Study* ) ) );
604   connect( aStudy, SIGNAL( closed ( SUIT_Study* ) ), this, SLOT( onStudyClosed ( SUIT_Study* ) ) );
605
606   return aStudy;
607 }
608
609 //=======================================================================
610 // name    : createNewStudy
611 // Purpose : Enable/Disable menu items and toolbar buttons. Rebuild menu
612 //=======================================================================
613 void SalomeApp_Application::updateCommandsStatus()
614 {
615   CAM_Application::updateCommandsStatus();
616
617   for ( int id = NewGLViewId; id <= NewVTKViewId; id++ )
618   {
619     QAction* a = action( id );
620     if ( a )
621       a->setEnabled( activeStudy() );
622   }
623
624   // Dump study menu
625   QAction* a = action( DumpStudyId );
626   if ( a )
627     a->setEnabled( activeStudy() );
628
629   // Load script menu
630   a = action( LoadScriptId );
631   if ( a )
632     a->setEnabled( activeStudy() );
633   
634   a = action( PropertiesId );
635   if( a )
636     a->setEnabled( activeStudy() );
637     
638   a = action(EditCutId);
639   a->setEnabled(false); 
640   a = action(EditCopyId);
641   a->setEnabled(false);       
642   a = action(EditPasteId);
643   a->setEnabled(false);      
644 }
645
646 //=======================================================================
647 // name    : onHelpAbout
648 // Purpose : SLOT. Display "About" message box
649 //=======================================================================
650 void SalomeApp_Application::onHelpAbout()
651 {
652   SalomeApp_AboutDlg* dlg = new SalomeApp_AboutDlg( applicationName(), applicationVersion(), desktop() );
653   dlg->exec();
654   delete dlg;
655 }
656
657 QWidget* SalomeApp_Application::window( const int flag, const int studyId ) const
658 {
659   QWidget* wid = 0;
660
661   int sId = studyId;
662   if ( sId < 0 )
663   {
664     if ( !activeStudy() )
665       return 0;
666     else
667       sId = activeStudy()->id();
668   }
669
670   if ( myWindows.contains( flag ) )
671     wid = myWindows[flag]->widget( sId );
672
673   return wid;
674 }
675
676 void SalomeApp_Application::addWindow( QWidget* wid, const int flag, const int studyId )
677 {
678   if ( !wid )
679     return;
680
681   int sId = studyId;
682   if ( sId < 0 )
683   {
684     if ( !activeStudy() )
685       return;
686     else
687       sId = activeStudy()->id();
688   }
689
690   if ( !myWindows.contains( flag ) )
691   {
692     QMap<int, int> winMap;
693     currentWindows( winMap );
694
695     myWindows.insert( flag, new SalomeApp_WidgetContainer( flag, desktop() ) );
696     if ( winMap.contains( flag ) )
697       desktop()->moveDockWindow( myWindows[flag], (Dock)winMap[flag] );
698
699     myWindows[flag]->setResizeEnabled( true );
700     myWindows[flag]->setCloseMode( QDockWindow::Always );
701     myWindows[flag]->setName( QString( "dock_window_%1" ).arg( flag ) );
702   }
703
704   myWindows[flag]->insert( sId, wid );
705
706   setWindowShown( flag, !myWindows[flag]->isEmpty() );
707 }
708
709 void SalomeApp_Application::removeWindow( const int flag, const int studyId )
710 {
711   if ( !myWindows.contains( flag ) )
712     return;
713
714   int sId = studyId;
715   if ( sId < 0 )
716   {
717     if ( !activeStudy() )
718       return;
719     else
720       sId = activeStudy()->id();
721   }
722
723   QWidget* wid = myWindows[flag]->widget( sId );
724   myWindows[flag]->remove( sId );
725   delete wid;
726
727   setWindowShown( flag, !myWindows[flag]->isEmpty() );
728 }
729
730 QWidget* SalomeApp_Application::getWindow( const int flag, const int studyId )
731 {
732   QWidget* wid = window( flag, studyId );
733   if ( !wid )
734     addWindow( wid = createWindow( flag ), flag, studyId );
735
736   return wid;
737 }
738
739 bool SalomeApp_Application::isWindowVisible( const int type ) const
740 {
741   bool res = false;
742   if ( myWindows.contains( type ) )
743   {
744     SUIT_Desktop* desk = ((SalomeApp_Application*)this)->desktop();
745     res = desk && desk->appropriate( myWindows[type] );
746   }
747   return res;
748 }
749
750 void SalomeApp_Application::setWindowShown( const int type, const bool on )
751 {
752   if ( !desktop() || !myWindows.contains( type ) )
753     return;
754
755   QDockWindow* dw = myWindows[type];
756   desktop()->setAppropriate( dw, on );
757   on ? dw->show() : dw->hide();
758 }
759
760 OB_Browser* SalomeApp_Application::objectBrowser()
761 {
762   OB_Browser* ob = 0;
763   QWidget* wid = getWindow( WT_ObjectBrowser );
764   if ( wid->inherits( "OB_Browser" ) )
765     ob = (OB_Browser*)wid;
766   return ob;
767 }
768
769 LogWindow* SalomeApp_Application::logWindow()
770 {
771   LogWindow* lw = 0;
772   QWidget* wid = getWindow( WT_LogWindow );
773   if ( wid->inherits( "LogWindow" ) )
774     lw = (LogWindow*)wid;
775   return lw;
776 }
777
778 PythonConsole* SalomeApp_Application::pythonConsole()
779 {
780   PythonConsole* console = 0;
781   QWidget* wid = getWindow( WT_PyConsole );
782   if ( wid->inherits( "PythonConsole" ) )
783     console = (PythonConsole*)wid;
784   return console;
785 }
786
787 SalomeApp_Preferences* SalomeApp_Application::preferences() const
788 {
789   return preferences( false );
790 }
791
792 SUIT_ViewManager* SalomeApp_Application::getViewManager( const QString& vmType, const bool create )
793 {
794   SUIT_ViewManager* aVM = viewManager( vmType );
795   SUIT_ViewManager* anActiveVM = CAM_Application::activeViewManager();
796
797   if ( anActiveVM && anActiveVM->getType() == vmType )
798     aVM = anActiveVM;
799
800   if ( aVM && create )
801   {
802     if ( !aVM->getActiveView() )
803       aVM->createView();
804     else
805       aVM->getActiveView()->setFocus();
806   }
807   else if ( create )
808     aVM = createViewManager( vmType );
809
810   return aVM;
811 }
812
813 SUIT_ViewManager* SalomeApp_Application::createViewManager( const QString& vmType )
814 {
815   SUIT_ResourceMgr* resMgr = resourceMgr();
816
817   SUIT_ViewManager* viewMgr = 0;
818   if ( vmType == GLViewer_Viewer::Type() )
819   {
820     viewMgr = new GLViewer_ViewManager( activeStudy(), desktop() );
821     new SalomeApp_GLSelector( (GLViewer_Viewer2d*)viewMgr->getViewModel(), mySelMgr );
822   }
823   else if ( vmType == Plot2d_Viewer::Type() )
824   {
825     viewMgr = new Plot2d_ViewManager( activeStudy(), desktop() );
826     viewMgr->setViewModel( new SPlot2d_Viewer() );// custom view model, which extends SALOME_View interface
827   }
828   else if ( vmType == OCCViewer_Viewer::Type() )
829   {
830     viewMgr = new OCCViewer_ViewManager( activeStudy(), desktop() );
831     SOCC_Viewer* vm = new SOCC_Viewer();
832     vm->setBackgroundColor( resMgr->colorValue( "OCCViewer", "background", vm->backgroundColor() ) );
833     vm->setTrihedronSize( resMgr->integerValue( "OCCViewer", "trihedron_size", vm->trihedronSize() ) );
834     viewMgr->setViewModel( vm );// custom view model, which extends SALOME_View interface
835     new SalomeApp_OCCSelector( (OCCViewer_Viewer*)viewMgr->getViewModel(), mySelMgr );
836   }
837   else if ( vmType == SVTK_Viewer::Type() )
838   {
839     viewMgr = new SVTK_ViewManager( activeStudy(), desktop() );
840     SVTK_Viewer* vm = (SVTK_Viewer*)viewMgr->getViewModel();
841     vm->setBackgroundColor( resMgr->colorValue( "VTKViewer", "background", vm->backgroundColor() ) );
842     new SalomeApp_VTKSelector((SVTK_Viewer*)viewMgr->getViewModel(),mySelMgr);
843   }
844
845   if ( !viewMgr )
846     return 0;
847
848   addViewManager( viewMgr );
849   SUIT_ViewWindow* viewWin = viewMgr->createViewWindow();
850
851   if ( viewWin && desktop() )
852     viewWin->resize( (int)( desktop()->width() * 0.6 ), (int)( desktop()->height() * 0.6 ) );
853
854   connect( viewMgr, SIGNAL( lastViewClosed( SUIT_ViewManager* ) ),
855            this, SLOT( onCloseView( SUIT_ViewManager* ) ) );
856
857   return viewMgr;
858 }
859
860 void SalomeApp_Application::onCloseView( SUIT_ViewManager* theVM )
861 {
862   removeViewManager( theVM );
863 }
864
865 void SalomeApp_Application::onStudyCreated( SUIT_Study* theStudy )
866 {
867   SUIT_DataObject* aRoot = 0;
868   if ( theStudy && theStudy->root() )
869   {
870     aRoot = theStudy->root();
871     //aRoot->setName( tr( "DATA_MODELS" ) );
872   }
873   if ( objectBrowser() != 0 )
874     objectBrowser()->setRootObject( aRoot );
875
876   activateModule( defaultModule() );
877
878   activateWindows();
879 }
880
881 void SalomeApp_Application::onStudyOpened( SUIT_Study* theStudy )
882 {
883   SUIT_DataObject* aRoot = 0;
884   if ( theStudy && theStudy->root() )
885   {
886     aRoot = theStudy->root();
887     //aRoot->dump();
888   }
889   if ( objectBrowser() != 0 ) {
890     objectBrowser()->setRootObject( aRoot );
891   }
892
893   activateModule( defaultModule() );
894
895   activateWindows();
896
897   emit studyOpened();
898 }
899
900 void SalomeApp_Application::onStudySaved( SUIT_Study* )
901 {
902   emit studySaved();
903 }
904
905 void SalomeApp_Application::onStudyClosed( SUIT_Study* )
906 {
907   emit studyClosed();
908
909   activateModule( "" );
910
911   saveWindowsGeometry();
912 }
913
914 void SalomeApp_Application::onDumpStudy( )
915 {
916   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( activeStudy() );
917   if ( !appStudy ) return;
918   _PTR(Study) aStudy = appStudy->studyDS();
919
920   QStringList aFilters;
921   aFilters.append(tr("PYTHON_FILES_FILTER"));
922
923   SalomeApp_CheckFileDlg* fd = new SalomeApp_CheckFileDlg( desktop(), false, tr("PUBLISH_IN_STUDY"), true, true);
924   fd->setCaption(tr("TOT_DESK_FILE_DUMP_STUDY"));
925   fd->setFilters( aFilters );  
926   fd->SetChecked(true);
927   fd->exec();
928   QString aFileName = fd->selectedFile();
929   bool toPublish = fd->IsChecked();
930   delete fd;
931
932   if(!aFileName.isEmpty()) {
933     QFileInfo aFileInfo(aFileName);
934     aStudy->DumpStudy(aFileInfo.dirPath(true), aFileInfo.baseName(), toPublish);
935   }
936 }
937
938 void SalomeApp_Application::onLoadScript( )
939 {
940   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( activeStudy() );
941   if ( !appStudy ) return;
942   _PTR(Study) aStudy = appStudy->studyDS();
943
944   if ( aStudy->GetProperties()->IsLocked() ) {
945     SUIT_MessageBox::warn1 ( desktop(),
946                              QObject::tr("WRN_WARNING"),
947                              QObject::tr("WRN_STUDY_LOCKED"),
948                              QObject::tr("BUT_OK") );
949     return;
950   }
951
952   QStringList filtersList;
953   filtersList.append(tr("PYTHON_FILES_FILTER"));
954   filtersList.append(tr("ALL_FILES_FILTER"));
955
956   QString aFile = SUIT_FileDlg::getFileName( desktop(), "", filtersList, tr( "TOT_DESK_FILE_LOAD_SCRIPT" ), true, true );
957
958   if ( !aFile.isEmpty() )
959   {
960     QString command = QString("execfile(\"%1\")").arg(aFile);
961
962     PythonConsole* pyConsole = pythonConsole();
963
964     if ( pyConsole )
965       pyConsole->exec( command );
966   }
967 }
968
969 void SalomeApp_Application::onPreferences()
970 {
971   QApplication::setOverrideCursor( Qt::waitCursor );
972
973   SalomeApp_PreferencesDlg* prefDlg = new SalomeApp_PreferencesDlg( preferences( true ), desktop());
974
975   QApplication::restoreOverrideCursor();
976
977   if ( !prefDlg )
978     return;
979
980   prefDlg->exec();
981
982   delete prefDlg;
983 }
984
985 void SalomeApp_Application::onMRUActivated( QString aName )
986 {
987   onOpenDoc( aName );
988 }
989
990 void SalomeApp_Application::onPreferenceChanged( QString& modName, QString& section, QString& param )
991 {
992   SalomeApp_Module* sMod = 0;
993   CAM_Module* mod = module( modName );
994   if ( mod && mod->inherits( "SalomeApp_Module" ) )
995     sMod = (SalomeApp_Module*)mod;
996
997   if ( sMod )
998     sMod->preferencesChanged( section, param );
999   else
1000     preferencesChanged( section, param );
1001 }
1002
1003 QString SalomeApp_Application::getFileFilter() const
1004 {
1005   return "(*.hdf)";
1006 }
1007
1008 void SalomeApp_Application::beforeCloseDoc( SUIT_Study* s )
1009 {
1010   CAM_Application::beforeCloseDoc( s );
1011
1012   for ( WindowMap::ConstIterator itr = myWindows.begin(); s && itr != myWindows.end(); ++itr )
1013     removeWindow( itr.key(), s->id() );
1014 }
1015
1016 void SalomeApp_Application::updateActions()
1017 {
1018   updateCommandsStatus();
1019 }
1020
1021 QWidget* SalomeApp_Application::createWindow( const int flag )
1022 {
1023   QWidget* wid = 0;
1024
1025   SUIT_ResourceMgr* resMgr = resourceMgr();
1026
1027   if ( flag == WT_ObjectBrowser )
1028   {
1029     OB_Browser* ob = new OB_Browser( desktop() );
1030     ob->setAutoUpdate( true );
1031     ob->setAutoOpenLevel( 1 );
1032     ob->setCaption( tr( "OBJECT_BROWSER" ) );
1033     ob->resize( OBJECT_BROWSER_WIDTH, ob->height() );
1034     ob->setFilter( new SalomeApp_OBFilter( selectionMgr() ) );
1035
1036     ob->setNameTitle( tr( "OBJ_BROWSER_NAME" ) );
1037
1038     for ( int i = SalomeApp_DataObject::CT_Value; i <= SalomeApp_DataObject::CT_RefEntry; i++ )
1039     {
1040       ob->addColumn( tr( QString().sprintf( "OBJ_BROWSER_COLUMN_%d", i ) ), i );
1041       ob->setColumnShown( i, resMgr->booleanValue( "ObjectBrowser",
1042                                                    QString().sprintf( "visibility_column_%d", i ), true ) );
1043     }
1044
1045     // Create OBSelector
1046     new SalomeApp_OBSelector( ob, mySelMgr );
1047
1048     wid = ob;
1049
1050     ob->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1051   }
1052   else if ( flag == WT_PyConsole )
1053   {
1054     PythonConsole* pyCons = new PythonConsole( desktop(), new SalomeApp_PyInterp() );
1055     pyCons->setCaption( tr( "PYTHON_CONSOLE" ) );
1056     wid = pyCons;
1057
1058     //    pyCons->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1059   }
1060   else if ( flag == WT_LogWindow )
1061   {
1062     LogWindow* logWin = new LogWindow( desktop() );
1063     logWin->setCaption( tr( "LOG_WINDOW" ) );
1064     wid = logWin;
1065
1066     logWin->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
1067   }
1068
1069   return wid;
1070 }
1071
1072 void SalomeApp_Application::defaultWindows( QMap<int, int>& aMap ) const
1073 {
1074   aMap.insert( WT_ObjectBrowser, Qt::DockLeft );
1075   aMap.insert( WT_PyConsole, Qt::DockBottom );
1076   //  aMap.insert( WT_LogWindow, Qt::DockBottom );
1077 }
1078
1079 void SalomeApp_Application::defaultViewManagers( QStringList& ) const
1080 {
1081 }
1082
1083 SalomeApp_Preferences* SalomeApp_Application::preferences( const bool crt ) const
1084 {
1085   if ( myPrefs )
1086     return myPrefs;
1087
1088   SalomeApp_Application* that = (SalomeApp_Application*)this;
1089
1090   if ( !_prefs_ && crt )
1091   {
1092     _prefs_ = new SalomeApp_Preferences( resourceMgr() );
1093     that->createPreferences( _prefs_ );
1094   }
1095
1096   that->myPrefs = _prefs_;
1097
1098   QPtrList<SUIT_Application> appList = SUIT_Session::session()->applications();
1099   for ( QPtrListIterator<SUIT_Application> appIt ( appList ); appIt.current(); ++appIt )
1100   {
1101     if ( !appIt.current()->inherits( "SalomeApp_Application" ) )
1102       continue;
1103
1104     SalomeApp_Application* app = (SalomeApp_Application*)appIt.current();
1105
1106     QStringList modNameList;
1107     app->modules( modNameList, false );
1108     for ( QStringList::const_iterator it = modNameList.begin(); it != modNameList.end(); ++it )
1109     {
1110       int id = _prefs_->addPreference( *it );
1111       _prefs_->setProperty( id, "info", tr( "PREFERENCES_NOT_LOADED" ).arg( *it ) );
1112     }
1113
1114     ModuleList modList;
1115     app->modules( modList );
1116     for ( ModuleListIterator itr( modList ); itr.current(); ++itr )
1117     {
1118       SalomeApp_Module* mod = 0;
1119       if ( itr.current()->inherits( "SalomeApp_Module" ) )
1120         mod = (SalomeApp_Module*)itr.current();
1121
1122       if ( mod && !_prefs_->hasModule( mod->moduleName() ) )
1123         mod->createPreferences();
1124     }
1125   }
1126
1127   connect( myPrefs, SIGNAL( preferenceChanged( QString&, QString&, QString& ) ),
1128            this, SLOT( onPreferenceChanged( QString&, QString&, QString& ) ) );
1129
1130   return myPrefs;
1131 }
1132
1133 void SalomeApp_Application::moduleAdded( CAM_Module* mod )
1134 {
1135   CAM_Application::moduleAdded( mod );
1136
1137   SalomeApp_Module* salomeMod = 0;
1138   if ( mod && mod->inherits( "SalomeApp_Module" ) )
1139     salomeMod = (SalomeApp_Module*)mod;
1140
1141   if ( myPrefs && salomeMod && !myPrefs->hasModule( salomeMod->moduleName() ))
1142     salomeMod->createPreferences();
1143 }
1144
1145 void SalomeApp_Application::createPreferences( SalomeApp_Preferences* pref )
1146 {
1147   if ( !pref )
1148     return;
1149
1150   int salomeCat = pref->addPreference( tr( "PREF_CATEGORY_SALOME" ) );
1151
1152   int genTab = pref->addPreference( tr( "PREF_TAB_GENERAL" ), salomeCat );
1153
1154   int obGroup = pref->addPreference( tr( "PREF_GROUP_OBJBROWSER" ), genTab );
1155   for ( int i = SalomeApp_DataObject::CT_Value; i <= SalomeApp_DataObject::CT_RefEntry; i++ )
1156   {
1157     pref->addPreference( tr( QString().sprintf( "OBJ_BROWSER_COLUMN_%d", i ) ), obGroup,
1158                          SalomeApp_Preferences::Bool, "ObjectBrowser", QString().sprintf( "visibility_column_%d", i ) );
1159   }
1160   pref->setProperty( obGroup, "columns", 1 );
1161
1162   int viewTab = pref->addPreference( tr( "PREF_TAB_VIEWERS" ), salomeCat );
1163
1164   int occGroup = pref->addPreference( tr( "PREF_GROUP_OCCVIEWER" ), viewTab );
1165
1166   int vtkGroup = pref->addPreference( tr( "PREF_GROUP_VTKVIEWER" ), viewTab );
1167   pref->setProperty( occGroup, "columns", 1 );
1168   pref->setProperty( vtkGroup, "columns", 1 );
1169
1170   pref->addPreference( tr( "PREF_TRIHEDRON_SIZE" ), occGroup,
1171                        SalomeApp_Preferences::IntSpin, "OCCViewer", "trihedron_size" );
1172   pref->addPreference( tr( "PREF_VIEWER_BACKGROUND" ), occGroup,
1173                        SalomeApp_Preferences::Color, "OCCViewer", "background" );
1174
1175   pref->addPreference( tr( "PREF_TRIHEDRON_SIZE" ), vtkGroup,
1176                        SalomeApp_Preferences::IntSpin, "VTKViewer", "trihedron_size" );
1177   pref->addPreference( tr( "PREF_VIEWER_BACKGROUND" ), vtkGroup,
1178                        SalomeApp_Preferences::Color, "VTKViewer", "background" );
1179 }
1180
1181 void SalomeApp_Application::preferencesChanged( const QString& sec, const QString& param )
1182 {
1183   SUIT_ResourceMgr* resMgr = resourceMgr();
1184   if ( !resMgr )
1185     return;
1186
1187   if ( sec == QString( "OCCViewer" ) && param == QString( "trihedron_size" ) )
1188   {
1189     int sz = resMgr->integerValue( sec, param, -1 );
1190     QPtrList<SUIT_ViewManager> lst;
1191     viewManagers( OCCViewer_Viewer::Type(), lst );
1192     for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current() && sz >= 0; ++it )
1193     {
1194       SUIT_ViewModel* vm = it.current()->getViewModel();
1195       if ( !vm || !vm->inherits( "OCCViewer_Viewer" ) )
1196         continue;
1197
1198       OCCViewer_Viewer* occVM = (OCCViewer_Viewer*)vm;
1199       occVM->setTrihedronSize( sz );
1200       occVM->getAISContext()->UpdateCurrentViewer();
1201     }
1202   }
1203 }
1204
1205 void SalomeApp_Application::afterCloseDoc()
1206 {
1207   updateWindows();
1208
1209   CAM_Application::afterCloseDoc();
1210 }
1211
1212 CORBA::ORB_var SalomeApp_Application::orb()
1213 {
1214   ORB_INIT& init = *SINGLETON_<ORB_INIT>::Instance();
1215   static CORBA::ORB_var _orb = init( qApp->argc(), qApp->argv() );
1216   return _orb;
1217 }
1218
1219 SALOMEDSClient_StudyManager* SalomeApp_Application::studyMgr()
1220 {
1221   static SALOMEDSClient_StudyManager* _sm = new SALOMEDS_StudyManager();
1222   return _sm;
1223 }
1224
1225 SALOME_NamingService* SalomeApp_Application::namingService()
1226 {
1227   static SALOME_NamingService* _ns = new SALOME_NamingService( orb() );
1228   return _ns;
1229 }
1230
1231 SALOME_LifeCycleCORBA* SalomeApp_Application::lcc()
1232 {
1233   static SALOME_LifeCycleCORBA* _lcc = new SALOME_LifeCycleCORBA( namingService() );
1234   return _lcc;
1235 }
1236
1237 QString SalomeApp_Application::defaultEngineIOR()
1238 {
1239   // Look for a default module engine (needed for CORBAless modules to use SALOMEDS persistence)
1240   QString anIOR( "" );
1241   CORBA::Object_ptr anEngine = namingService()->Resolve( "/SalomeAppEngine" );
1242   if ( !CORBA::is_nil( anEngine ) )
1243     anIOR = orb()->object_to_string( anEngine );
1244   return anIOR;
1245 }
1246
1247 void SalomeApp_Application::moduleIconNames( QMap<QString, QString>& iconMap ) const
1248 {
1249   iconMap.clear();
1250
1251   SUIT_ResourceMgr* resMgr = resourceMgr();
1252   if ( !resMgr )
1253     return;
1254
1255   QStringList modList;
1256   modules( modList, false );
1257
1258   for ( QStringList::const_iterator it = modList.begin(); it != modList.end(); ++it )
1259   {
1260     QString modName = *it;
1261     QString modIntr = moduleName( modName );
1262     QString modIcon = resMgr->stringValue( modIntr, "icon", QString::null );
1263
1264     if ( modIcon.isEmpty() )
1265       continue;
1266
1267     if ( SUIT_Tools::extension( modIcon ).isEmpty() )
1268       modIcon += QString( ".png" );
1269
1270     iconMap.insert( modName, modIcon );
1271   }
1272 }
1273
1274 void SalomeApp_Application::updateModuleActions()
1275 {
1276   QString modName;
1277   if ( activeModule() )
1278     modName = activeModule()->moduleName();
1279
1280   if ( myActions.contains( modName ) )
1281     myActions[modName]->setOn( true );
1282 }
1283
1284 void SalomeApp_Application::currentWindows( QMap<int, int>& winMap ) const
1285 {
1286   winMap.clear();
1287   if ( !activeStudy() )
1288     return;
1289
1290   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
1291     ((SalomeApp_Module*)activeModule())->windows( winMap );
1292   else
1293     defaultWindows( winMap );
1294 }
1295
1296 void SalomeApp_Application::currentViewManagers( QStringList& lst ) const
1297 {
1298   lst.clear();
1299   if ( !activeStudy() )
1300     return;
1301
1302   if ( activeModule() && activeModule()->inherits( "SalomeApp_Module" ) )
1303     ((SalomeApp_Module*)activeModule())->viewManagers( lst );
1304   else
1305     defaultViewManagers( lst );
1306 }
1307
1308 void SalomeApp_Application::updateWindows()
1309 {
1310   QMap<int, int> winMap;
1311   currentWindows( winMap );
1312
1313   for ( QMap<int, int>::ConstIterator it = winMap.begin(); it != winMap.end(); ++it )
1314     getWindow( it.key() );
1315
1316   loadWindowsGeometry();
1317
1318   for ( WindowMap::ConstIterator itr = myWindows.begin(); itr != myWindows.end(); ++itr )
1319     setWindowShown( itr.key(), !itr.data()->isEmpty() && winMap.contains( itr.key() ) );
1320 }
1321
1322 void SalomeApp_Application::updateViewManagers()
1323 {
1324   QStringList lst;
1325   currentViewManagers( lst );
1326
1327   for ( QStringList::const_iterator it = lst.begin(); it != lst.end(); ++it )
1328     getViewManager( *it, true );
1329 }
1330
1331 void SalomeApp_Application::loadWindowsGeometry()
1332 {
1333   QtxDockAction* dockMgr = 0;
1334
1335   QAction* a = action( ViewWindowsId );
1336   if ( a && a->inherits( "QtxDockAction" ) )
1337     dockMgr = (QtxDockAction*)a;
1338
1339   if ( !dockMgr )
1340     return;
1341
1342   QString modName;
1343   if ( activeModule() )
1344     modName = moduleLibrary( activeModule()->moduleName(), false );
1345
1346   QString section = QString( "windows_geometry" );
1347   if ( !modName.isEmpty() )
1348     section += QString( "." ) + modName;
1349
1350   dockMgr->loadGeometry( resourceMgr(), section, false );
1351   dockMgr->restoreGeometry();
1352 }
1353
1354 void SalomeApp_Application::saveWindowsGeometry()
1355 {
1356   QtxDockAction* dockMgr = 0;
1357
1358   QAction* a = action( ViewWindowsId );
1359   if ( a && a->inherits( "QtxDockAction" ) )
1360     dockMgr = (QtxDockAction*)a;
1361
1362   if ( !dockMgr )
1363     return;
1364
1365   QString modName;
1366   if ( activeModule() )
1367     modName = moduleLibrary( activeModule()->moduleName(), false );
1368
1369   QString section = QString( "windows_geometry" );
1370   if ( !modName.isEmpty() )
1371     section += QString( "." ) + modName;
1372
1373   dockMgr->storeGeometry();
1374   dockMgr->saveGeometry( resourceMgr(), section, false );
1375 }
1376
1377 void SalomeApp_Application::activateWindows()
1378 {
1379   if ( activeStudy() )
1380   {
1381     for ( WindowMap::Iterator itr = myWindows.begin(); itr != myWindows.end(); ++itr )
1382       itr.data()->activate( activeStudy()->id() );
1383   }
1384 }
1385
1386 void SalomeApp_Application::onProperties()
1387 {
1388   SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( activeStudy() );
1389   if( !study )
1390     return;
1391
1392   _PTR(StudyBuilder) SB = study->studyDS()->NewBuilder();
1393   SB->NewCommand();
1394
1395   SalomeApp_StudyPropertiesDlg aDlg( desktop() );
1396   int res = aDlg.exec();
1397   if( res==QDialog::Accepted && aDlg.isChanged() )
1398     SB->CommitCommand();
1399   else
1400     SB->AbortCommand();
1401
1402   //study->updateCaptions();
1403 }
1404
1405 QString SalomeApp_Application::getFileName( bool open, const QString& initial, const QString& filters, 
1406                                             const QString& caption, QWidget* parent )
1407 {
1408   if ( !parent )
1409     parent = desktop();
1410   QStringList fls = QStringList::split( ";;", filters, false );
1411   return SUIT_FileDlg::getFileName( parent, initial, fls, caption, open, true );
1412 }
1413
1414 QString SalomeApp_Application::getDirectory( const QString& initial, const QString& caption, QWidget* parent )
1415 {
1416   if ( !parent )
1417     parent = desktop();
1418   return SUIT_FileDlg::getExistingDirectory( parent, initial, caption, true );
1419 }
1420
1421 QStringList SalomeApp_Application::getOpenFileNames( const QString& initial, const QString& filters, 
1422                                                      const QString& caption, QWidget* parent )
1423 {
1424   if ( !parent )
1425     parent = desktop();
1426   QStringList fls = QStringList::split( ";;", filters, false );
1427   return SUIT_FileDlg::getOpenFileNames( parent, initial, fls, caption, true );
1428 }
1429
1430 void SalomeApp_Application::contextMenuPopup( const QString& type, QPopupMenu* thePopup, QString& title )
1431 {
1432   CAM_Application::contextMenuPopup( type, thePopup, title );
1433   thePopup->insertSeparator();
1434   thePopup->insertItem( tr( "MEN_REFRESH" ), this, SLOT( onRefresh() ) );
1435 }
1436
1437 void SalomeApp_Application::updateObjectBrowser( const bool updateModels )
1438 {
1439   if ( updateModels ) 
1440   {
1441     for ( ModuleListIterator it = modules(); it.current(); ++it )
1442     {    
1443       CAM_DataModel* camDM = it.current()->dataModel();
1444       if ( camDM && camDM->inherits( "SalomeApp_DataModel" ) )
1445         ((SalomeApp_DataModel*)camDM)->update();
1446     }
1447   }
1448   if ( objectBrowser() )
1449     objectBrowser()->updateTree();
1450 }