Salome HOME
Issue #355 Delete: elements of sketch and constraints
[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_ModelWidget.h>
15 #include <ModuleBase_FilterNoDegeneratedEdge.h>
16
17 #include <GeomAPI_Shape.h>
18 #include <ModelAPI_Result.h>
19 #include <ModelAPI_AttributeSelectionList.h>
20
21 #include <NCollection_List.hxx>
22 #include <TopoDS_Shape.hxx>
23
24 #include <QList>
25 #include <QString>
26 #include <QStringList>
27 #include <QPair>
28
29 class QWidget;
30 class QListWidget;
31 class QComboBox;
32 class ModuleBase_IWorkshop;
33 class QAction;
34
35
36 /**
37 * \ingroup GUI
38 * Implementation of widget for shapes selection. This widget provides selection of several shapes.
39 * It can be defined in XML file as following:
40 * \code
41 * <multi_selector id="group_list" 
42 *    tooltip="Select a set of objects" 
43 *    type_choice="Vertices Edges Faces Solids" /> 
44 * \endcode
45 * It uses folloing parameters:
46 * - id - is a name of corresponded attribute
47 * - tooltip - a tooltip for the widget
48 * - type_choice - list of expected shape types.
49 */
50 class MODULEBASE_EXPORT ModuleBase_WidgetMultiSelector : public ModuleBase_ModelWidget
51 {
52   Q_OBJECT
53  public:
54   /// Constructor
55   /// \param theParent the parent object
56   /// \param theWorkshop instance of workshop interface
57   /// \param theData the widget configuation. The attribute of the model widget is obtained from
58   /// \param theParentId is Id of a parent of the current attribute
59   ModuleBase_WidgetMultiSelector(QWidget* theParent,
60                                  ModuleBase_IWorkshop* theWorkshop,
61                                  const Config_WidgetAPI* theData,
62                                  const std::string& theParentId);
63   virtual ~ModuleBase_WidgetMultiSelector();
64
65   virtual bool restoreValue();
66
67   /// Returns the internal parent wiget control, that can be shown anywhere
68   /// \returns the widget
69   QWidget* getControl() const;
70
71   /// Returns list of widget controls
72   /// \return a control list
73   virtual QList<QWidget*> getControls() const;
74
75   virtual bool eventFilter(QObject* , QEvent* );
76
77  public slots:
78   /// Activate or deactivate selection
79   void activateSelection(bool toActivate);
80
81   /// Slot is called on selection type changed
82   void onSelectionTypeChanged();
83
84   /// Slot is called on selection changed
85   void onSelectionChanged();
86
87 protected slots:
88   /// Slot for copy command in a list pop-up menu
89   void onCopyItem();
90
91   /// Slot is called on selection of list of selected items
92   void onListSelection();
93
94  protected:
95   /// Saves the internal parameters to the given feature
96   /// \return True in success
97   virtual bool storeValueCustom() const;
98
99   /// Provide filtering of selected shapes
100    /// \param theShapesToFilter source list of shapes
101    /// \param theResult result list of shapes
102   void filterShapes(const NCollection_List<TopoDS_Shape>& theShapesToFilter,
103                     NCollection_List<TopoDS_Shape>& theResult);
104
105   /// Set current shape type for selection
106   void setCurrentShapeType(const TopAbs_ShapeEnum theShapeType);
107
108   /// Start shape selection
109   void activateShapeSelection();
110
111  private:
112    /// Update selection list
113    void updateSelectionList(AttributeSelectionListPtr);
114
115    /// List control
116   QListWidget* myListControl;
117
118   /// Combobox of types
119   QComboBox* myTypeCombo;
120
121   /// Container
122   QWidget* myMainWidget;
123
124   //TODO: Move into the base of selectors
125   ModuleBase_IWorkshop* myWorkshop;
126
127   /// If true then local selector has to be activated in context
128   bool myIsActive;
129
130   /// Provides correspondance between Result object and its shape
131   typedef QPair<ResultPtr, GeomShapePtr> GeomSelection;
132
133   /// Variable of GeomSelection type
134   QList<GeomSelection> mySelection;
135
136   /// An action for pop-up menu in a list control
137   QAction* myCopyAction;
138
139   /// A filter for the Edges type, which avoid the generated edges selection
140   Handle(ModuleBase_FilterNoDegeneratedEdge) myEdgesTypeFilter;
141 };
142
143 #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */