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 #ifndef CAM_APPLICATION_H
24 #define CAM_APPLICATION_H
28 #include <STD_Application.h>
35 #pragma warning( disable:4251 )
38 class CAM_EXPORT CAM_Application : public STD_Application
43 typedef QList<CAM_Module*> ModuleList;
44 typedef struct { QString name; QString version; } ModuleShortInfo;
45 typedef QList<ModuleShortInfo> ModuleShortInfoList;
48 CAM_Application( const bool = true );
49 virtual ~CAM_Application();
53 CAM_Module* activeModule() const;
54 CAM_Module* module( const QString& ) const;
56 ModuleList modules() const;
57 void modules( ModuleList& ) const;
58 void modules( QStringList&, const bool loaded = true ) const;
60 virtual void addModule( CAM_Module* );
62 virtual void loadModules();
63 virtual CAM_Module* loadModule( const QString&, const bool = true );
65 virtual bool activateModule( const QString& );
67 bool activateOperation( const QString& modName, int actionId );
68 bool activateOperation( const QString& modName, const QString& actionId );
69 bool activateOperation( const QString& modName, const QString& actionId,
70 const QString& pluginName );
72 virtual void contextMenuPopup( const QString&, QMenu*, QString& );
74 static QString moduleName( const QString& );
75 static QString moduleTitle( const QString& );
76 static QString moduleIcon( const QString& );
77 static bool isModuleAccessible( const QString& );
79 virtual void createEmptyStudy();
81 static ModuleShortInfoList getVersionInfo();
84 virtual SUIT_Study* createNewStudy();
85 virtual void updateCommandsStatus();
87 virtual void moduleAdded( CAM_Module* );
88 virtual void beforeCloseDoc( SUIT_Study* );
89 virtual void afterCloseDoc();
90 virtual bool activateModule( CAM_Module* = 0 );
92 virtual void setActiveStudy( SUIT_Study* );
94 static QString moduleLibrary( const QString&, const bool = true );
97 void readModuleList();
100 typedef struct { QString name, title, internal, icon; bool isSingleton; QString version; } ModuleInfo;
101 typedef QList<ModuleInfo> ModuleInfoList;
104 CAM_Module* myModule; //!< active module
105 ModuleList myModules; //!< loaded modules list
106 static ModuleInfoList myInfoList; //!< modules info list
107 bool myAutoLoad; //!< auto loading flag
108 bool myBlocked; //!< "blocked" flag, internal usage
112 #pragma warning( default:4251 )