Salome HOME
Union of validator and filter functionalities.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetMultiSelector.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_WidgetMultiSelector.h
5  *
6  *  Created on: Oct 8, 2014
7  *      Author: sbh
8  */
9
10 #ifndef MODULEBASE_WIDGETMULTISELECTOR_H_
11 #define MODULEBASE_WIDGETMULTISELECTOR_H_
12
13 #include <ModuleBase.h>
14 #include <ModuleBase_WidgetValidated.h>
15
16 #include <GeomAPI_Shape.h>
17 #include <ModelAPI_Result.h>
18 #include <ModelAPI_AttributeSelectionList.h>
19
20 #include <NCollection_List.hxx>
21 #include <TopoDS_Shape.hxx>
22
23 #include <QList>
24 #include <QString>
25 #include <QStringList>
26 #include <QPair>
27
28 class QWidget;
29 class QListWidget;
30 class QComboBox;
31 class ModuleBase_IWorkshop;
32 class QAction;
33
34
35 /**
36 * \ingroup GUI
37 * Implementation of widget for shapes selection. This widget provides selection of several shapes.
38 * It can be defined in XML file as following:
39 * \code
40 * <multi_selector id="group_list" 
41 *    tooltip="Select a set of objects" 
42 *    type_choice="Vertices Edges Faces Solids" /> 
43 * \endcode
44 * It uses folloing parameters:
45 * - id - is a name of corresponded attribute
46 * - tooltip - a tooltip for the widget
47 * - type_choice - list of expected shape types.
48 */
49 class MODULEBASE_EXPORT ModuleBase_WidgetMultiSelector : public ModuleBase_WidgetValidated
50 {
51   Q_OBJECT
52  public:
53   /// Constructor
54   /// \param theParent the parent object
55   /// \param theWorkshop instance of workshop interface
56   /// \param theData the widget configuation. The attribute of the model widget is obtained from
57   /// \param theParentId is Id of a parent of the current attribute
58   ModuleBase_WidgetMultiSelector(QWidget* theParent,
59                                  ModuleBase_IWorkshop* theWorkshop,
60                                  const Config_WidgetAPI* theData,
61                                  const std::string& theParentId);
62   virtual ~ModuleBase_WidgetMultiSelector();
63
64   virtual bool restoreValue();
65
66   /// Returns list of widget controls
67   /// \return a control list
68   virtual QList<QWidget*> getControls() const;
69
70   virtual bool eventFilter(QObject* , QEvent* );
71
72   /// The methiod called when widget is deactivated
73   virtual void deactivate();
74
75   /// Fills the attribute with the value of the selected owner
76   /// \param theOwner a selected owner
77   virtual bool setSelection(const Handle_SelectMgr_EntityOwner& theOwner);
78
79  public slots:
80   /// Slot is called on selection type changed
81   void onSelectionTypeChanged();
82
83   /// Slot is called on selection changed
84   void onSelectionChanged();
85
86 protected slots:
87   /// Slot for copy command in a list pop-up menu
88   void onCopyItem();
89
90   /// Slot is called on selection of list of selected items
91   void onListSelection();
92
93  protected:
94   /// The methiod called when widget is activated
95   virtual void activateCustom();
96
97   /// Saves the internal parameters to the given feature
98   /// \return True in success
99   virtual bool storeValueCustom() const;
100
101   /// Creates a backup of the current values of the attribute
102   /// It should be realized in the specific widget because of different
103   /// parameters of the current attribute
104   virtual void storeAttributeValue();
105
106   /// Creates a backup of the current values of the attribute
107   /// It should be realized in the specific widget because of different
108   /// parameters of the current attribute
109   /// \param theValid a boolean flag, if restore happens for valid parameters
110   virtual void restoreAttributeValue(const bool theValid);
111
112   /// Set current shape type for selection
113   void setCurrentShapeType(const TopAbs_ShapeEnum theShapeType);
114
115   /// Start shape selection
116   void activateShapeSelection();
117
118  private:
119    /// Update selection list
120    void updateSelectionList(AttributeSelectionListPtr);
121
122    /// List control
123   QListWidget* myListControl;
124
125   /// Combobox of types
126   QComboBox* myTypeCombo;
127
128   //TODO: Move into the base of selectors
129   ModuleBase_IWorkshop* myWorkshop;
130
131   /// If true then local selector has to be activated in context
132   bool myIsActive;
133
134   /// Provides correspondance between Result object and its shape
135   typedef QPair<ResultPtr, GeomShapePtr> GeomSelection;
136
137   /// An action for pop-up menu in a list control
138   QAction* myCopyAction;
139
140   /// backup parameters of the model attribute. The class processes three types of attribute:
141   /// Reference, RefAttr and Selection. Depending on the attribute type, only the attribute parameter
142   /// values are reserved in the backup
143   /// Variable of selection type
144   std::string mySelectionType;
145
146   /// Variable of GeomSelection
147   QList<GeomSelection> mySelection;
148 };
149
150 #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */