X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FSHAPERGUI%2FSHAPERGUI.h;h=4530fb9c34fd50b9d810b74158125a68c33d001a;hb=28db4c39ee08fe65d011f2ce62e6f71035e973b7;hp=598c4502335dfe6fe7aaf0df699748bbc1185086;hpb=c21ad98366ab170289e75ce6eb54239785dca7e1;p=modules%2Fshaper.git diff --git a/src/SHAPERGUI/SHAPERGUI.h b/src/SHAPERGUI/SHAPERGUI.h index 598c45023..4530fb9c3 100644 --- a/src/SHAPERGUI/SHAPERGUI.h +++ b/src/SHAPERGUI/SHAPERGUI.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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 @@ -12,10 +12,9 @@ // // 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 +// 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 SHAPERGUI_H @@ -156,10 +155,20 @@ Q_OBJECT 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(); public slots: /// \brief The method is redefined to connect to the study viewer before the data @@ -266,7 +275,10 @@ private slots: /// List of registered actions QIntList myActionsList; QMap myToolbars; + QMap myDefaultToolbars; bool myIsToolbarsModified; + + std::vector myOldSelectionColor; }; #endif