Salome HOME
IPAL9086: STD_Application::onCloseDoc() : used clearViewManagers() instead reverse...
[modules/gui.git] / src / STD / STD_Application.cxx
1 #include "STD_Application.h"
2
3 #include "STD_MDIDesktop.h"
4
5 #include <SUIT_Tools.h>
6 #include <SUIT_Desktop.h>
7 #include <SUIT_Session.h>
8 #include <SUIT_ViewModel.h>
9 #include <SUIT_Operation.h>
10 #include <SUIT_MessageBox.h>
11 #include <SUIT_ResourceMgr.h>
12
13 #include <QtxDockAction.h>
14 #include <QtxActionMenuMgr.h>
15 #include <QtxActionToolMgr.h>
16 #include <QtxPopupMenu.h>
17
18 #include <qmenubar.h>
19 #include <qtoolbar.h>
20 #include <qpopupmenu.h>
21 #include <qstatusbar.h>
22 #include <qfiledialog.h>
23 #include <qapplication.h>
24
25 extern "C" STD_EXPORT SUIT_Application* createApplication()
26 {
27   return new STD_Application();
28 }
29
30 STD_Application::STD_Application()
31 : SUIT_Application(),
32 myEditEnabled( true ),
33 myActiveViewMgr( 0 )
34 {
35   STD_MDIDesktop* desk = new STD_MDIDesktop();
36
37   connect( desk, SIGNAL( closing( SUIT_Desktop*, QCloseEvent* ) ),
38            this, SLOT( onDesktopClosing( SUIT_Desktop*, QCloseEvent* ) ) );
39
40   setDesktop( desk );
41 }
42
43 STD_Application::~STD_Application()
44 {
45 }
46
47 QString STD_Application::applicationName() const
48 {
49   return QString( "StdApplication" );
50 }
51
52 void STD_Application::start()
53 {
54   createActions();
55
56   updateDesktopTitle();
57   updateCommandsStatus();
58   setEditEnabled( myEditEnabled );
59
60   SUIT_Application::start();
61 }
62
63 void STD_Application::onDesktopClosing( SUIT_Desktop*, QCloseEvent* e )
64 {
65   if ( !isPossibleToClose() )
66   {
67     e->ignore();
68     return;
69   }
70
71   SUIT_Study* study = activeStudy();
72
73   if ( study )
74     study->closeDocument();
75
76   setActiveStudy( 0 );
77   delete study;
78
79   setDesktop( 0 );
80
81   closeApplication();
82 }
83
84 void STD_Application::createActions()
85 {
86   SUIT_Desktop* desk = desktop();
87   SUIT_ResourceMgr* resMgr = resourceMgr();
88   if ( !desk || !resMgr )
89     return;
90
91   // Create actions
92
93   createAction( FileNewId, tr( "TOT_DESK_FILE_NEW" ),
94                 resMgr->loadPixmap( "STD", tr( "ICON_FILE_NEW" ) ),
95                 tr( "MEN_DESK_FILE_NEW" ), tr( "PRP_DESK_FILE_NEW" ),
96                 CTRL+Key_N, desk, false, this, SLOT( onNewDoc() ) );
97
98   createAction( FileOpenId, tr( "TOT_DESK_FILE_OPEN" ),
99                 resMgr->loadPixmap( "STD", tr( "ICON_FILE_OPEN" ) ),
100                 tr( "MEN_DESK_FILE_OPEN" ), tr( "PRP_DESK_FILE_OPEN" ),
101                 CTRL+Key_O, desk, false, this, SLOT( onOpenDoc() ) );
102
103   createAction( FileCloseId, tr( "TOT_DESK_FILE_CLOSE" ),
104                 resMgr->loadPixmap( "STD", tr( "ICON_FILE_CLOSE" ) ),
105                 tr( "MEN_DESK_FILE_CLOSE" ), tr( "PRP_DESK_FILE_CLOSE" ),
106                 CTRL+Key_W, desk, false, this, SLOT( onCloseDoc() ) );
107
108   createAction( FileExitId, tr( "TOT_DESK_FILE_EXIT" ), QIconSet(),
109                 tr( "MEN_DESK_FILE_EXIT" ), tr( "PRP_DESK_FILE_EXIT" ),
110                 CTRL+Key_Q, desk, false, this, SLOT( onExit() ) );
111
112   createAction( FileSaveId, tr( "TOT_DESK_FILE_SAVE" ),
113                 resMgr->loadPixmap( "STD", tr( "ICON_FILE_SAVE" ) ),
114                 tr( "MEN_DESK_FILE_SAVE" ), tr( "PRP_DESK_FILE_SAVE" ),
115                 CTRL+Key_S, desk, false, this, SLOT( onSaveDoc() ) );
116
117   createAction( FileSaveAsId, tr( "TOT_DESK_FILE_SAVEAS" ), QIconSet(),
118                 tr( "MEN_DESK_FILE_SAVEAS" ), tr( "PRP_DESK_FILE_SAVEAS" ),
119                 0, desk, false, this, SLOT( onSaveAsDoc() ) );
120
121   createAction( EditCutId, tr( "TOT_DESK_EDIT_CUT" ),
122                 resMgr->loadPixmap( "STD", tr( "ICON_EDIT_CUT" ) ),
123                 tr( "MEN_DESK_EDIT_CUT" ), tr( "PRP_DESK_EDIT_CUT" ),
124                 CTRL+Key_X, desk, false, this, SLOT( onCut() ) );
125
126   createAction( EditCopyId, tr( "TOT_DESK_EDIT_COPY" ),
127                 resMgr->loadPixmap( "STD", tr( "ICON_EDIT_COPY" ) ),
128                 tr( "MEN_DESK_EDIT_COPY" ), tr( "PRP_DESK_EDIT_COPY" ),
129                 CTRL+Key_C, desk, false, this, SLOT( onCopy() ) );
130
131   createAction( EditPasteId, tr( "TOT_DESK_EDIT_PASTE" ),
132                 resMgr->loadPixmap( "STD", tr( "ICON_EDIT_PASTE" ) ),
133                 tr( "MEN_DESK_EDIT_PASTE" ), tr( "PRP_DESK_EDIT_PASTE" ),
134                 CTRL+Key_V, desk, false, this, SLOT( onPaste() ) );
135
136   QAction* a = createAction( ViewStatusBarId, tr( "TOT_DESK_VIEW_STATUSBAR" ),
137                              QIconSet(), tr( "MEN_DESK_VIEW_STATUSBAR" ),
138                              tr( "PRP_DESK_VIEW_STATUSBAR" ), 0, desk, true );
139   a->setOn( desk->statusBar()->isVisibleTo( desk ) );
140   connect( a, SIGNAL( toggled( bool ) ), this, SLOT( onViewStatusBar( bool ) ) );
141
142   createAction( NewWindowId, tr( "TOT_DESK_NEWWINDOW" ), QIconSet(),
143                 tr( "MEN_DESK_NEWWINDOW" ), tr( "PRP_DESK_NEWWINDOW" ), 0, desk  );
144
145   createAction( HelpAboutId, tr( "TOT_DESK_HELP_ABOUT" ), QIconSet(),
146                 tr( "MEN_DESK_HELP_ABOUT" ), tr( "PRP_DESK_HELP_ABOUT" ),
147                 0, desk, false, this, SLOT( onHelpAbout() ) );
148
149   QtxDockAction* da = new QtxDockAction( tr( "TOT_DOCK_WINDOWS" ), tr( "MEN_DOCK_WINDOWS" ), desk );
150   registerAction( ViewWindowsId, da );
151   da->setAutoPlace( false );
152
153   // Create menus
154
155   int fileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
156   int editMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 10 );
157   int viewMenu = createMenu( tr( "MEN_DESK_VIEW" ), -1, -1, 10 );
158   int helpMenu = createMenu( tr( "MEN_DESK_HELP" ), -1, -1, 1000 );
159
160   // Create menu items
161
162   createMenu( FileNewId, fileMenu, 0 );
163   createMenu( FileOpenId, fileMenu, 0 );
164   createMenu( FileCloseId, fileMenu, 0 );
165   createMenu( separator(), fileMenu, -1, 0 );
166   createMenu( FileSaveId, fileMenu, 0 );
167   createMenu( FileSaveAsId, fileMenu, 0 );
168   createMenu( separator(), fileMenu, -1, 0 );
169
170   createMenu( separator(), fileMenu );
171   createMenu( FileExitId, fileMenu );
172
173   createMenu( EditCutId, editMenu );
174   createMenu( EditCopyId, editMenu );
175   createMenu( EditPasteId, editMenu );
176   createMenu( separator(), editMenu );
177
178   createMenu( ViewWindowsId, viewMenu );
179   createMenu( ViewStatusBarId, viewMenu );
180   createMenu( separator(), viewMenu );
181
182   createMenu( HelpAboutId, helpMenu );
183   createMenu( separator(), helpMenu );
184
185   // Create tool bars
186
187   int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ) );
188
189   // Create tool items
190
191   createTool( FileNewId, stdTBar );
192   createTool( FileOpenId, stdTBar );
193   createTool( FileSaveId, stdTBar );
194   createTool( FileCloseId, stdTBar );
195   createTool( separator(), stdTBar );
196   createTool( EditCutId, stdTBar );
197   createTool( EditCopyId, stdTBar );
198   createTool( EditPasteId, stdTBar );
199 }
200
201 /*!
202   Opens new application
203 */
204 void STD_Application::onNewDoc() 
205 {
206   if ( !activeStudy() )
207   {
208     createEmptyStudy();
209     activeStudy()->createDocument();
210     updateDesktopTitle();
211     updateCommandsStatus();
212   }
213   else
214   {
215     SUIT_Application* aApp = startApplication( 0, 0 );
216     if ( aApp->inherits( "STD_Application" ) )
217       ((STD_Application*)aApp)->onNewDoc();
218     else {
219       aApp->createEmptyStudy();
220       aApp->activeStudy()->createDocument();
221     }
222   }
223 }
224
225 void STD_Application::onOpenDoc()
226 {
227   // It is preferrable to use OS-specific file dialog box here !!!
228   QString aName = QFileDialog::getOpenFileName( QString::null, getFileFilter(), desktop() );
229   if ( aName.isNull() )
230     return;
231
232   if ( !activeStudy() )
233   {
234     // if no study - open in current desktop
235     createEmptyStudy();
236     activeStudy()->openDocument( aName );
237     updateDesktopTitle();
238     updateCommandsStatus();
239   }
240   else
241   {
242     // if study exists - open in new desktop. Check: is the same file is opened?
243     SUIT_Session* aSession = SUIT_Session::session();
244     QPtrList<SUIT_Application> aAppList = aSession->applications();
245     bool isAlreadyOpen = false;
246     SUIT_Application* aApp = 0;
247     for ( QPtrListIterator<SUIT_Application> it( aAppList ); it.current() && !isAlreadyOpen; ++it )
248     {
249       aApp = it.current();
250       if ( aApp->activeStudy()->studyName() == aName )
251         isAlreadyOpen = true;
252     }
253     if ( !isAlreadyOpen )
254     {
255       aApp = startApplication( 0, 0 );
256       if ( aApp )
257         aApp->useFile( aName );
258     }
259     else
260       aApp->desktop()->setActiveWindow();
261   }
262 }
263
264 void STD_Application::beforeCloseDoc( SUIT_Study* )
265 {
266 }
267
268 void STD_Application::afterCloseDoc()
269 {
270 }
271
272 void STD_Application::onCloseDoc()
273 {
274   if ( !isPossibleToClose() )
275     return;
276
277   SUIT_Study* study = activeStudy();
278
279   beforeCloseDoc( study );
280
281   if ( study )
282     study->closeDocument();
283
284   clearViewManagers();
285
286   setActiveStudy( 0 );
287   delete study;
288
289   int aNbStudies = 0;
290   QPtrList<SUIT_Application> apps = SUIT_Session::session()->applications();
291   for ( unsigned i = 0; i < apps.count(); i++ )
292     aNbStudies += apps.at( i )->getNbStudies();
293
294   // STV: aNbStudies - number of currently existing studies (exclude currently closed)
295   // STV: aNbStudies should be compared with 0.
296   if ( aNbStudies )
297     setDesktop( 0 );
298   else
299   {
300     updateDesktopTitle();
301     updateCommandsStatus();
302   }
303
304   afterCloseDoc();
305
306   if ( !desktop() )
307     closeApplication();
308 }
309
310 bool STD_Application::isPossibleToClose()
311 {
312   if ( activeStudy() )
313   {
314     activeStudy()->abortAllOperations();
315     if ( activeStudy()->isModified() )
316     {
317       QString sName = activeStudy()->studyName().stripWhiteSpace();
318       QString msg = sName.isEmpty() ? tr( "INF_DOC_MODIFIED" ) : tr ( "INF_DOCUMENT_MODIFIED" ).arg( sName );
319       int aAnswer = SUIT_MessageBox::warn3( desktop(), tr( "TOT_DESK_FILE_CLOSE" ), msg,
320                                             tr( "BUT_YES" ), tr( "BUT_NO" ), tr( "BUT_CANCEL" ), 1, 2, 3, 1 );
321       switch ( aAnswer )
322       {
323       case 1:
324         if ( !activeStudy()->isSaved() )
325           if ( !onSaveAsDoc() )
326             return false;
327         else
328           onSaveDoc();
329         break;
330       case 2:
331         break;
332       case 3:
333       default:
334         return false;
335       }
336     }
337   }
338   return true;
339 }
340
341 void STD_Application::onSaveDoc()
342 {
343   if ( !activeStudy() )
344     return;
345
346   if ( activeStudy()->isSaved() )
347   {
348     activeStudy()->saveDocument();
349     updateCommandsStatus();
350   }
351   else
352     onSaveAsDoc();
353 }
354
355 bool STD_Application::onSaveAsDoc()
356 {
357   SUIT_Study* study = activeStudy();
358   if ( !study )
359     return false;
360
361   QString aName, aUsedFilter, anOldPath = study->studyName();
362   bool isSelected = false;
363   while( !isSelected )
364   {
365     // It is preferrable to use OS-specific file dialog box here !!!
366     aName = QFileDialog::getSaveFileName( anOldPath, getFileFilter(), desktop(),
367                                           0, QString::null, &aUsedFilter);
368
369     if ( aName.isNull() )
370       break;
371
372     if ( !getFileFilter().isNull() )
373     { // check exstension and add if it is necessary
374       int aStart = aUsedFilter.find('*');
375       int aEnd = aUsedFilter.find(')', aStart + 1);
376       QString aExt = aUsedFilter.mid(aStart + 1, aEnd - aStart - 1);
377       if (aExt.contains('*') == 0 ) {  // if it is not *.*
378         // Check that there is an extension at the end of the name
379         QString aNameTail = aName.right(aExt.length());
380           if ( aNameTail != aExt )
381             aName += aExt;
382       }
383     }
384     QFile aFile( aName );
385     if ( aFile.exists() )
386     {
387       int aAnswer = SUIT_MessageBox::warn2( desktop(), tr("TIT_FILE_SAVEAS"),
388                                                      tr("MSG_FILE_EXISTS").arg(aName),
389                                                      tr("BUT_YES"), tr("BUT_NO"), 1, 2, 2);
390       if ( aAnswer != 2 )
391         isSelected = true;
392       else
393         anOldPath = aName; // Not to return to the same initial dir at each "while" step
394     }
395     else
396       isSelected = true;
397   }
398
399   if ( aName.isNull() ) 
400     return false;
401
402   study->saveDocumentAs( aName );
403   updateDesktopTitle();
404   updateCommandsStatus();
405   return true;
406 }
407
408 void STD_Application::onExit()
409 {
410   SUIT_Session::session()->closeSession();
411 }
412
413 void STD_Application::onCut()
414 {
415 }
416
417 void STD_Application::onCopy()
418 {
419 }
420
421 void STD_Application::onPaste()
422 {
423 }
424
425 void STD_Application::setEditEnabled( bool theEnable )
426 {
427   myEditEnabled = theEnable;
428
429   QtxActionMenuMgr* mMgr = desktop()->menuMgr();
430   QtxActionToolMgr* tMgr = desktop()->toolMgr();
431
432   for ( int i = EditCutId; i <= EditPasteId; i++ )
433   {
434     mMgr->setShown( i, myEditEnabled );
435     tMgr->setShown( i, myEditEnabled );
436   }
437 }
438
439 void STD_Application::useFile(const QString& theFileName)
440 {
441   SUIT_Application::useFile(theFileName);
442   updateDesktopTitle();
443   updateCommandsStatus();
444 }
445
446 void STD_Application::updateDesktopTitle()
447 {
448   QString aTitle = applicationName();
449   QString aVer = applicationVersion();
450   if ( !aVer.isEmpty() )
451     aTitle += QString( " " ) + aVer;
452
453   if ( activeStudy() )
454   {
455     QString sName = SUIT_Tools::file( activeStudy()->studyName().stripWhiteSpace(), false );
456     if ( !sName.isEmpty() )
457       aTitle += QString( " - [%1]" ).arg( sName );
458   }
459
460   desktop()->setCaption( aTitle );
461 }
462
463 void STD_Application::updateCommandsStatus()
464 {
465   bool aHasStudy = activeStudy() != 0;
466   bool aIsNeedToSave = false;
467   if ( aHasStudy ) 
468     aIsNeedToSave = !activeStudy()->isSaved() || activeStudy()->isModified();
469
470   if ( action( FileSaveId ) )
471     action( FileSaveId )->setEnabled( aIsNeedToSave );
472   if ( action( FileSaveAsId ) )
473     action( FileSaveAsId )->setEnabled( aHasStudy );
474   if ( action( FileCloseId ) )
475     action( FileCloseId )->setEnabled( aHasStudy );
476   if ( action( NewWindowId ) )
477     action( NewWindowId )->setEnabled( aHasStudy );
478 }
479
480 SUIT_ViewManager* STD_Application::viewManager( const QString& vmType ) const
481 {
482   SUIT_ViewManager* vm = 0;
483   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current() && !vm; ++it )
484   {
485     if ( it.current()->getType() == vmType )
486       vm = it.current();
487   }
488   return vm;
489 }
490
491 void STD_Application::viewManagers( const QString& vmType, ViewManagerList& lst ) const
492 {
493   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current(); ++it )
494     if ( it.current()->getType() == vmType )
495       lst.append( it.current() );
496 }
497
498 void STD_Application::viewManagers( ViewManagerList& lst ) const
499 {
500   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current(); ++it )
501     lst.append( it.current() );
502 }
503
504 ViewManagerList STD_Application::viewManagers() const
505 {
506   ViewManagerList lst;
507   viewManagers( lst );
508   return lst;
509 }
510
511 SUIT_ViewManager* STD_Application::activeViewManager() const
512 {
513   return myActiveViewMgr;
514 }
515
516 void STD_Application::addViewManager( SUIT_ViewManager* vm )
517 {
518   if ( !vm )
519     return;
520
521   if ( !containsViewManager( vm ) )
522   {
523     myViewMgrs.append( vm );
524     connect( vm, SIGNAL( activated( SUIT_ViewManager* ) ),
525              this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
526     vm->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
527
528     emit viewManagerAdded( vm );
529   }
530 /*
531   if ( !activeViewManager() && myViewMgrs.count() == 1 )
532     setActiveViewManager( vm );
533 */
534 }
535
536 void STD_Application::removeViewManager( SUIT_ViewManager* vm )
537 {
538   if ( !vm )
539     return;
540
541   vm->closeAllViews();
542
543   emit viewManagerRemoved( vm );
544
545   vm->disconnectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
546   vm->disconnect();
547   myViewMgrs.removeRef( vm );
548
549   if ( myActiveViewMgr == vm )
550     myActiveViewMgr = 0;
551 }
552
553 void STD_Application::clearViewManagers()
554 {
555   ViewManagerList lst;
556   viewManagers( lst );
557
558   for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current(); ++it )
559     removeViewManager( it.current() );
560 }
561
562 bool STD_Application::containsViewManager( SUIT_ViewManager* vm ) const
563 {
564   return myViewMgrs.contains( vm ) > 0;
565 }
566
567 void STD_Application::onViewManagerActivated( SUIT_ViewManager* vm )
568 {
569   setActiveViewManager( vm );
570 }
571
572 void STD_Application::onViewStatusBar( bool on )
573 {
574   if ( on )
575     desktop()->statusBar()->show();
576   else
577     desktop()->statusBar()->hide();
578 }
579
580 void STD_Application::onHelpAbout()
581 {
582   SUIT_MessageBox::info1( desktop(), tr( "About" ), tr( "ABOUT_INFO" ), "&OK" );
583 }
584
585 void STD_Application::createEmptyStudy()
586 {
587   SUIT_Application::createEmptyStudy();
588
589   SUIT_ViewManager* vm = new SUIT_ViewManager( activeStudy(), desktop(), new SUIT_ViewModel() );
590
591   addViewManager( vm );
592 }
593
594 void STD_Application::setActiveViewManager( SUIT_ViewManager* vm )
595 {
596   if ( !containsViewManager( vm ) )
597     return;
598
599   myActiveViewMgr = vm;
600   emit viewManagerActivated( vm );
601 }
602
603 void STD_Application::onConnectPopupRequest( SUIT_PopupClient* client, QContextMenuEvent* e )
604 {
605   QtxPopupMenu* popup = new QtxPopupMenu();
606   // fill popup by own items
607   QString title;
608   contextMenuPopup( client->popupClientType(), popup, title );
609   popup->setTitleText( title );
610
611   popup->insertSeparator();
612   // add items from popup client
613   client->contextMenuPopup( popup );
614   
615   SUIT_Tools::simplifySeparators( popup );
616
617   if ( popup->count() )
618     popup->exec( e->globalPos() );
619   delete popup;
620 }