Salome HOME
getFileName() function is defined as pure virtual public in the SUIT_Application...
[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 = getFileName( true, QString::null, getFileFilter(), QString::null, 0 );
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   bool isOk = false;
347   if ( activeStudy()->isSaved() )
348   {
349     isOk = activeStudy()->saveDocument();
350     if ( !isOk )
351       SUIT_MessageBox::error1( desktop(), tr( "TIT_FILE_SAVEAS" ),
352                                tr( "MSG_CANT_SAVE" ).arg( activeStudy()->studyName() ), tr( "BUT_OK" ) );
353   }
354
355   if ( isOk )
356     updateCommandsStatus();
357   else
358     onSaveAsDoc();
359 }
360
361 bool STD_Application::onSaveAsDoc()
362 {
363   SUIT_Study* study = activeStudy();
364   if ( !study )
365     return false;
366
367   QString aName = getFileName( false, study->studyName(), getFileFilter(), QString::null, 0 );
368
369   if ( aName.isNull() ) 
370     return false;
371   bool isOk = study->saveDocumentAs( aName );
372
373   updateDesktopTitle();
374   updateCommandsStatus();
375
376   return isOk;
377 }
378
379 void STD_Application::onExit()
380 {
381   SUIT_Session::session()->closeSession();
382 }
383
384 void STD_Application::onCut()
385 {
386 }
387
388 void STD_Application::onCopy()
389 {
390 }
391
392 void STD_Application::onPaste()
393 {
394 }
395
396 void STD_Application::setEditEnabled( bool theEnable )
397 {
398   myEditEnabled = theEnable;
399
400   QtxActionMenuMgr* mMgr = desktop()->menuMgr();
401   QtxActionToolMgr* tMgr = desktop()->toolMgr();
402
403   for ( int i = EditCutId; i <= EditPasteId; i++ )
404   {
405     mMgr->setShown( i, myEditEnabled );
406     tMgr->setShown( i, myEditEnabled );
407   }
408 }
409
410 void STD_Application::useFile(const QString& theFileName)
411 {
412   SUIT_Application::useFile(theFileName);
413   updateDesktopTitle();
414   updateCommandsStatus();
415 }
416
417 void STD_Application::updateDesktopTitle()
418 {
419   QString aTitle = applicationName();
420   QString aVer = applicationVersion();
421   if ( !aVer.isEmpty() )
422     aTitle += QString( " " ) + aVer;
423
424   if ( activeStudy() )
425   {
426     QString sName = SUIT_Tools::file( activeStudy()->studyName().stripWhiteSpace(), false );
427     if ( !sName.isEmpty() )
428       aTitle += QString( " - [%1]" ).arg( sName );
429   }
430
431   desktop()->setCaption( aTitle );
432 }
433
434 void STD_Application::updateCommandsStatus()
435 {
436   bool aHasStudy = activeStudy() != 0;
437   bool aIsNeedToSave = false;
438   if ( aHasStudy ) 
439     aIsNeedToSave = !activeStudy()->isSaved() || activeStudy()->isModified();
440
441   if ( action( FileSaveId ) )
442     action( FileSaveId )->setEnabled( aIsNeedToSave );
443   if ( action( FileSaveAsId ) )
444     action( FileSaveAsId )->setEnabled( aHasStudy );
445   if ( action( FileCloseId ) )
446     action( FileCloseId )->setEnabled( aHasStudy );
447   if ( action( NewWindowId ) )
448     action( NewWindowId )->setEnabled( aHasStudy );
449 }
450
451 SUIT_ViewManager* STD_Application::viewManager( const QString& vmType ) const
452 {
453   SUIT_ViewManager* vm = 0;
454   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current() && !vm; ++it )
455   {
456     if ( it.current()->getType() == vmType )
457       vm = it.current();
458   }
459   return vm;
460 }
461
462 void STD_Application::viewManagers( const QString& vmType, ViewManagerList& lst ) const
463 {
464   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current(); ++it )
465     if ( it.current()->getType() == vmType )
466       lst.append( it.current() );
467 }
468
469 void STD_Application::viewManagers( ViewManagerList& lst ) const
470 {
471   for ( QPtrListIterator<SUIT_ViewManager> it( myViewMgrs ); it.current(); ++it )
472     lst.append( it.current() );
473 }
474
475 ViewManagerList STD_Application::viewManagers() const
476 {
477   ViewManagerList lst;
478   viewManagers( lst );
479   return lst;
480 }
481
482 SUIT_ViewManager* STD_Application::activeViewManager() const
483 {
484   return myActiveViewMgr;
485 }
486
487 void STD_Application::addViewManager( SUIT_ViewManager* vm )
488 {
489   if ( !vm )
490     return;
491
492   if ( !containsViewManager( vm ) )
493   {
494     myViewMgrs.append( vm );
495     connect( vm, SIGNAL( activated( SUIT_ViewManager* ) ),
496              this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
497     vm->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
498
499     emit viewManagerAdded( vm );
500   }
501 /*
502   if ( !activeViewManager() && myViewMgrs.count() == 1 )
503     setActiveViewManager( vm );
504 */
505 }
506
507 void STD_Application::removeViewManager( SUIT_ViewManager* vm )
508 {
509   if ( !vm )
510     return;
511
512   vm->closeAllViews();
513
514   emit viewManagerRemoved( vm );
515
516   vm->disconnectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
517   vm->disconnect();
518   myViewMgrs.removeRef( vm );
519
520   if ( myActiveViewMgr == vm )
521     myActiveViewMgr = 0;
522 }
523
524 void STD_Application::clearViewManagers()
525 {
526   ViewManagerList lst;
527   viewManagers( lst );
528
529   for ( QPtrListIterator<SUIT_ViewManager> it( lst ); it.current(); ++it )
530     removeViewManager( it.current() );
531 }
532
533 bool STD_Application::containsViewManager( SUIT_ViewManager* vm ) const
534 {
535   return myViewMgrs.contains( vm ) > 0;
536 }
537
538 void STD_Application::onViewManagerActivated( SUIT_ViewManager* vm )
539 {
540   setActiveViewManager( vm );
541 }
542
543 void STD_Application::onViewStatusBar( bool on )
544 {
545   if ( on )
546     desktop()->statusBar()->show();
547   else
548     desktop()->statusBar()->hide();
549 }
550
551 void STD_Application::onHelpAbout()
552 {
553   SUIT_MessageBox::info1( desktop(), tr( "About" ), tr( "ABOUT_INFO" ), "&OK" );
554 }
555
556 void STD_Application::createEmptyStudy()
557 {
558   SUIT_Application::createEmptyStudy();
559
560   SUIT_ViewManager* vm = new SUIT_ViewManager( activeStudy(), desktop(), new SUIT_ViewModel() );
561
562   addViewManager( vm );
563 }
564
565 void STD_Application::setActiveViewManager( SUIT_ViewManager* vm )
566 {
567   if ( !containsViewManager( vm ) )
568     return;
569
570   myActiveViewMgr = vm;
571   emit viewManagerActivated( vm );
572 }
573
574 void STD_Application::onConnectPopupRequest( SUIT_PopupClient* client, QContextMenuEvent* e )
575 {
576   QtxPopupMenu* popup = new QtxPopupMenu();
577   // fill popup by own items
578   QString title;
579   contextMenuPopup( client->popupClientType(), popup, title );
580   popup->setTitleText( title );
581
582   popup->insertSeparator();
583   // add items from popup client
584   client->contextMenuPopup( popup );
585   
586   SUIT_Tools::simplifySeparators( popup );
587
588   if ( popup->count() )
589     popup->exec( e->globalPos() );
590   delete popup;
591 }
592
593 QString STD_Application::getFileName( bool open, const QString& initial, const QString& filters, 
594                                       const QString& caption, QWidget* parent )
595 {
596   if ( !parent )
597     parent = desktop();
598   QStringList fls = QStringList::split( ";", filters, false );
599   if ( open ) 
600   {
601     return QFileDialog::getOpenFileName( initial, fls.join( ";;" ), parent, 0, caption );
602   }
603   else
604   {
605     QString aName;
606     QString aUsedFilter;
607     QString anOldPath = initial;
608
609     bool isOk = false;
610     while ( !isOk )
611     {
612       // It is preferrable to use OS-specific file dialog box here !!!
613       aName = QFileDialog::getSaveFileName( anOldPath, fls.join( ";;" ), parent,
614                                             0, caption, &aUsedFilter);
615
616       if ( aName.isNull() )
617         isOk = true;
618       else
619       {
620         if ( !getFileFilter().isNull() ) // check extension and add if it is necessary
621         {
622           int aStart = aUsedFilter.find( '*' );
623           int aEnd = aUsedFilter.find( ')', aStart + 1 );
624           QString aExt = aUsedFilter.mid( aStart + 1, aEnd - aStart - 1 );
625           if ( aExt.contains( '*' ) == 0 ) // if it is not *.*
626           {
627             // Check that there is an extension at the end of the name
628             QString aNameTail = aName.right( aExt.length() );
629             if ( aNameTail != aExt )
630               aName += aExt;
631           }
632         }
633         if ( QFileInfo( aName ).exists() )
634         {
635           int aAnswer = SUIT_MessageBox::warn3( desktop(), tr( "TIT_FILE_SAVEAS" ),
636                                                 tr( "MSG_FILE_EXISTS" ).arg( aName ),
637                                                 tr( "BUT_YES" ), tr( "BUT_NO" ), tr( "BUT_CANCEL" ), 1, 2, 3, 1 );
638           if ( aAnswer == 3 ) {     // cancelled
639             aName = QString::null;
640             isOk = true;
641           }
642           else if ( aAnswer == 2 ) // not save to this file
643             anOldPath = aName;             // not to return to the same initial dir at each "while" step
644           else                     // overwrite the existing file
645             isOk = true;
646         }
647         else
648           isOk = true;
649       }
650     }
651     return aName;
652   }
653 }