X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSHAPERGUI%2FSHAPERGUI.h;h=da44562d7782d766eebc9e9b5c48f9152e3979a5;hb=a0206b712c3b390c1f8f4d338c774f6c603476c3;hp=b940d8a1921d643001afbe27fb5efd68181c2fc5;hpb=9e0ffe4482299ddf70ee7f5c2a9bf5ed1679ca64;p=modules%2Fshaper.git diff --git a/src/SHAPERGUI/SHAPERGUI.h b/src/SHAPERGUI/SHAPERGUI.h index b940d8a19..da44562d7 100644 --- a/src/SHAPERGUI/SHAPERGUI.h +++ b/src/SHAPERGUI/SHAPERGUI.h @@ -1,5 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// 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. +// +// 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 SHAPERGUI_H #define SHAPERGUI_H @@ -12,7 +28,7 @@ #include -#include +#include #include class XGUI_Workshop; @@ -49,8 +65,9 @@ Q_OBJECT //--- XGUI connector interface ----- - virtual QAction* addFeature(const QString& theWBName, const QString& theId, - const QString& theTitle, const QString& theTip, const QIcon& theIcon, + virtual QAction* addFeature(const QString& theWBName, const QString& theTBName, + const QString& theId, const QString& theTitle, + const QString& theTip, const QIcon& theIcon, const QKeySequence& theKeys/* = QKeySequence()*/, bool isCheckable /*= false*/, const bool isAddSeparator/* = false*/, const QString& theStatusTip); @@ -74,10 +91,11 @@ Q_OBJECT virtual bool isFeatureOfNested(const QAction* theAction); virtual QAction* addDesktopCommand(const QString& theId, const QString& theTitle, - const QString& theTip, const QIcon& theIcon, - const QKeySequence& theKeys, bool isCheckable, - const char* theMenuSourceText, - const int theMenuPosition = 10); + const QString& theTip, const QIcon& theIcon, + const QKeySequence& theKeys, bool isCheckable, + const char* theMenuSourceText, const QString& theSubMenu = QString(), + const int theMenuPosition = 10, + const int theSuibMenuPosition = -1) Standard_OVERRIDE; virtual void addDesktopMenuSeparator(const char* theMenuSourceText, const int theMenuPosition = 10); @@ -136,14 +154,30 @@ Q_OBJECT /// \brief Set flag about opened document state void setIsOpened(bool theOpened) { myIsOpened = theOpened; } - /// Register current modules of SALOME - void inspectSalomeModules(); + virtual void updateModuleVisibilityState(); + + /// Returns list of the module commands + QIntList shaperActions() const { return myActionsList; } + + /// Returns structure of tool bars + QMap shaperToolbars() const { return myToolbars; } + + /// Returns free commands which are not in toolbars in the module + QIntList getFreeCommands() const; + + /// Returns structure of default tool bars + QMap defaultToolbars() const + { return (myDefaultToolbars.size() == 0)? myToolbars : myDefaultToolbars; } + + void resetToolbars(); + + void publishToStudy(); public slots: /// \brief The method is redefined to connect to the study viewer before the data /// model is filled by opened file. This file open will flush redisplay signals for, /// objects which should be visualized - virtual void connectToStudy(CAM_Study* theStudy); + //virtual void connectToStudy(CAM_Study* theStudy); /// \brief The method is called on the module activation /// \param theStudy current study @@ -168,6 +202,12 @@ Q_OBJECT /// Hide object browser if it was created during loading script void onScriptLoaded(); + /// Save application functionality with additional processing of aborting the current operation + void onSaveDocByShaper(); + + /// Save application functionality with additional processing of aborting the current operation + void onSaveAsDocByShaper(); + /// Obtains the current application and updates its actions void onUpdateCommandStatus(); @@ -181,13 +221,28 @@ Q_OBJECT /// Abort all operations virtual bool abortAllOperations(); +private slots: + void onWhatIs(bool isToggled); + + void onEditToolbars(); + private: /// Create selector for OCC Viewer /// \param theMgr view manager SHAPERGUI_OCCSelector* createSelector(SUIT_ViewManager* theMgr); - /// List of registered actions - QStringList myActionsList; + void registerCommandToolbar(const QString& theToolName, int theCommandId); + + int getNextCommandId() const; + + // Update current toolbars + void updateToolbars(const QMap& theNewToolbars); + + void saveToolbarsConfig(); + void loadToolbarsConfig(); + + + void hideInternalWindows(); /// List of registered nested actions QStringList myNestedActionsList; @@ -217,6 +272,23 @@ Q_OBJECT /// Popup manager QtxPopupMgr* myPopupMgr; + + QAction* myWhatIsAction; + + bool myIsInspectionVisible; + QDockWidget* myInspectionPanel; + bool myIsFacesPanelVisible; + + /// List of registered actions + QIntList myActionsList; + QMap myToolbars; + QMap myDefaultToolbars; + bool myIsToolbarsModified; + + std::vector myOldSelectionColor; + Handle(Graphic3d_AspectMarker3d) myHighlightPointAspect; + + double myAxisArrowRate; }; #endif