X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSHAPERGUI%2FSHAPERGUI.h;h=da44562d7782d766eebc9e9b5c48f9152e3979a5;hb=a0206b712c3b390c1f8f4d338c774f6c603476c3;hp=72c458d6ac72eec9d661cf373c992417f7445f0c;hpb=437800222d180c99595cf3d01ad36de3d781e765;p=modules%2Fshaper.git diff --git a/src/SHAPERGUI/SHAPERGUI.h b/src/SHAPERGUI/SHAPERGUI.h index 72c458d6a..da44562d7 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-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 @@ -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 @@ -92,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); @@ -171,6 +171,8 @@ Q_OBJECT 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, @@ -239,6 +241,9 @@ private slots: void saveToolbarsConfig(); void loadToolbarsConfig(); + + void hideInternalWindows(); + /// List of registered nested actions QStringList myNestedActionsList; @@ -272,12 +277,18 @@ private slots: 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