X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FCAM%2FCAM_Application.h;h=d25f4d4c25bec30afcbcc1d523bcec5244297b77;hb=257308ab92a2ecccb38294bf15b690580d6cbebc;hp=c31e9052352c41432110fd0072bb9aeca6dd11fe;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/CAM/CAM_Application.h b/src/CAM/CAM_Application.h index c31e90523..d25f4d4c2 100755 --- a/src/CAM/CAM_Application.h +++ b/src/CAM/CAM_Application.h @@ -1,50 +1,48 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef CAM_APPLICATION_H #define CAM_APPLICATION_H -#include "STD_Application.h" +#include "CAM.h" -#include "CAM_Module.h" +#include +#include -#include - -class QPopupMenu; +class QMenu; +class CAM_Module; #ifdef WIN32 #pragma warning( disable:4251 ) #endif -/*! - \class CAM_Application - Defines application configuration and behaviour for application with modules. - Every module has own data model, necessary windows and viewers, etc. - Application provides all necessary functionality for module management - (loading of modules/activation/deactivation, etc) -*/ class CAM_EXPORT CAM_Application : public STD_Application { Q_OBJECT public: - typedef QPtrList ModuleList; - typedef QPtrListIterator ModuleListIterator; + typedef QList ModuleList; + typedef struct { QString name; QString version; } ModuleShortInfo; + typedef QList ModuleShortInfoList; public: CAM_Application( const bool = true ); @@ -53,53 +51,61 @@ public: virtual void start(); CAM_Module* activeModule() const; - CAM_Module* module( const QString& ) const; + CAM_Module* module( const QString& ) const; - /** @name Modules lists.*/ - //@{ - ModuleListIterator modules() const; + ModuleList modules() const; void modules( ModuleList& ) const; void modules( QStringList&, const bool loaded = true ) const; - //@} virtual void addModule( CAM_Module* ); virtual void loadModules(); - virtual CAM_Module* loadModule( const QString& ); + virtual CAM_Module* loadModule( const QString&, const bool = true ); virtual bool activateModule( const QString& ); - virtual void contextMenuPopup( const QString&, QPopupMenu*, QString& ); + bool activateOperation( const QString& modName, int actionId ); + bool activateOperation( const QString& modName, const QString& actionId ); + bool activateOperation( const QString& modName, const QString& actionId, + const QString& pluginName ); + + virtual void contextMenuPopup( const QString&, QMenu*, QString& ); - QString moduleName( const QString& ) const; - QString moduleTitle( const QString& ) const; + static QString moduleName( const QString& ); + static QString moduleTitle( const QString& ); + static QString moduleIcon( const QString& ); + static bool isModuleAccessible( const QString& ); virtual void createEmptyStudy(); + static ModuleShortInfoList getVersionInfo(); + protected: virtual SUIT_Study* createNewStudy(); virtual void updateCommandsStatus(); virtual void moduleAdded( CAM_Module* ); virtual void beforeCloseDoc( SUIT_Study* ); + virtual void afterCloseDoc(); virtual bool activateModule( CAM_Module* = 0 ); virtual void setActiveStudy( SUIT_Study* ); - QString moduleLibrary( const QString&, const bool = true ) const; + static QString moduleLibrary( const QString&, const bool = true ); private: void readModuleList(); private: - typedef struct { QString name, title, internal; } ModuleInfo; - typedef QValueList ModuleInfoList; + typedef struct { QString name, title, internal, icon; bool isSingleton; QString version; } ModuleInfo; + typedef QList ModuleInfoList; private: - CAM_Module* myModule; - ModuleList myModules; - ModuleInfoList myInfoList; - bool myAutoLoad; + CAM_Module* myModule; //!< active module + ModuleList myModules; //!< loaded modules list + static ModuleInfoList myInfoList; //!< modules info list + bool myAutoLoad; //!< auto loading flag + bool myBlocked; //!< "blocked" flag, internal usage }; #ifdef WIN32