Salome HOME
Issue #390 Selection restore problems during edit operation
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetShapeSelector.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetShapeSelector.h
4 // Created:     2 June 2014
5 // Author:      Vitaly Smetannikov
6
7 #ifndef ModuleBase_WidgetShapeSelector_H
8 #define ModuleBase_WidgetShapeSelector_H
9
10 #include "ModuleBase.h"
11 #include "ModuleBase_ModelWidget.h"
12 #include "ModuleBase_ViewerFilters.h"
13
14 #include <ModelAPI_Object.h>
15 #include <GeomAPI_Shape.h>
16
17 #include <TopAbs_ShapeEnum.hxx>
18 #include <SelectMgr_ListOfFilter.hxx>
19
20 #include <QStringList>
21
22 class Config_WidgetAPI;
23 class QWidget;
24 class QLabel;
25 class QLineEdit;
26 class QToolButton;
27 class ModuleBase_IWorkshop;
28
29 /**
30 * \ingroup GUI
31 * Implementation of widget for shapes selection.
32 * This type of widget can be defined in XML file with 'shape_selector' keyword.
33 * For example:
34 * \code
35 *   <shape_selector id="main_object" 
36 *    label="Main object" 
37 *    icon=":icons/cut_shape.png" 
38 *    tooltip="Select an object solid"
39 *    shape_types="solid shell"
40 *    concealment="true"
41 *  />
42 * \endcode
43 * It can use following parameters:
44 * - id - name of object attribute
45 * - label - content of widget's label
46 * - icon - icon which can be used instead label
47 * - tooltip - the witget's tooltip text
48 * - shape_types - list of shape types for selection. 
49 *       Possible values: face, vertex, wire, edge, shell, solid
50 * - object_types - types of selectable objects. 
51 *       For today it supports only one type "construction" 
52 *        which corresponds to ModelAPI_ResultConstruction object type
53 * - concealment - hide or not hide selected object after operation
54 */
55 class MODULEBASE_EXPORT ModuleBase_WidgetShapeSelector : public ModuleBase_ModelWidget
56 {
57 Q_OBJECT
58  public:
59
60    /// Converts string value (name of shape type) to shape enum value
61    /// \param theType - string with shape type name
62    /// \return TopAbs_ShapeEnum value
63   static TopAbs_ShapeEnum shapeType(const QString& theType);
64
65   /// Constructor
66   /// \param theParent the parent object
67   /// \param theWorkshop instance of workshop interface
68   /// \param theData the widget configuation. The attribute of the model widget is obtained from
69   /// \param theParentId is Id of a parent of the current attribute
70   ModuleBase_WidgetShapeSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
71                             const Config_WidgetAPI* theData, const std::string& theParentId);
72
73   virtual ~ModuleBase_WidgetShapeSelector();
74
75   virtual bool restoreValue();
76
77   /// Defines if it is supposed that the widget should interact with the viewer.
78   virtual bool isViewerSelector() { return true; }
79
80   /// Returns the internal parent wiget control, that can be shown anywhere
81   /// \returns the widget
82   QWidget* getControl() const
83   {
84     return myContainer;
85   }
86
87   /// Returns list of widget controls
88   /// \return a control list
89   virtual QList<QWidget*> getControls() const;
90
91   /// Returns currently selected data object
92   ObjectPtr selectedFeature() const
93   {
94     return mySelectedObject;
95   }
96
97   /// Set the given wrapped value to the current widget
98   /// This value should be processed in the widget according to the needs
99   /// \param theValue the wrapped widget value
100   virtual bool setSelection(ModuleBase_ViewerPrs theValue);
101
102
103   /// The methiod called when widget is deactivated
104   virtual void deactivate();
105
106
107  public slots:
108
109   /// Activate or deactivate selection
110   void activateSelection(bool toActivate);
111
112  private slots:
113    /// Slot which is called on selection event
114   void onSelectionChanged();
115
116  protected:
117   /// Saves the internal parameters to the given feature
118   /// \return True in success
119   virtual bool storeValueCustom() const;
120
121   /// The methiod called when widget is activated
122   virtual void activateCustom();
123
124   /// Computes and updates name of selected object in the widget
125   void updateSelectionName();
126
127   /// Raise panel which contains this widget
128   void raisePanel() const;
129
130   /// Returns true if selected shape corresponds to requested shape types
131   /// \param theShape a shape
132   virtual bool acceptSubShape(std::shared_ptr<GeomAPI_Shape> theShape) const;
133
134   /// Returns true if selected object corresponds to requested Object type
135   /// Thid method is used in any selection mode
136   /// \param theObject an object 
137   virtual bool acceptObjectType(const ObjectPtr theObject) const;
138
139
140   // Set the given object as a value of the widget
141   /// \param theObj an object 
142   /// \param theShape a shape
143   void setObject(ObjectPtr theObj, std::shared_ptr<GeomAPI_Shape> theShape = std::shared_ptr<GeomAPI_Shape>());
144
145   /// Check the selected with validators if installed
146   /// \param theObj the object for checking
147   /// \param theShape the shape for checking
148   virtual bool isValid(ObjectPtr theObj, std::shared_ptr<GeomAPI_Shape> theShape);
149
150   /// Clear attribute
151   void clearAttribute();
152
153   /// Fills the given list with all widget filters. It can be used by activation widget for the viewer
154   /// or by checking the selection parameter in addition to check validity of the selection argument
155   /// It creates an object type filter if it has not been created yet and save it in the class field
156   /// \param theFilters a list of filter
157   void selectionFilters(SelectMgr_ListOfFilter& theFilters);
158
159   //----------- Class members -------------
160  protected:
161
162    /// Container of the widget's control
163   QWidget* myContainer;
164
165   /// Label of the widget
166   QLabel* myLabel;
167
168   /// Input control of the widget
169   QLineEdit* myTextLine;
170
171   /// Reference to workshop
172   ModuleBase_IWorkshop* myWorkshop;
173
174   /// Pointer to selected object
175   ObjectPtr mySelectedObject;
176
177   /// Pointer to selected shape
178   GeomShapePtr myShape;
179
180   /// List of accepting shapes types
181   QStringList myShapeTypes;
182
183   /// List of accepting object types
184   QStringList myObjectTypes;
185
186   /// Active/inactive flag
187   bool myIsActive;
188
189   /// Filter by objects types
190   Handle(ModuleBase_ObjectTypesFilter) myObjTypeFilter;
191 };
192
193 #endif