1 // Copyright (C) 2007-2024 CEA, EDF, 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"
49 class LightApp_Preferences;
50 class SalomeApp_Study;
51 #ifndef DISABLE_PYCONSOLE
52 class SalomeApp_NoteBook;
55 class SALOME_LifeCycleCORBA;
59 #pragma warning( disable:4251 )
63 \class SalomeApp_Application
64 \brief Application containing SalomeApp module or LightApp module
67 class SALOMEAPPIMPL_EXPORT SalomeApp_Application : public LightApp_Application
72 enum { MenuToolsId = 5 };
73 enum { DumpStudyId = LightApp_Application::UserID, LoadScriptId, PropertiesId,
74 CatalogGenId, RegDisplayId, FindActionId, SaveGUIStateId, ConnectId, DisconnectId,
77 typedef enum { WT_NoteBook = LightApp_Application::WT_User,
82 enum { OpenRefresh = LightApp_Application::OpenReload + 1 };
83 enum { CloseDisconnectSave = LightApp_Application::CloseDiscard + 1, CloseDisconnect };
84 enum { LoadStudyId = LightApp_Application::OpenStudyId + 1, NewAndScriptId };
87 SalomeApp_Application(SALOME_NamingService_Abstract *ns = nullptr);
88 virtual ~SalomeApp_Application();
90 virtual void updateObjectBrowser( const bool = true );
94 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
96 virtual bool checkDataObject(LightApp_DataObject* theObj);
98 virtual bool checkExistingDoc();
100 static CORBA::ORB_var orb();
101 static _PTR(Study) getStudy();
102 static SALOME_NamingService_Abstract* namingService();
103 static SALOME_LifeCycleCORBA* lcc();
105 SUIT_ViewManager* newViewManager(const QString&);
106 void updateSavePointDataObjects( SalomeApp_Study* );
108 virtual bool isPossibleToClose( bool& );
110 virtual bool useStudy( const QString& );
111 virtual void updateDesktopTitle();
113 #ifndef DISABLE_PYCONSOLE
114 virtual void setNoteBook(SalomeApp_NoteBook* theNoteBook);
115 virtual SalomeApp_NoteBook* getNoteBook() const;
118 virtual bool renameAllowed( const QString& ) const;
119 virtual bool renameObject( const QString&, const QString& );
122 virtual void onNewDoc();
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);
128 virtual void onOpenDoc();
129 virtual bool onOpenDoc( const QString& );
130 virtual bool onReopenDoc();
132 virtual void onExit();
133 virtual void onCopy();
134 virtual void onPaste();
135 void onSaveGUIState();// called from VISU
136 #ifndef DISABLE_PYCONSOLE
137 void onUpdateStudy(); // called from NoteBook
139 bool onRestoreStudy( const QString& theDumpScript,
140 const QString& theStudyName,
141 bool theIsStudySaved );
143 virtual void onDockWindowVisibilityChanged( bool );
146 void onStudyCreated( SUIT_Study* );
147 void onStudyOpened( SUIT_Study* );
148 void onDesktopMessage( const QString& );
150 virtual void onModuleActivation( const QString& );
153 virtual void createActions();
154 virtual SUIT_Study* createNewStudy();
155 virtual QWidget* createWindow( const int );
157 virtual void updateCommandsStatus();
158 virtual void onSelectionChanged();
160 virtual void createPreferences( LightApp_Preferences* );
162 virtual bool closeAction( const int, bool& );
163 virtual int closeChoice( const QString& );
165 virtual int openChoice( const QString& );
166 virtual bool openAction( const int, const QString& );
168 virtual QMap<int, QString> activateModuleActions() const;
169 virtual void moduleActionSelected( const int );
171 void objectBrowserColumnsVisibility();
173 #ifndef DISABLE_PYCONSOLE
175 virtual PyConsole_Interp* createPyInterp();
178 virtual bool canOpenDoc( const QString& );
179 virtual void afterCloseDoc();
181 virtual void addCatalogue( const QString&, const QString& );
184 void onDeleteInvalidReferences();
185 void onDblClick( SUIT_DataObject* );
190 void onDeleteGUIState();
191 void onRestoreGUIState();
200 void createExtraActions();
201 void ensureShaperIsActivated();
204 #ifndef DISABLE_PYCONSOLE
205 QPointer<SalomeApp_NoteBook> myNoteBook; // Notebook instance
207 QMap<QString, QAction*> myExtActions; // Map <AttributeUserID, QAction>
208 bool myIsCloseFromExit; // "Close from Exit" flag
210 bool myToIgnoreMessages;// to ignore messages from SALOMEDS
213 void dumpedStudyClosed( const QString& theDumpScript,
214 const QString& theStudyName,
215 bool theIsStudySaved );
216 void notebookVarUpdated( QString theVarName );
217 void objectDoubleClicked( SUIT_DataObject* );
219 static std::unique_ptr<SALOME_NamingService_Abstract> _ns;
223 #pragma warning( default:4251 )