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: LightApp_Application.h
24 // Created: 6/20/2005 18:39:25 PM
27 #ifndef LIGHTAPP_APPLICATION_H
28 #define LIGHTAPP_APPLICATION_H
32 #endif // _MSC_VER > 1000
35 #include <SUIT_TreeModel.h>
36 #include <SUIT_DataObject.h>
37 #include <CAM_Application.h>
40 #include <QStringList>
43 #ifndef DISABLE_PYCONSOLE
44 class PyConsole_Console;
45 class PyConsole_Interp;
47 class LightApp_WidgetContainer;
48 class LightApp_Preferences;
49 class LightApp_SelectionMgr;
50 class LightApp_FullScreenHelper;
51 class LightApp_DataObject;
52 class SUIT_DataBrowser;
65 #pragma warning( disable:4251 )
69 Description : Application containing only LightApp module
72 class LIGHTAPP_EXPORT LightApp_Application : public CAM_Application, public SUIT_DataSearcher
77 typedef enum { WT_ObjectBrowser,
78 #ifndef DISABLE_PYCONSOLE
85 enum { MenuWindowId = 6 };
87 enum { RenameId = CAM_Application::UserID,
88 CloseId, CloseAllId, GroupAllId,
89 PreferencesId, MRUId, ModulesListId,
90 NewGLViewId, NewPlot2dId, NewOCCViewId, NewVTKViewId,
91 NewQxSceneViewId, NewGraphicsViewId, NewPVViewId, StyleId, FullScreenId,
95 enum { NewStudyId = 1, OpenStudyId };
97 enum BrowsePolicy { BP_Never = 0, BP_ApplyAndClose, BP_Always };
100 LightApp_Application();
101 virtual ~LightApp_Application();
103 virtual QString applicationName() const;
104 virtual QString applicationVersion() const;
106 virtual CAM_Module* loadModule( const QString&, const bool = true );
107 virtual bool activateModule( const QString& );
109 LightApp_SelectionMgr* selectionMgr() const;
111 LogWindow* logWindow();
112 SUIT_DataBrowser* objectBrowser();
113 #ifndef DISABLE_PYCONSOLE
114 PyConsole_Console* pythonConsole(const bool force = false);
117 virtual void updateObjectBrowser( const bool = true );
119 LightApp_Preferences* preferences() const;
121 virtual QString getFileFilter() const;
123 virtual QString getFileName( bool open, const QString& initial, const QString& filters,
124 const QString& caption, QWidget* parent );
125 virtual QString getDirectory( const QString& initial, const QString& caption, QWidget* parent );
126 virtual QStringList getOpenFileNames( const QString& initial, const QString& filters,
127 const QString& caption, QWidget* parent );
129 void updateActions();
131 SUIT_ViewManager* getViewManager( const QString&, const bool );
132 virtual void addViewManager( SUIT_ViewManager* );
133 virtual void removeViewManager( SUIT_ViewManager* );
134 virtual SUIT_ViewManager* createViewManager( const QString& vmType );
135 virtual SUIT_ViewManager* createViewManager( const QString& vmType, QWidget* w );
136 virtual SUIT_ViewManager* createViewManager( SUIT_ViewModel* );
138 QWidget* getWindow( const int, const int = -1 );
139 QWidget* dockWindow( const int ) const;
140 void removeDockWindow( const int );
141 void insertDockWindow( const int, QWidget* );
142 void placeDockWindow( const int, Qt::DockWidgetArea );
144 virtual void start();
146 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
148 virtual void createEmptyStudy();
150 virtual void setDesktop( SUIT_Desktop* );
152 SUIT_Accel* accel() const;
154 void setDefaultStudyName( const QString& theName );
156 static int studyId();
158 virtual bool event( QEvent* );
160 virtual bool checkDataObject( LightApp_DataObject* theObj );
162 virtual void updateDesktopTitle();
164 //! Returns list of view manager types which are supported by this application
165 QStringList viewManagersTypes() const;
167 //! Removes ViewManagers only of known type
168 virtual void clearKnownViewManagers();
170 virtual QString browseObjects( const QStringList& theEntryList,
171 const bool theIsApplyAndClose = true,
172 const bool theIsOptimizedBrowsing = false );
174 virtual SUIT_DataObject* findObject( const QString& ) const;
176 virtual bool renameAllowed( const QString& ) const;
177 virtual bool renameObject( const QString&, const QString& );
179 void emitOperationFinished( const QString&, const QString&, const QStringList& );
181 void updateVisibilityState( DataObjectList& theList,
182 SUIT_ViewModel* theViewModel );
184 virtual bool checkExistingDoc();
186 #ifndef DISABLE_PYCONSOLE
187 PyConsole_Interp* getPyInterp();
194 void preferenceChanged( const QString&, const QString&, const QString& );
195 void preferenceResetToDefaults();
196 void operationFinished( const QString&, const QString&, const QStringList& );
199 virtual void onHelpContentsModule();
200 virtual void onHelpContextModule( const QString&, const QString&, const QString& = QString() );
201 virtual void onNewDoc();
202 virtual void onOpenDoc();
204 virtual void onHelpAbout();
205 virtual bool onOpenDoc( const QString& );
206 virtual void onCopy();
207 virtual void onPaste();
208 virtual void onSelectionChanged();
211 virtual void createActions();
212 virtual void createActionForViewer( const int id,
214 const QString& suffix,
216 virtual SUIT_Study* createNewStudy();
217 virtual QWidget* createWindow( const int );
218 virtual void defaultWindows( QMap<int, int>& ) const;
219 void defaultViewManagers( QStringList& ) const;
221 virtual void setActiveStudy( SUIT_Study* );
222 virtual void updateCommandsStatus();
224 virtual void beforeCloseDoc( SUIT_Study* );
225 virtual void afterCloseDoc();
226 virtual void moduleAdded( CAM_Module* );
227 virtual bool activateModule( CAM_Module* = 0 );
229 LightApp_Preferences* preferences( const bool ) const;
230 virtual void createPreferences( LightApp_Preferences* );
231 virtual void preferencesChanged( const QString&, const QString& );
233 virtual void loadPreferences();
234 virtual void savePreferences();
236 virtual QMap<int, QString> activateModuleActions() const;
237 virtual void moduleActionSelected( const int );
239 #ifndef DISABLE_PYCONSOLE
240 virtual PyConsole_Interp* createPyInterp();
244 virtual void onDesktopActivated();
245 virtual void onViewManagerRemoved( SUIT_ViewManager* );
246 virtual void onWindowActivated( SUIT_ViewWindow* theViewWindow );
249 void onModuleActivation( const QString& );
250 void onCloseView( SUIT_ViewManager* );
252 virtual void onStudyCreated( SUIT_Study* );
253 virtual void onStudyOpened( SUIT_Study* );
254 virtual void onStudySaved( SUIT_Study* );
255 virtual void onStudyClosed( SUIT_Study* );
257 void onWCDestroyed( QObject* );
259 void onMRUActivated( const QString& );
261 void onStylePreferences();
264 virtual void onDesktopMessage( const QString& );
269 void onDropped( const QList<SUIT_DataObject*>&, SUIT_DataObject*, int, Qt::DropAction );
270 void onPreferences();
271 void onPreferenceChanged( QString&, QString&, QString& );
272 void onRenameWindow();
273 void onCloseWindow();
274 void onCloseAllWindow();
275 void onGroupAllWindow();
278 void updateWindows();
279 void updateViewManagers();
280 void updateModuleActions();
281 void removeModuleAction( const QString& );
283 void loadDockWindowsState();
284 void saveDockWindowsState();
286 virtual void studyOpened( SUIT_Study* );
287 virtual void studyCreated( SUIT_Study* );
288 virtual void studySaved( SUIT_Study* );
290 void updatePreference( const QString&, const QString&, const QString& );
292 QString defaultModule() const;
293 virtual void currentWindows( QMap<int, int>& ) const;
294 void currentViewManagers( QStringList& ) const;
295 void moduleIconNames( QMap<QString, QString>& ) const;
297 bool isLibExists( const QString& ) const;
299 QDockWidget* windowDock( QWidget* ) const;
300 QByteArray dockWindowsState( const QMap<QString, bool>&, const QMap<QString, bool>& ) const;
301 void dockWindowsState( const QByteArray&, QMap<QString, bool>&, QMap<QString, bool>& ) const;
303 virtual int openChoice( const QString& );
304 virtual bool openAction( const int, const QString& );
306 void showPreferences( const QString& = QString() );
309 void emptyPreferences( const QString& );
310 QList<QToolBar*> findToolBars( const QStringList& names = QStringList() );
312 QByteArray processState(QByteArray& input,
313 const bool processWin,
314 const bool processTb,
315 const bool isRestoring,
316 QByteArray defaultState = QByteArray());
319 typedef QPointer<QWidget> WinPtr;
320 typedef QMap<int, WinPtr> WinMap;
321 typedef QMap<QString, QByteArray> WinVis;
322 typedef QMap<QString, QByteArray> WinGeom;
324 enum { OpenReload = CAM_Application::OpenExist + 1 };
327 LightApp_Preferences* myPrefs;
328 LightApp_SelectionMgr* mySelMgr;
330 LightApp_FullScreenHelper* myScreenHelper;
336 QTimer* myAutoSaveTimer;
338 static LightApp_Preferences* _prefs_;
340 static int lastStudyId;
341 QStringList myUserWmTypes;
345 #pragma warning( default:4251 )