X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetMultiSelector.h;h=a07f5195ec6812f5c98428ce94e9d69acf95e5d6;hb=b240d1def415f30a9569bd71f6715c72c0a92291;hp=bc2b97ac356a8fb465d609133c4e3b9031079ff6;hpb=8f0b2cf49bd24e118ad3fc523eb4a815d067d46c;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetMultiSelector.h b/src/PartSet/PartSet_WidgetMultiSelector.h index bc2b97ac3..a07f5195e 100644 --- a/src/PartSet/PartSet_WidgetMultiSelector.h +++ b/src/PartSet/PartSet_WidgetMultiSelector.h @@ -1,9 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PartSet_WidgetMultiSelector.h -// Created: 15 Apr 2015 -// Author: Natalia Ermolaeva - +// 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 +// 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_WidgetMultiSelector_H #define PartSet_WidgetMultiSelector_H @@ -11,11 +23,11 @@ #include "PartSet.h" #include -#include #include class PartSet_ExternalObjectsMgr; +class ModuleBase_ViewerPrs; /** * \ingroup Modules @@ -30,9 +42,8 @@ Q_OBJECT /// \param theParent the parent object /// \param theWorkshop instance of workshop interface /// \param theData the widget configuation. The attribute of the model widget is obtained from - /// \param theParentId is Id of a parent of the current attribute PartSet_WidgetMultiSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop, - const Config_WidgetAPI* theData, const std::string& theParentId); + const Config_WidgetAPI* theData); virtual ~PartSet_WidgetMultiSelector(); @@ -46,35 +57,32 @@ Q_OBJECT /// Retrurns installed sketcher CompositeFeaturePtr sketch() const { return mySketch; } - /// Set the given wrapped value to the current widget - /// This value should be processed in the widget according to the needs - /// \param theValues the wrapped selection values - virtual bool setSelection(QList& theValues, - const bool theToValidate); - protected: /// Checks the widget validity. By default, it returns true. - /// \param theValue a selected presentation in the view + /// \param thePrs a selected presentation in the view /// \return a boolean value - virtual bool isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs); + virtual bool isValidSelectionCustom(const std::shared_ptr& thePrs); /// Creates a backup of the current values of the attribute /// It should be realized in the specific widget because of different /// parameters of the current attribute + /// \param theAttribute an attribute /// \param theValid a boolean flag, if restore happens for valid parameters - void restoreAttributeValue(const bool theValid); + virtual void restoreAttributeValue(const AttributePtr& theAttribute, const bool theValid); /// Return an object and geom shape by the viewer presentation /// \param thePrs a selection /// \param theObject an output object /// \param theShape a shape of the selection - virtual void getGeomSelection(const ModuleBase_ViewerPrs& thePrs, + virtual void getGeomSelection(const std::shared_ptr& thePrs, ObjectPtr& theObject, GeomShapePtr& theShape); protected: + /// Manager of external objects PartSet_ExternalObjectsMgr* myExternalObjectMgr; - /// Pointer to a sketch + + /// Pointer to a sketch CompositeFeaturePtr mySketch; };