X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCAM%2FCAM_Module.h;h=3cb43c1616f826df5d00b4d12278eb9418bb54b1;hb=5204b0c67ebf51714353b53f585ff7aafe70af30;hp=628623f115d4efcaece3e0895f3b09663b7c1ad4;hpb=1c889394b028b786898a995d38c07c8f3d564837;p=modules%2Fgui.git diff --git a/src/CAM/CAM_Module.h b/src/CAM/CAM_Module.h index 628623f11..3cb43c161 100755 --- a/src/CAM/CAM_Module.h +++ b/src/CAM/CAM_Module.h @@ -1,24 +1,25 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 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 +// 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 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, 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. +// 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 -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef CAM_MODULE_H #define CAM_MODULE_H @@ -28,11 +29,14 @@ #include #include #include +#include +#include class QAction; class QMenu; class QIcon; +class QtxActionGroup; class QtxActionMenuMgr; class QtxActionToolMgr; class SUIT_Study; @@ -69,6 +73,10 @@ public: virtual void putInfo( const QString&, const int = -1 ); + int showNotification(const QString& message, const QString& title, int timeout = -1); + void hideNotification(const QString& message); + void hideNotification(int id); + bool isActiveModule() const; virtual void setMenuShown( const bool ); @@ -79,6 +87,42 @@ public: void setToolShown( QAction*, const bool ); void setToolShown( const int, const bool ); + virtual void updateModuleVisibilityState(); + + virtual bool activateOperation( int actionId ); + virtual bool activateOperation( const QString& actionId ); + virtual bool activateOperation( const QString& actionId, const QString& pluginName ); + + // actions/menu/toolbars management + + QtxActionMenuMgr* menuMgr() const; + QtxActionToolMgr* toolMgr() const; + + virtual QAction* action( const int ) const; + virtual int actionId( const QAction* ) const; + virtual QAction* createAction( const int, const QString&, const QIcon&, const QString&, + const QString&, const int, QObject* = 0, + const bool = false, QObject* = 0, const char* = 0, const QString& = QString() ); + virtual QAction* createAction( const int, const QString&, const QIcon&, const QString&, + const QString&, const QKeySequence&, QObject* = 0, + const bool = false, QObject* = 0, const char* = 0, const QString& = QString() ); + QtxActionGroup* createActionGroup( const int, const bool = true ); + + int createTool( const QString&, const QString& = QString() ); + int createTool( const int, const int, const int = -1 ); + int createTool( const int, const QString&, const int = -1 ); + int createTool( QAction*, const int, const int = -1, const int = -1 ); + int createTool( QAction*, const QString&, const int = -1, const int = -1 ); + + int createMenu( const QString&, const int, const int = -1, const int = -1, const int = -1,QMenu * = 0); + int createMenu( const QString&, const QString&, const int = -1, const int = -1, const int = -1 ); + int createMenu( const int, const int, const int = -1, const int = -1 ); + int createMenu( const int, const QString&, const int = -1, const int = -1 ); + int createMenu( QAction*, const int, const int = -1, const int = -1, const int = -1 ); + int createMenu( QAction*, const QString&, const int = -1, const int = -1, const int = -1 ); + + static QAction* separator(); + public slots: virtual bool activateModule( SUIT_Study* ); virtual bool deactivateModule( SUIT_Study* ); @@ -101,33 +145,14 @@ protected: void setName( const QString& ); virtual void setModuleName( const QString& ); - QtxActionMenuMgr* menuMgr() const; - QtxActionToolMgr* toolMgr() const; - - int createTool( const QString& ); - int createTool( const int, const int, const int = -1 ); - int createTool( const int, const QString&, const int = -1 ); - int createTool( QAction*, const int, const int = -1, const int = -1 ); - int createTool( QAction*, const QString&, const int = -1, const int = -1 ); - - int createMenu( const QString&, const int, const int = -1, const int = -1, const int = -1 ); - int createMenu( const QString&, const QString&, const int = -1, const int = -1, const int = -1 ); - int createMenu( const int, const int, const int = -1, const int = -1 ); - int createMenu( const int, const QString&, const int = -1, const int = -1 ); - int createMenu( QAction*, const int, const int = -1, const int = -1, const int = -1 ); - int createMenu( QAction*, const QString&, const int = -1, const int = -1, const int = -1 ); - - static QAction* separator(); - - QAction* action( const int ) const; - int actionId( const QAction* ) const; - int registerAction( const int, QAction* ); bool unregisterAction( const int ); bool unregisterAction( QAction* ); - QAction* createAction( const int, const QString&, const QIcon&, const QString&, - const QString&, const int, QObject* = 0, - const bool = false, QObject* = 0, const char* = 0 ); + // IMN 05/03/2015: we copied myActionMap for reset/unset actions accelerator keys + // after activate/deactivate modules + QMap myActionShortcutMap; //!< copy actions shortcut map + + virtual bool abortAllOperations(); private: CAM_Application* myApp; //!< parent application object @@ -136,6 +161,8 @@ private: QString myInfo; //!< latest info message CAM_DataModel* myDataModel; //!< data model QMap myActionMap; //!< menu actions + bool myMenuShown; //!< menu shown flag + bool myToolShown; //!< tool shown flag friend class CAM_Application; }; @@ -147,8 +174,9 @@ private: extern "C" { typedef CAM_Module* (*GET_MODULE_FUNC)(); + typedef char* (*GET_VERSION_FUNC)(); } #define GET_MODULE_NAME "createModule" - +#define GET_VERSION_NAME "getModuleVersion" #endif