Salome HOME
correction of Model_Data for AttributeRefAttrList
[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_WidgetSelector.h"
12 #include "ModuleBase_ViewerFilters.h"
13 #include <ModuleBase_ViewerPrs.h>
14
15 #include <ModelAPI_Object.h>
16 #include <ModelAPI_Attribute.h>
17 #include <GeomAPI_Shape.h>
18
19 #include <TopAbs_ShapeEnum.hxx>
20
21 #include <QStringList>
22
23 class Config_WidgetAPI;
24 class QWidget;
25 class QLabel;
26 class QLineEdit;
27 class QToolButton;
28 class ModuleBase_IWorkshop;
29 class ModelAPI_Validator;
30
31 /**
32 * \ingroup GUI
33 * Implementation of widget for shapes selection.
34 * This type of widget can be defined in XML file with 'shape_selector' keyword.
35 * For example:
36 * \code
37 *   <shape_selector id="main_object" 
38 *    label="Main object" 
39 *    icon=":icons/cut_shape.png" 
40 *    tooltip="Select an object solid"
41 *    shape_types="solid shell"
42 *    concealment="true"
43 *  />
44 * \endcode
45 * It can use following parameters:
46 * - id - name of object attribute
47 * - label - content of widget's label
48 * - icon - icon which can be used instead label
49 * - tooltip - the witget's tooltip text
50 * - shape_types - list of shape types for selection. 
51 *       Possible values: face, vertex, wire, edge, shell, solid
52 * - object_types - types of selectable objects. 
53 *       For today it supports only one type "construction" 
54 *        which corresponds to ModelAPI_ResultConstruction object type
55 * - concealment - hide or not hide selected object after operation
56 */
57 class MODULEBASE_EXPORT ModuleBase_WidgetShapeSelector : public ModuleBase_WidgetSelector
58 {
59 Q_OBJECT
60  public:
61
62   /// Constructor
63   /// \param theParent the parent object
64   /// \param theWorkshop instance of workshop interface
65   /// \param theData the widget configuation. The attribute of the model widget is obtained from
66   /// \param theParentId is Id of a parent of the current attribute
67   ModuleBase_WidgetShapeSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
68                                  const Config_WidgetAPI* theData, const std::string& theParentId);
69
70   virtual ~ModuleBase_WidgetShapeSelector();
71
72   /// Returns list of widget controls
73   /// \return a control list
74   virtual QList<QWidget*> getControls() const;
75
76  protected:
77   /// Saves the internal parameters to the given feature
78   /// \return True in success
79   virtual bool storeValueCustom() const;
80
81   virtual bool restoreValueCustom();
82
83   /// Creates a backup of the current values of the attribute
84   /// It should be realized in the specific widget because of different
85   /// parameters of the current attribute
86   virtual void storeAttributeValue();
87
88   /// Creates a backup of the current values of the attribute
89   /// It should be realized in the specific widget because of different
90   /// parameters of the current attribute
91   /// \param theValid a boolean flag, if restore happens for valid parameters
92   virtual void restoreAttributeValue(const bool theValid);
93
94   /// Computes and updates name of selected object in the widget
95   virtual void updateSelectionName();
96
97   /// Clear attribute
98   virtual void clearAttribute();
99
100   // Update focus after the attribute value change
101   virtual void updateFocus();
102
103   /// Retunrs a list of possible shape types
104   /// \return a list of shapes
105   virtual QIntList getShapeTypes() const;
106
107   /// Fills the attribute with the value of the selected owner
108   /// \param thePrs a selected owner
109   virtual bool setSelectionCustom(const ModuleBase_ViewerPrs& thePrs);
110
111   /// Store the values to the model attribute of the widget. It casts this attribute to
112   /// the specific type and set the given values
113   /// \param theSelectedObject an object
114   /// \param theShape a selected shape, which is used in the selection attribute
115   /// \return true if it is succeed
116   virtual void setObject(ObjectPtr theSelectedObject, GeomShapePtr theShape);
117
118   /// Get the shape from the attribute if the attribute contains a shape, e.g. selection attribute
119   /// \return a shape
120   virtual GeomShapePtr getShape() const;
121
122   /// Return the attribute values wrapped in a list of viewer presentations
123   /// \return a list of viewer presentations, which contains an attribute result and
124   /// a shape. If the attribute do not uses the shape, it is empty
125   virtual QList<ModuleBase_ViewerPrs> getAttributeSelection() const;
126
127   //----------- Class members -------------
128   protected:
129   /// Label of the widget
130   QLabel* myLabel;
131
132   /// Input control of the widget
133   QLineEdit* myTextLine;
134
135   /// List of accepting shapes types
136   QStringList myShapeTypes;
137
138   /// backup parameters of the model attribute. The class processes three types of attribute:
139   /// Reference, RefAttr and Selection. Depending on the attribute type, only the attribute parameter
140   /// values are reserved in the backup
141   /// An attribute object
142   ObjectPtr myObject;
143   /// An attribute shape
144   GeomShapePtr myShape;
145   /// A reference of the attribute
146   AttributePtr myRefAttribute;
147   /// A boolean value whether refAttr uses reference of object
148   bool myIsObject;
149 };
150
151 #endif