Salome HOME
8d8c9e2c87bd0e71778bd3d9873ad9fbfec20853
[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   /// Saves the internal parameters to the given feature
66   virtual bool storeValue() const;
67
68   virtual bool restoreValue();
69
70   /// Returns the internal parent wiget control, that can be shown anywhere
71   /// \returns the widget
72   QWidget* getControl() const;
73
74   /// Returns list of widget controls
75   /// \return a control list
76   virtual QList<QWidget*> getControls() const;
77
78   virtual bool eventFilter(QObject* , QEvent* );
79
80  public slots:
81   /// Activate or deactivate selection
82   void activateSelection(bool toActivate);
83
84   /// Slot is called on selection type changed
85   void onSelectionTypeChanged();
86
87   /// Slot is called on selection changed
88   void onSelectionChanged();
89
90 protected slots:
91   /// Slot for copy command in a list pop-up menu
92   void onCopyItem();
93
94   /// Slot is called on selection of list of selected items
95   void onListSelection();
96
97  protected:
98    /// Provide filtering of selected shapes
99    /// \param theShapesToFilter source list of shapes
100    /// \param theResult result list of shapes
101   void filterShapes(const NCollection_List<TopoDS_Shape>& theShapesToFilter,
102                     NCollection_List<TopoDS_Shape>& theResult);
103
104   /// Set current shape type for selection
105   void setCurrentShapeType(const TopAbs_ShapeEnum theShapeType);
106
107   /// Start shape selection
108   void activateShapeSelection();
109
110  private:
111    /// Update selection list
112    void updateSelectionList(AttributeSelectionListPtr);
113
114    /// List control
115   QListWidget* myListControl;
116
117   /// Combobox of types
118   QComboBox* myTypeCombo;
119
120   /// Container
121   QWidget* myMainWidget;
122
123   //TODO: Move into the base of selectors
124   ModuleBase_IWorkshop* myWorkshop;
125
126   /// If true then local selector has to be activated in context
127   bool myIsActive;
128
129   /// Provides correspondance between Result object and its shape
130   typedef QPair<ResultPtr, GeomShapePtr> GeomSelection;
131
132   /// Variable of GeomSelection type
133   QList<GeomSelection> mySelection;
134
135   /// An action for pop-up menu in a list control
136   QAction* myCopyAction;
137
138   /// A filter for the Edges type, which avoid the generated edges selection
139   Handle(ModuleBase_FilterNoDegeneratedEdge) myEdgesTypeFilter;
140 };
141
142 #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */