X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_WidgetMultiSelector.h;h=bc2b97ac356a8fb465d609133c4e3b9031079ff6;hb=013eda84dcea4a427d406c5c75ba7870f4124b7f;hp=db5d4085957e64d7632dbefe7da55b039690d247;hpb=9d9ff3badaec1d230a701582d588b1e75c0fc09c;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_WidgetMultiSelector.h b/src/PartSet/PartSet_WidgetMultiSelector.h index db5d40859..bc2b97ac3 100644 --- a/src/PartSet/PartSet_WidgetMultiSelector.h +++ b/src/PartSet/PartSet_WidgetMultiSelector.h @@ -10,7 +10,8 @@ #include "PartSet.h" -#include +#include +#include #include @@ -18,10 +19,10 @@ class PartSet_ExternalObjectsMgr; /** * \ingroup Modules -* Customosation of ModuleBase_WidgetShapeSelector in order to provide -* working with sketch specific objects. +* Customosation of ModuleBase_WidgetMultiSelector in order to provide +* working with sketch specific objects and creation of external objects. */ -class PARTSET_EXPORT PartSet_WidgetMultiSelector: public ModuleBase_WidgetShapeSelector +class PARTSET_EXPORT PartSet_WidgetMultiSelector: public ModuleBase_WidgetMultiSelector { Q_OBJECT public: @@ -31,10 +32,13 @@ Q_OBJECT /// \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, const std::string& theParentId); virtual ~PartSet_WidgetMultiSelector(); + /// Defines if it is supposed that the widget should interact with the viewer. + virtual bool isViewerSelector() { return true; } + /// Set sketcher /// \param theSketch a sketcher object void setSketcher(CompositeFeaturePtr theSketch) { mySketch = theSketch; } @@ -42,13 +46,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 + /// \return a boolean value + virtual bool isValidSelectionCustom(const ModuleBase_ViewerPrs& 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 theValid a boolean flag, if restore happens for valid parameters void restoreAttributeValue(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, + ObjectPtr& theObject, + GeomShapePtr& theShape); + protected: PartSet_ExternalObjectsMgr* myExternalObjectMgr; /// Pointer to a sketch