Salome HOME
Merge with PythonAPI branch
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetValidated.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetValidated.h
4 // Created:     12 Mar 2015
5 // Author:      Natalia ERMOLAEVA
6
7
8 #ifndef MODULEBASE_WIDGETVALIDATED_H_
9 #define MODULEBASE_WIDGETVALIDATED_H_
10
11 #include <ModuleBase.h>
12 #include <ModuleBase_ModelWidget.h>
13
14 #include <GeomAPI_Shape.h>
15 #include <GeomAPI_AISObject.h>
16 #include <ModelAPI_Object.h>
17
18 #include <SelectMgr_ListOfFilter.hxx>
19
20 #include <QList>
21
22 class QWidget;
23 class ModuleBase_IWorkshop;
24 class ModuleBase_ISelection;
25 class ModelAPI_Validator;
26 class Config_WidgetAPI;
27 class Handle_SelectMgr_EntityOwner;
28
29 /**
30 * \ingroup GUI
31 * Implementation of widget with validators and filters processing.
32 */
33 class MODULEBASE_EXPORT ModuleBase_WidgetValidated : public ModuleBase_ModelWidget
34 {
35   Q_OBJECT
36  public:
37   /// Constructor
38   /// \param theParent the parent object
39   /// \param theWorkshop a reference to workshop
40   /// \param theData the widget configuation. The attribute of the model widget is obtained from
41   /// \param theParentId is Id of a parent of the current attribute
42   ModuleBase_WidgetValidated(QWidget* theParent,
43                              ModuleBase_IWorkshop* theWorkshop,
44                              const Config_WidgetAPI* theData,
45                              const std::string& theParentId);
46   virtual ~ModuleBase_WidgetValidated();
47
48   /// Checks whether all active viewer filters validate the presentation
49   /// \param thePrs a selected presentation in the view
50   /// \return a boolean value
51   bool isValidInFilters(const ModuleBase_ViewerPrs& thePrs);
52
53   /// Checks all widget validator if the owner is valid
54   /// \param theValue a selected presentation in the view
55   /// \return a boolean value
56   bool isValidSelection(const ModuleBase_ViewerPrs& theValue);
57
58   /// Set the given wrapped value to the current widget
59   /// This value should be processed in the widget according to the needs
60   /// The method is called by the current operation to process the operation preselection.
61   /// It is redefined to check the value validity and if it is, fill the attribute with by value
62   /// \param theValues the wrapped selection values
63   /// \param theToValidate a flag on validation of the values
64   virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues,
65                             const bool theToValidate);
66
67   //! Returns data object by AIS
68   ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const;
69
70 protected:
71   /// Creates a backup of the current values of the attribute
72   /// It should be realized in the specific widget because of different
73   /// parameters of the current attribute
74   virtual void storeAttributeValue();
75
76   /// Creates a backup of the current values of the attribute
77   /// It should be realized in the specific widget because of different
78   /// parameters of the current attribute
79   /// \param theValid a boolean flag, if restore happens for valid parameters
80   virtual void restoreAttributeValue(const bool theValid);
81
82   /// Checks the widget validity. By default, it returns true.
83   /// \param thePrs a selected presentation in the view
84   /// \return a boolean value
85   virtual bool isValidSelectionCustom(const ModuleBase_ViewerPrs& thePrs);
86
87   /// Fills the attribute with the value of the selected owner
88   /// \param thePrs a selected owner
89   virtual bool setSelectionCustom(const ModuleBase_ViewerPrs& thePrs) = 0;
90
91   /// Checks the current attibute in all attribute validators
92   // \return true if all validators return that the attribute is valid
93   bool isValidAttribute() const;
94
95   /// Returns true if the workshop validator filter has been already activated
96   /// \return boolean value
97   bool isFilterActivated() const;
98
99   /// Gets the validity state of the presentation in an internal map. Returns true if the valid state of value is stored
100   /// \param theValue a viewer presentation
101   /// \param theValid a valid state
102   bool getValidState(const ModuleBase_ViewerPrs& theValue, bool& theValid);
103
104   /// Store the validity state of the presentation in an internal map
105   /// \param theValue a viewer presentation
106   /// \param theValid a valid state
107   void storeValidState(const ModuleBase_ViewerPrs& theValue, const bool theValid);
108
109   /// Removes all presentations from internal maps.
110   void clearValidState();
111
112   /// Returns a list of selected presentations in the viewer and object browser
113   /// The presentations from the object browser are filtered by the AIS context filters
114   /// \return a list of presentations
115   QList<ModuleBase_ViewerPrs> getFilteredSelected();
116
117   /// Applies AIS context filters to the parameter list. The not approved presentations are
118   /// removed from the parameters.
119   /// \param theValues a list of presentations.
120   void filterPresentations(QList<ModuleBase_ViewerPrs>& theValues);
121
122   /// It obtains selection filters from the workshop and activates them in the active viewer
123   /// \param toActivate a flag about activation or deactivation the filters
124   void activateFilters(const bool toActivate);
125
126 protected:
127   /// Reference to workshop
128   ModuleBase_IWorkshop* myWorkshop; 
129
130   /// The widget is in validation mode: store is performed, restore is not
131   bool myIsInValidate; 
132
133 private:
134   ObjectPtr myPresentedObject; /// back up of the filtered object
135   QList<ModuleBase_ViewerPrs> myValidPrs;
136   QList<ModuleBase_ViewerPrs> myInvalidPrs;
137 };
138
139 #endif /* MODULEBASE_WIDGETVALIDATED_H_ */