Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[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 #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_WidgetValidated
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 list of widget controls
68   /// \return a control list
69   virtual QList<QWidget*> getControls() const;
70
71   virtual bool eventFilter(QObject* , QEvent* );
72
73   /// The methiod called when widget is deactivated
74   virtual void deactivate();
75
76  public slots:
77   /// Slot is called on selection type changed
78   void onSelectionTypeChanged();
79
80   /// Slot is called on selection changed
81   void onSelectionChanged();
82
83 protected slots:
84   /// Slot for copy command in a list pop-up menu
85   void onCopyItem();
86
87   /// Slot is called on selection of list of selected items
88   void onListSelection();
89
90  protected:
91   /// The methiod called when widget is activated
92   virtual void activateCustom();
93
94   /// Saves the internal parameters to the given feature
95   /// \return True in success
96   virtual bool storeValueCustom() const;
97
98   /// Set current shape type for selection
99   void setCurrentShapeType(const TopAbs_ShapeEnum theShapeType);
100
101   /// Start shape selection
102   void activateShapeSelection();
103
104  private:
105    /// Update selection list
106    void updateSelectionList(AttributeSelectionListPtr);
107
108    /// List control
109   QListWidget* myListControl;
110
111   /// Combobox of types
112   QComboBox* myTypeCombo;
113
114   //TODO: Move into the base of selectors
115   ModuleBase_IWorkshop* myWorkshop;
116
117   /// If true then local selector has to be activated in context
118   bool myIsActive;
119
120   /// Provides correspondance between Result object and its shape
121   typedef QPair<ResultPtr, GeomShapePtr> GeomSelection;
122
123   /// Variable of GeomSelection type
124   QList<GeomSelection> mySelection;
125
126   /// An action for pop-up menu in a list control
127   QAction* myCopyAction;
128
129   /// A filter for the Edges type, which avoid the generated edges selection
130   Handle(ModuleBase_FilterNoDegeneratedEdge) myEdgesTypeFilter;
131 };
132
133 #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */