X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_MenuMgr.h;h=504abd6c905fbf1e0e305c1b2991114c5a05225e;hb=3b02241a66e6be241eebbe70df42349293c5f4ab;hp=738c6569f7ef8d571de66dc15b5369ae46949c2f;hpb=397bec888031ab3d5d0578d3094e01f9a052222f;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_MenuMgr.h b/src/PartSet/PartSet_MenuMgr.h index 738c6569f..504abd6c9 100644 --- a/src/PartSet/PartSet_MenuMgr.h +++ b/src/PartSet/PartSet_MenuMgr.h @@ -1,13 +1,27 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSet_MenuMgr.h -// Created: 03 April 2015 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2022 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 PartSet_MenuMgr_H #define PartSet_MenuMgr_H #include +#include #include #include @@ -39,7 +53,7 @@ public: /// Add menu items for viewer into the actions map /// \param theStdActions a map of standard actions - /// \param theParent a parent widget for the + /// \param theParent a parent widget for the /// \param theMenuActions map of action/menu for the desirable index in the viewer menu /// \return true if items are added and there is no necessity to provide standard menu bool addViewerMenu(const QMap& theStdActions, @@ -48,7 +62,7 @@ public: /// Update state of pop-up menu items in viewer /// \param theStdActions - a map of standard actions - void updateViewerMenu(const QMap& theStdActions); + void updateViewerMenu(const QMap& theStdActions); /// Activates a PartSet document void activatePartSet() const; @@ -56,6 +70,9 @@ public: /// Returns list of granted operation indices virtual void grantedOperationIds(ModuleBase_Operation* theOperation, QStringList& theIds) const; + /// Activates a Part document + void activatePart(ResultPartPtr thePart) const; + public slots: /// Processes the context menu action click /// \param isChecked a state of toggle if the action is checkable @@ -83,17 +100,21 @@ private slots: /// A slot called on edit of feature void onEdit(bool); - void onSelectParentFeature(); + /// Activates all not loaded parts + void onActivateAllParts(); protected: - bool eventFilter(QObject* theObj, QEvent* theEvent); + /// Redefinition of virtual method + /// \param theObj an object + /// \param theEvent an event + virtual bool eventFilter(QObject* theObj, QEvent* theEvent); private: /// Returns true if the current operation is sketch entity create operation /// \param theValue the current auxiliary value /// \return the boolean result bool canSetAuxiliary(bool& theValue) const; - + /// Changes the sketcher entity construction argument value /// \param isChecked if true, the feature is a construction void setAuxiliary(const bool isChecked); @@ -118,7 +139,7 @@ private: PartSet_Module* myModule; /// the popup menu actions - QMap myActions; + QMap myActions; /// List of lines coincided in a one point mutable QList myCoinsideLines; @@ -129,7 +150,7 @@ private: /// Id of menu item in Detach menu previously selected int myPrevId; - /// Original color of highlighted line + /// Original color of highlighted line QColor myColor; };