]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_WidgetMultiSelector.h
Salome HOME
A separation of WidgetSelector class in order to unite the logic of shape/multi shape...
[modules/shaper.git] / src / PartSet / PartSet_WidgetMultiSelector.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_WidgetMultiSelector.h
4 // Created:     15 Apr 2015
5 // Author:      Natalia Ermolaeva
6
7
8 #ifndef PartSet_WidgetMultiSelector_H
9 #define PartSet_WidgetMultiSelector_H
10
11 #include "PartSet.h"
12
13 #include <ModuleBase_WidgetMultiSelector.h>
14 #include <ModuleBase_ViewerPrs.h>
15
16 #include <ModelAPI_CompositeFeature.h>
17
18 class PartSet_ExternalObjectsMgr;
19
20 /**
21 * \ingroup Modules
22 * Customosation of ModuleBase_WidgetMultiSelector in order to provide 
23 * working with sketch specific objects and creation of external objects.
24 */
25 class PARTSET_EXPORT PartSet_WidgetMultiSelector: public ModuleBase_WidgetMultiSelector
26 {
27 Q_OBJECT
28  public:
29   /// Constructor
30   /// \param theParent the parent object
31   /// \param theWorkshop instance of workshop interface
32   /// \param theData the widget configuation. The attribute of the model widget is obtained from
33   /// \param theParentId is Id of a parent of the current attribute
34   PartSet_WidgetMultiSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
35                               const Config_WidgetAPI* theData, const std::string& theParentId);
36
37   virtual ~PartSet_WidgetMultiSelector();
38
39   /// Defines if it is supposed that the widget should interact with the viewer.
40   virtual bool isViewerSelector() { return true; }
41
42   /// Set sketcher
43   /// \param theSketch a sketcher object
44   void setSketcher(CompositeFeaturePtr theSketch) { mySketch = theSketch; }
45
46   /// Retrurns installed sketcher
47   CompositeFeaturePtr sketch() const { return mySketch; }
48
49   /// Set the given wrapped value to the current widget
50   /// This value should be processed in the widget according to the needs
51   /// \param theValues the wrapped selection values
52   virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues);
53
54 protected:
55   /// Checks the widget validity. By default, it returns true.
56   /// \param theValue a selected presentation in the view
57   /// \return a boolean value
58   virtual bool isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs);
59
60   /// Creates a backup of the current values of the attribute
61   /// It should be realized in the specific widget because of different
62   /// parameters of the current attribute
63   virtual void storeAttributeValue();
64
65   /// Creates a backup of the current values of the attribute
66   /// It should be realized in the specific widget because of different
67   /// parameters of the current attribute
68   /// \param theValid a boolean flag, if restore happens for valid parameters
69   void restoreAttributeValue(const bool theValid);
70
71   /// Return an object and geom shape by the viewer presentation
72   /// \param thePrs a selection
73   /// \param theObject an output object
74   /// \param theShape a shape of the selection
75   virtual void getGeomSelection(const ModuleBase_ViewerPrs& thePrs,
76                                 ObjectPtr& theObject,
77                                 GeomShapePtr& theShape);
78
79 protected:
80   PartSet_ExternalObjectsMgr* myExternalObjectMgr;
81   /// Pointer to a sketch 
82   CompositeFeaturePtr mySketch;
83
84   bool myIsInVaildate;
85 };
86
87 #endif