1 // Copyright (C) 2007-2014 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, or (at your option) any later version.
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 // File: SalomeApp_Application.h
24 // Created: 10/22/2004 3:37:25 PM
25 // Author: Sergey LITONIN
27 #ifndef SALOMEAPP_APPLICATION_H
28 #define SALOMEAPP_APPLICATION_H
32 #endif // _MSC_VER > 1000
34 #include "SalomeApp.h"
35 #include <LightApp_Application.h>
37 #include <omniORB4/CORBA.h>
39 //#include <SALOMEconfig.h>
40 //#include CORBA_CLIENT_HEADER(SALOMEDS)
41 #include <SALOME_NamingService.hxx>
43 #include "SALOMEDSClient.hxx"
47 class LightApp_Preferences;
48 class SalomeApp_Study;
49 #ifndef DISABLE_PYCONSOLE
50 class SalomeApp_NoteBook;
53 class SALOME_LifeCycleCORBA;
57 #pragma warning( disable:4251 )
61 \class SalomeApp_Application
62 \brief Application containing SalomeApp module or LightApp module
65 class SALOMEAPP_EXPORT SalomeApp_Application : public LightApp_Application
70 enum { MenuToolsId = 5 };
71 enum { DumpStudyId = LightApp_Application::UserID, LoadScriptId, PropertiesId,
72 CatalogGenId, RegDisplayId, SaveGUIStateId, ConnectId, DisconnectId,
73 SimanCheckInId, SimanLocalCheckInId,
76 typedef enum { WT_NoteBook = LightApp_Application::WT_User,
81 enum { OpenRefresh = LightApp_Application::OpenReload + 1 };
82 enum { CloseDisconnectSave = LightApp_Application::CloseDiscard + 1, CloseDisconnect };
83 enum { LoadStudyId = LightApp_Application::OpenStudyId + 1, NewAndScriptId };
86 SalomeApp_Application();
87 virtual ~SalomeApp_Application();
89 virtual void updateObjectBrowser( const bool = true );
91 virtual QString getFileFilter() const;
95 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
97 virtual bool checkDataObject(LightApp_DataObject* theObj);
99 virtual bool checkExistingDoc();
101 static CORBA::ORB_var orb();
102 static SALOMEDSClient_StudyManager* studyMgr();
103 static SALOME_NamingService* namingService();
104 static SALOME_LifeCycleCORBA* lcc();
106 SUIT_ViewManager* newViewManager(const QString&);
107 void updateSavePointDataObjects( SalomeApp_Study* );
109 virtual bool isPossibleToClose( bool& );
111 virtual bool useStudy( const QString& );
112 virtual void updateDesktopTitle();
114 #ifndef DISABLE_PYCONSOLE
115 virtual void setNoteBook(SalomeApp_NoteBook* theNoteBook);
116 virtual SalomeApp_NoteBook* getNoteBook() const;
119 virtual bool renameAllowed( const QString& ) const;
120 virtual bool renameObject( const QString&, const QString& );
123 virtual void onLoadDoc();
124 virtual void onNewWithScript();
125 virtual bool onLoadDoc( const QString& );
126 virtual void onUnloadDoc( bool ask = true);
127 virtual void onCloseDoc( bool ask = true);
129 virtual void onExit();
130 virtual void onCopy();
131 virtual void onPaste();
132 void onSaveGUIState();// called from VISU
133 #ifndef DISABLE_PYCONSOLE
134 void onUpdateStudy(); // called from NoteBook
136 bool onRestoreStudy( const QString& theDumpScript,
137 const QString& theStudyName,
138 bool theIsStudySaved );
140 virtual void onCheckIn();
141 virtual void onLocalCheckIn();
144 void onStudyCreated( SUIT_Study* );
145 void onStudyOpened( SUIT_Study* );
146 void onDesktopMessage( const QString& );
149 virtual void createActions();
150 virtual SUIT_Study* createNewStudy();
151 virtual QWidget* createWindow( const int );
153 virtual void updateCommandsStatus();
154 virtual void onSelectionChanged();
156 virtual void createPreferences( LightApp_Preferences* );
158 virtual bool closeAction( const int, bool& );
159 virtual int closeChoice( const QString& );
161 virtual int openChoice( const QString& );
162 virtual bool openAction( const int, const QString& );
164 virtual QMap<int, QString> activateModuleActions() const;
165 virtual void moduleActionSelected( const int );
167 void objectBrowserColumnsVisibility();
169 #ifndef DISABLE_PYCONSOLE
173 virtual void afterCloseDoc();
176 void onDeleteInvalidReferences();
177 void onDblClick( SUIT_DataObject* );
182 void onDeleteGUIState();
183 void onRestoreGUIState();
191 void createExtraActions();
194 #ifndef DISABLE_PYCONSOLE
195 QPointer<SalomeApp_NoteBook> myNoteBook; // Notebook instance
197 QMap<QString, QAction*> myExtActions; // Map <AttributeUserID, QAction>
198 bool myIsSiman; // application corresponds to the siman study flag
199 bool myIsCloseFromExit; // "Close from Exit" flag
202 void dumpedStudyClosed( const QString& theDumpScript,
203 const QString& theStudyName,
204 bool theIsStudySaved );
205 void notebookVarUpdated( QString theVarName );
210 #pragma warning( default:4251 )