1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "STD_Application.h"
25 #include "STD_MDIDesktop.h"
27 #include <SUIT_Tools.h>
28 #include <SUIT_Study.h>
29 #include <SUIT_Desktop.h>
30 #include <SUIT_Session.h>
31 #include <SUIT_MessageBox.h>
32 #include <SUIT_ViewManager.h>
33 #include <SUIT_ResourceMgr.h>
35 #include <QtxDockAction.h>
37 #include <QtxActionMenuMgr.h>
38 #include <QtxActionToolMgr.h>
42 #include <QCloseEvent>
43 #include <QFileDialog>
44 #include <QApplication>
46 /*!Create and return new instance of STD_Application*/
47 extern "C" STD_EXPORT SUIT_Application* createApplication()
49 return new STD_Application();
53 STD_Application::STD_Application()
56 myExitConfirm( true ),
59 setDesktop( new STD_MDIDesktop() );
63 STD_Application::~STD_Application()
68 /*! \retval requirement of exit confirmation*/
69 bool STD_Application::exitConfirmation() const
74 /*! Set the requirement of exit confirmation*/
75 void STD_Application::setExitConfirmation( const bool on )
80 /*! \retval QString "StdApplication"*/
81 QString STD_Application::applicationName() const
83 return QString( "StdApplication" );
86 /*!Start STD_Application*/
87 void STD_Application::start()
92 updateCommandsStatus();
93 setEditEnabled( myEditEnabled );
97 SUIT_Application::start();
101 Close the Application
103 void STD_Application::closeApplication()
107 SUIT_Study* study = activeStudy();
111 beforeCloseDoc( study );
113 study->closeDocument();
123 SUIT_Application::closeApplication();
126 /*!Event on closing desktop*/
127 void STD_Application::onDesktopClosing( SUIT_Desktop*, QCloseEvent* e )
129 if ( SUIT_Session::session()->applications().count() < 2 )
135 bool closePermanently;
136 if ( !isPossibleToClose( closePermanently ) )
145 /*!Create actions, menus and tools*/
146 void STD_Application::createActions()
148 SUIT_Desktop* desk = desktop();
149 SUIT_ResourceMgr* resMgr = resourceMgr();
150 if ( !desk || !resMgr )
155 createAction( FileNewId, tr( "TOT_DESK_FILE_NEW" ),
156 resMgr->loadPixmap( "STD", tr( "ICON_FILE_NEW" ) ),
157 tr( "MEN_DESK_FILE_NEW" ), tr( "PRP_DESK_FILE_NEW" ),
158 Qt::CTRL+Qt::Key_N, desk, false, this, SLOT( onNewDoc() ) );
160 createAction( FileOpenId, tr( "TOT_DESK_FILE_OPEN" ),
161 resMgr->loadPixmap( "STD", tr( "ICON_FILE_OPEN" ) ),
162 tr( "MEN_DESK_FILE_OPEN" ), tr( "PRP_DESK_FILE_OPEN" ),
163 Qt::CTRL+Qt::Key_O, desk, false, this, SLOT( onOpenDoc() ) );
165 createAction( FileReopenId, tr( "TOT_DESK_FILE_REOPEN" ), QIcon(),
166 tr( "MEN_DESK_FILE_REOPEN" ), tr( "PRP_DESK_FILE_REOPEN" ),
167 0, desk, false, this, SLOT( onReopenDoc() ) );
169 createAction( FileCloseId, tr( "TOT_DESK_FILE_CLOSE" ),
170 resMgr->loadPixmap( "STD", tr( "ICON_FILE_CLOSE" ) ),
171 tr( "MEN_DESK_FILE_CLOSE" ), tr( "PRP_DESK_FILE_CLOSE" ),
172 Qt::CTRL+Qt::Key_W, desk, false, this, SLOT( onCloseDoc() ) );
174 createAction( FileExitId, tr( "TOT_DESK_FILE_EXIT" ), QIcon(),
175 tr( "MEN_DESK_FILE_EXIT" ), tr( "PRP_DESK_FILE_EXIT" ),
176 Qt::CTRL+Qt::Key_Q, desk, false, this, SLOT( onExit() ) );
178 createAction( FileSaveId, tr( "TOT_DESK_FILE_SAVE" ),
179 resMgr->loadPixmap( "STD", tr( "ICON_FILE_SAVE" ) ),
180 tr( "MEN_DESK_FILE_SAVE" ), tr( "PRP_DESK_FILE_SAVE" ),
181 Qt::CTRL+Qt::Key_S, desk, false, this, SLOT( onSaveDoc() ) );
183 createAction( FileSaveAsId, tr( "TOT_DESK_FILE_SAVEAS" ), QIcon(),
184 tr( "MEN_DESK_FILE_SAVEAS" ), tr( "PRP_DESK_FILE_SAVEAS" ),
185 Qt::CTRL+Qt::SHIFT+Qt::Key_S, desk, false, this, SLOT( onSaveAsDoc() ) );
187 createAction( EditCopyId, tr( "TOT_DESK_EDIT_COPY" ),
188 resMgr->loadPixmap( "STD", tr( "ICON_EDIT_COPY" ) ),
189 tr( "MEN_DESK_EDIT_COPY" ), tr( "PRP_DESK_EDIT_COPY" ),
190 Qt::CTRL+Qt::Key_C, desk, false, this, SLOT( onCopy() ) );
192 createAction( EditPasteId, tr( "TOT_DESK_EDIT_PASTE" ),
193 resMgr->loadPixmap( "STD", tr( "ICON_EDIT_PASTE" ) ),
194 tr( "MEN_DESK_EDIT_PASTE" ), tr( "PRP_DESK_EDIT_PASTE" ),
195 Qt::CTRL+Qt::Key_V, desk, false, this, SLOT( onPaste() ) );
197 QAction* a = createAction( ViewStatusBarId, tr( "TOT_DESK_VIEW_STATUSBAR" ),
198 QIcon(), tr( "MEN_DESK_VIEW_STATUSBAR" ),
199 tr( "PRP_DESK_VIEW_STATUSBAR" ), Qt::ALT+Qt::SHIFT+Qt::Key_S, desk, true );
200 a->setChecked( desk->statusBar()->isVisibleTo( desk ) );
201 connect( a, SIGNAL( toggled( bool ) ), this, SLOT( onViewStatusBar( bool ) ) );
203 createAction( NewWindowId, tr( "TOT_DESK_NEWWINDOW" ), QIcon(),
204 tr( "MEN_DESK_NEWWINDOW" ), tr( "PRP_DESK_NEWWINDOW" ), 0, desk );
206 createAction( HelpAboutId, tr( "TOT_DESK_HELP_ABOUT" ), QIcon(),
207 tr( "MEN_DESK_HELP_ABOUT" ), tr( "PRP_DESK_HELP_ABOUT" ),
208 Qt::ALT+Qt::SHIFT+Qt::Key_A, desk, false, this, SLOT( onHelpAbout() ) );
211 QtxDockAction* dwa = new QtxDockAction( tr( "TOT_DOCKWINDOWS" ), tr( "MEN_DESK_VIEW_DOCKWINDOWS" ), desk );
212 dwa->setDockType( QtxDockAction::DockWidget );
213 registerAction( ViewWindowsId, dwa );
215 QtxDockAction* tba = new QtxDockAction( tr( "TOT_TOOLBARS" ), tr( "MEN_DESK_VIEW_TOOLBARS" ), desk );
216 tba->setDockType( QtxDockAction::ToolBar );
217 registerAction( ViewToolBarsId, tba );
221 int fileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, MenuFileId, 0 );
222 // Let the application developers insert some menus between Edit and View
223 int editMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, MenuEditId, 5 );
224 int viewMenu = createMenu( tr( "MEN_DESK_VIEW" ), -1, MenuViewId, 10 );
225 int helpMenu = createMenu( tr( "MEN_DESK_HELP" ), -1, MenuHelpId, 1000 );
229 createMenu( FileNewId, fileMenu, 0 );
230 createMenu( FileOpenId, fileMenu, 0 );
231 createMenu( FileReopenId, fileMenu, 0 );
232 createMenu( FileCloseId, fileMenu, 5 );
233 createMenu( separator(), fileMenu, -1, 5 );
234 createMenu( FileSaveId, fileMenu, 5 );
235 createMenu( FileSaveAsId, fileMenu, 5 );
236 createMenu( separator(), fileMenu, -1, 5 );
238 createMenu( separator(), fileMenu );
239 createMenu( FileExitId, fileMenu );
241 createMenu( EditCopyId, editMenu );
242 createMenu( EditPasteId, editMenu );
243 createMenu( separator(), editMenu );
245 createMenu( ViewToolBarsId, viewMenu, 0 );
246 createMenu( ViewWindowsId, viewMenu, 0 );
247 createMenu( separator(), viewMenu, -1, 10 );
248 createMenu( ViewStatusBarId, viewMenu, 10 );
249 createMenu( separator(), viewMenu );
251 createMenu( HelpAboutId, helpMenu );
252 createMenu( separator(), helpMenu );
256 int stdTBar = createTool( tr( "INF_DESK_TOOLBAR_STANDARD" ) );
260 createTool( FileNewId, stdTBar );
261 createTool( FileOpenId, stdTBar );
262 createTool( FileSaveId, stdTBar );
263 createTool( FileCloseId, stdTBar );
264 createTool( separator(), stdTBar );
265 createTool( EditCopyId, stdTBar );
266 createTool( EditPasteId, stdTBar );
269 /*!Opens new application*/
270 void STD_Application::onNewDoc()
272 onNewDoc( QString() );
275 /*!Opens new application*/
276 bool STD_Application::onNewDoc( const QString& name )
278 QApplication::setOverrideCursor( Qt::WaitCursor );
281 if ( !activeStudy() )
284 res = activeStudy()->createDocument( name );
286 studyCreated( activeStudy() );
289 SUIT_Study* st = activeStudy();
296 SUIT_Application* aApp = startApplication( 0, 0 );
297 if ( aApp->inherits( "STD_Application" ) )
298 res = ((STD_Application*)aApp)->onNewDoc( name );
301 aApp->createEmptyStudy();
302 res = aApp->activeStudy()->createDocument( name );
305 aApp->closeApplication();
308 QApplication::restoreOverrideCursor();
313 /*!Put file name from file dialog to onOpenDoc(const QString&) function*/
314 void STD_Application::onOpenDoc()
316 // It is preferrable to use OS-specific file dialog box here !!!
317 QString aName = getFileName( true, QString(), getFileFilter(), QString(), 0 );
318 if ( aName.isNull() )
324 /*! \retval true, if document was opened successful, else false.*/
325 bool STD_Application::onOpenDoc( const QString& aName )
327 QApplication::setOverrideCursor( Qt::WaitCursor );
329 bool res = openAction( openChoice( aName ), aName );
331 QApplication::restoreOverrideCursor();
336 /*! Reload document from the file.*/
337 bool STD_Application::onReopenDoc()
341 SUIT_Study* study = activeStudy();
342 if ( study && study->isSaved() ) {
343 // ask user for the confirmation
344 if ( SUIT_MessageBox::question( desktop(), tr( "REOPEN_STUDY" ), tr( "REOPEN_QUESTION" ),
345 SUIT_MessageBox::Yes | SUIT_MessageBox::No, SUIT_MessageBox::No
346 ) == SUIT_MessageBox::No )
349 // remember study name
350 QString studyName = study->studyName();
353 beforeCloseDoc( study );
354 study->closeDocument( true );
356 // update views / windows / status bar / title
359 updateDesktopTitle();
360 updateCommandsStatus();
366 // post closing actions
369 // reload study from the file
370 res = useFile( studyName ) && activeStudy();
372 // if reloading is failed, close the desktop
381 /*!Virtual function. Not implemented here.*/
382 void STD_Application::beforeCloseDoc( SUIT_Study* )
386 /*!Virtual function. Not implemented here.*/
387 void STD_Application::afterCloseDoc()
391 /*!Close document, if it's possible.*/
392 void STD_Application::onCloseDoc( bool ask )
394 bool closePermanently = true;
396 if ( ask && !isPossibleToClose( closePermanently ) )
399 SUIT_Study* study = activeStudy();
401 beforeCloseDoc( study );
404 study->closeDocument( closePermanently );
411 QList<SUIT_Application*> apps = SUIT_Session::session()->applications();
412 for ( int i = 0; i < apps.count(); i++ )
413 aNbStudies += apps.at( i )->getNbStudies();
422 updateDesktopTitle();
423 updateCommandsStatus();
426 // IPAL19532: deleting study should be performed after calling setDesktop(0)
435 /*!Check the application on closing.
436 * \retval true if possible, else false
438 bool STD_Application::isPossibleToClose( bool& closePermanently )
442 activeStudy()->abortAllOperations();
443 if ( activeStudy()->isModified() )
445 QString sName = activeStudy()->studyName().trimmed();
446 return closeAction( closeChoice( sName ), closePermanently );
452 int STD_Application::closeChoice( const QString& docName )
454 int answer = SUIT_MessageBox::question( desktop(), tr( "CLOSE_STUDY" ), tr( "CLOSE_QUESTION" ).arg( docName ),
455 SUIT_MessageBox::Save | SUIT_MessageBox::Discard | SUIT_MessageBox::Cancel,
456 SUIT_MessageBox::Save );
458 int res = CloseCancel;
459 if ( answer == SUIT_MessageBox::Save )
461 else if ( answer == SUIT_MessageBox::Discard )
467 bool STD_Application::closeAction( const int choice, bool& closePermanently )
473 if ( activeStudy()->isSaved() )
475 else if ( !onSaveAsDoc() )
488 int STD_Application::openChoice( const QString& aName )
490 SUIT_Session* aSession = SUIT_Session::session();
492 bool isAlreadyOpen = false;
493 QList<SUIT_Application*> aAppList = aSession->applications();
494 for ( QList<SUIT_Application*>::iterator it = aAppList.begin(); it != aAppList.end() && !isAlreadyOpen; ++it )
495 isAlreadyOpen = (*it)->activeStudy() && (*it)->activeStudy()->studyName() == aName;
496 return isAlreadyOpen ? OpenExist : OpenNew;
499 bool STD_Application::openAction( const int choice, const QString& aName )
506 SUIT_Application* aApp = 0;
507 SUIT_Session* aSession = SUIT_Session::session();
508 QList<SUIT_Application*> aAppList = aSession->applications();
509 for ( QList<SUIT_Application*>::iterator it = aAppList.begin(); it != aAppList.end() && !aApp; ++it )
511 if ( (*it)->activeStudy() && (*it)->activeStudy()->studyName() == aName )
515 aApp->desktop()->activateWindow();
521 if ( !activeStudy() )
522 res = useFile( aName );
525 SUIT_Application* aApp = startApplication( 0, 0 );
527 res = aApp->useFile( aName );
529 aApp->closeApplication();
540 /*!Save document if all ok, else error message.*/
541 void STD_Application::onSaveDoc()
543 if ( !activeStudy() )
547 if ( activeStudy()->isSaved() )
549 putInfo( tr( "INF_DOC_SAVING" ) + activeStudy()->studyName() );
551 QApplication::setOverrideCursor( Qt::WaitCursor );
553 isOk = activeStudy()->saveDocument();
555 QApplication::restoreOverrideCursor();
560 // displaying a message box as SUIT_Validator in case file can't be written (the most frequent case)
561 SUIT_MessageBox::critical( desktop(), tr( "ERR_ERROR" ),
562 tr( "INF_DOC_SAVING_FAILS" ).arg( activeStudy()->studyName() ) );
565 putInfo( tr( "INF_DOC_SAVED" ).arg( "" ) );
569 studySaved( activeStudy() );
574 /*! \retval TRUE, if doument saved successful, else FALSE.*/
575 bool STD_Application::onSaveAsDoc()
577 SUIT_Study* study = activeStudy();
584 QString aName = getFileName( false, study->studyName(), getFileFilter(), QString(), 0 );
585 if ( aName.isNull() )
588 QApplication::setOverrideCursor( Qt::WaitCursor );
590 putInfo( tr( "INF_DOC_SAVING" ) + aName );
591 isOk = study->saveDocumentAs( aName );
593 putInfo( isOk ? tr( "INF_DOC_SAVED" ).arg( aName ) : "" );
595 QApplication::restoreOverrideCursor();
598 SUIT_MessageBox::critical( desktop(), tr( "ERROR" ), tr( "INF_DOC_SAVING_FAILS" ).arg( aName ) );
601 studySaved( activeStudy() );
606 /*!Closing session.*/
607 void STD_Application::onExit()
609 int aAnswer = SUIT_MessageBox::Ok;
610 if ( exitConfirmation() )
611 aAnswer = SUIT_MessageBox::question( desktop(), tr( "INF_DESK_EXIT" ), tr( "QUE_DESK_EXIT" ),
612 SUIT_MessageBox::Ok | SUIT_MessageBox::Cancel, SUIT_MessageBox::Cancel );
613 if ( aAnswer == SUIT_MessageBox::Ok )
614 SUIT_Session::session()->closeSession();
617 /*!Virtual slot. Not implemented here.*/
618 void STD_Application::onCopy()
622 /*!Virtual slot. Not implemented here.*/
623 void STD_Application::onPaste()
627 /*!Sets \a theEnable for menu manager and for tool manager.*/
628 void STD_Application::setEditEnabled( bool theEnable )
630 myEditEnabled = theEnable;
632 QtxActionMenuMgr* mMgr = desktop()->menuMgr();
633 QtxActionToolMgr* tMgr = desktop()->toolMgr();
635 for ( int i = EditCopyId; i <= EditPasteId; i++ )
637 mMgr->setShown( mMgr->actionId(action(i)), myEditEnabled );
638 tMgr->setShown( tMgr->actionId(action(i)), myEditEnabled );
642 /*!\retval true, if document opened successful, else false.*/
643 bool STD_Application::useFile(const QString& theFileName)
645 bool res = SUIT_Application::useFile( theFileName );
648 studyOpened( activeStudy() );
653 /*!Update desktop title.*/
654 void STD_Application::updateDesktopTitle()
656 QString aTitle = applicationName();
657 QString aVer = applicationVersion();
658 if ( !aVer.isEmpty() )
659 aTitle += QString( " " ) + aVer;
663 QString sName = SUIT_Tools::file( activeStudy()->studyName().trimmed(), false );
664 if ( !sName.isEmpty() )
665 aTitle += QString( " - [%1]" ).arg( sName );
668 desktop()->setWindowTitle( aTitle );
671 /*!Update commands status.*/
672 void STD_Application::updateCommandsStatus()
674 SUIT_Application::updateCommandsStatus();
676 bool aHasStudy = activeStudy() != 0;
677 bool aSaved = aHasStudy && activeStudy()->isSaved();
678 bool aModified = aHasStudy && activeStudy()->isModified();
679 bool aIsNeedToSave = aHasStudy && ( !aSaved || aModified );
681 if ( action( FileReopenId ) )
682 action( FileReopenId )->setEnabled( aSaved );
683 if ( action( FileSaveId ) )
684 action( FileSaveId )->setEnabled( aIsNeedToSave );
685 if ( action( FileSaveAsId ) )
686 action( FileSaveAsId )->setEnabled( aHasStudy );
687 if ( action( FileCloseId ) )
688 action( FileCloseId )->setEnabled( aHasStudy );
689 if ( action( NewWindowId ) )
690 action( NewWindowId )->setEnabled( aHasStudy );
693 /*!\retval SUIT_ViewManager by viewer manager type name.*/
694 SUIT_ViewManager* STD_Application::viewManager( const QString& vmType ) const
696 SUIT_ViewManager* vm = 0;
697 for ( QList<SUIT_ViewManager*>::const_iterator it = myViewMgrs.begin(); it != myViewMgrs.end() && !vm; ++it )
699 if ( (*it)->getType() == vmType )
705 /*! \param vmType - input view manager type name
706 * \param lst - output list of view managers with types \a vmType.
708 void STD_Application::viewManagers( const QString& vmType, ViewManagerList& lst ) const
710 for ( QList<SUIT_ViewManager*>::const_iterator it = myViewMgrs.begin(); it != myViewMgrs.end(); ++it )
712 if ( (*it)->getType() == vmType )
717 /*!\param lst - output list of all view managers.*/
718 void STD_Application::viewManagers( ViewManagerList& lst ) const
720 for ( QList<SUIT_ViewManager*>::const_iterator it = myViewMgrs.begin(); it != myViewMgrs.end(); ++it )
724 /*!\retval ViewManagerList - const list of all view managers.*/
725 ViewManagerList STD_Application::viewManagers() const
732 /*!\retval SUIT_ViewManager - return pointer to active view manager.*/
733 SUIT_ViewManager* STD_Application::activeViewManager() const
735 return myActiveViewMgr;
738 /*!Add view manager to view managers list, if it not already there.*/
739 void STD_Application::addViewManager( SUIT_ViewManager* vm )
744 if ( !containsViewManager( vm ) )
746 myViewMgrs.append( vm );
747 connect( vm, SIGNAL( activated( SUIT_ViewManager* ) ),
748 this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
749 vm->connectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
751 emit viewManagerAdded( vm );
754 if ( !activeViewManager() && myViewMgrs.count() == 1 )
755 setActiveViewManager( vm );
759 /*!Remove view manager from view managers list.*/
760 void STD_Application::removeViewManager( SUIT_ViewManager* vm )
767 emit viewManagerRemoved( vm );
769 vm->disconnectPopupRequest( this, SLOT( onConnectPopupRequest( SUIT_PopupClient*, QContextMenuEvent* ) ) );
770 disconnect( vm, SIGNAL( activated( SUIT_ViewManager* ) ),
771 this, SLOT( onViewManagerActivated( SUIT_ViewManager* ) ) );
772 myViewMgrs.removeAll( vm );
774 if ( myActiveViewMgr == vm )
778 /*!Remove all view managers from view managers list.*/
779 void STD_Application::clearViewManagers()
784 for ( QList<SUIT_ViewManager*>::iterator it = lst.begin(); it != lst.end(); ++it )
786 QPointer<SUIT_ViewManager> vm = *it;
787 removeViewManager( vm );
792 /*!\retval TRUE, if view manager \a vm, already in view manager list (\a myViewMgrs).*/
793 bool STD_Application::containsViewManager( SUIT_ViewManager* vm ) const
795 return myViewMgrs.contains( vm );
798 /*!Private slot, sets active manager to \vm, if \vm in view managers list.*/
799 void STD_Application::onViewManagerActivated( SUIT_ViewManager* vm )
801 setActiveViewManager( vm );
804 /*!Sets status bar show, if \on = true, else status bar hide.*/
805 void STD_Application::onViewStatusBar( bool on )
808 desktop()->statusBar()->show();
810 desktop()->statusBar()->hide();
813 /*!Call SUIT_MessageBox::info1(...) with about information.*/
814 void STD_Application::onHelpAbout()
816 SUIT_MessageBox::information( desktop(), tr( "About" ), tr( "ABOUT_INFO" ) );
819 /*!Create empty study. \n
820 * Create new view manager and adding it to view managers list.
822 void STD_Application::createEmptyStudy()
824 SUIT_Application::createEmptyStudy();
827 /*!Sets active manager to \vm, if \vm in view managers list.*/
828 void STD_Application::setActiveViewManager( SUIT_ViewManager* vm )
830 if ( !containsViewManager( vm ) )
833 myActiveViewMgr = vm;
834 emit viewManagerActivated( vm );
838 void STD_Application::onConnectPopupRequest( SUIT_PopupClient* client, QContextMenuEvent* e )
840 QtxMenu* popup = new QtxMenu();
841 // fill popup by own items
843 contextMenuPopup( client->popupClientType(), popup, title );
844 popup->setTitleText( title );
846 popup->addSeparator();
847 // add items from popup client
848 client->contextMenuPopup( popup );
850 SUIT_Tools::simplifySeparators( popup );
852 if ( !popup->actions().isEmpty() )
853 popup->exec( e->globalPos() );
857 /*!\retval QString - return file name from dialog.*/
858 QString STD_Application::getFileName( bool open, const QString& initial, const QString& filters,
859 const QString& caption, QWidget* parent )
864 return QFileDialog::getOpenFileName( parent, caption, initial, filters );
869 QString anOldPath = initial;
874 // It is preferrable to use OS-specific file dialog box here !!!
875 aName = QFileDialog::getSaveFileName( parent, caption, anOldPath, filters, &aUsedFilter );
877 if ( aName.isNull() )
881 int aEnd = aUsedFilter.lastIndexOf( ')' );
882 int aStart = aUsedFilter.lastIndexOf( '(', aEnd );
883 QString wcStr = aUsedFilter.mid( aStart + 1, aEnd - aStart - 1 );
887 QRegExp rx( "[\b\\*]*\\.([\\w]+)" );
888 while ( ( idx = rx.indexIn( wcStr, idx ) ) != -1 )
890 extList.append( rx.cap( 1 ) );
891 idx += rx.matchedLength();
894 if ( !extList.isEmpty() && !extList.contains( SUIT_Tools::extension( aName ) ) )
895 aName += QString( ".%1" ).arg( extList.first() );
897 if ( QFileInfo( aName ).exists() )
899 int aAnswer = SUIT_MessageBox::question( desktop(), tr( "TIT_FILE_SAVEAS" ),
900 tr( "MSG_FILE_EXISTS" ).arg( aName ),
901 SUIT_MessageBox::Yes | SUIT_MessageBox::No | SUIT_MessageBox::Cancel, SUIT_MessageBox::Yes );
902 if ( aAnswer == SUIT_MessageBox::Cancel )
907 else if ( aAnswer == SUIT_MessageBox::No ) // not save to this file
908 anOldPath = aName; // not to return to the same initial dir at each "while" step
909 else // overwrite the existing file
920 /*!\retval QString - return directory name from dialog.*/
921 QString STD_Application::getDirectory( const QString& initial, const QString& caption, QWidget* parent )
926 return QFileDialog::getExistingDirectory( parent, caption, initial );
931 \param desk - new desktop
933 void STD_Application::setDesktop( SUIT_Desktop* desk )
935 SUIT_Application::setDesktop( desk );
938 connect( desk, SIGNAL( closing( SUIT_Desktop*, QCloseEvent* ) ),
939 this, SLOT( onDesktopClosing( SUIT_Desktop*, QCloseEvent* ) ), Qt::UniqueConnection );
944 Allow to load preferences before the desktop will be shown.
946 void STD_Application::loadPreferences()
951 Allow to save preferences before the application will be closed.
953 void STD_Application::savePreferences()
958 Custom activity after study is created
959 Updates desktop and actions
961 void STD_Application::studyCreated( SUIT_Study* )
963 updateDesktopTitle();
964 updateCommandsStatus();
968 Custom activity after study is opened
969 Updates desktop and actions
971 void STD_Application::studyOpened( SUIT_Study* )
973 updateDesktopTitle();
974 updateCommandsStatus();
978 Custom activity after study is opened
979 Updates desktop and actions
981 void STD_Application::studySaved( SUIT_Study* )
983 updateDesktopTitle();
984 updateCommandsStatus();
988 Return index of the view ma
990 int STD_Application::viewManagerId( const SUIT_ViewManager* theManager) const
992 return myViewMgrs.indexOf(const_cast<SUIT_ViewManager*>(theManager));