Salome HOME
445190ae55919592ff55cb894ab71b64c62040c1
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetValidated.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #include <ModuleBase_WidgetValidated.h>
4 #include <ModuleBase_FilterFactory.h>
5 #include <ModuleBase_IViewer.h>
6
7 #include <ModelAPI_Session.h>
8 #include <ModelAPI_Validator.h>
9 #include <ModelAPI_AttributeValidator.h>
10
11 #include <SelectMgr_ListIteratorOfListOfFilter.hxx>
12 #include <SelectMgr_EntityOwner.hxx>
13
14 #include <Events_Loop.h>
15
16 #include <QWidget>
17
18 ModuleBase_WidgetValidated::ModuleBase_WidgetValidated(QWidget* theParent,
19                                                        const Config_WidgetAPI* theData,
20                                                        const std::string& theParentId)
21  : ModuleBase_ModelWidget(theParent, theData, theParentId)
22 {
23 }
24
25 ModuleBase_WidgetValidated::~ModuleBase_WidgetValidated()
26 {
27 }
28
29 //********************************************************************
30 bool ModuleBase_WidgetValidated::setSelection(ModuleBase_ViewerPrs theValue)
31 {
32   bool isDone = false;
33
34   Handle(SelectMgr_EntityOwner) anOwner = theValue.owner();
35   if (isValid(anOwner)) {
36     isDone = setSelection(anOwner);
37     updateObject(myFeature);
38     emit valuesChanged();
39   }
40   return isDone;
41 }
42
43 //********************************************************************
44 bool ModuleBase_WidgetValidated::isValid(const Handle_SelectMgr_EntityOwner& theOwner)
45 {
46   DataPtr aData = myFeature->data();
47   AttributePtr anAttribute = myFeature->attribute(attributeID());
48
49   // stores the current values of the widget attribute
50   Events_Loop* aLoop = Events_Loop::loop();
51   // blocks the flush signals to avoid the temporary objects visualization in the viewer
52   // they should not be shown in order to do not lose highlight by erasing them
53   aLoop->activateFlushes(false);
54
55   aData->blockSendAttributeUpdated(true);
56   bool isAttributeBlocked = anAttribute->blockSetInitialized(true);
57   storeAttributeValue();
58
59   // saves the owner value to the widget attribute
60   bool aValid = setSelection(theOwner);
61
62   if (aValid)
63     // checks the attribute validity
64     aValid = isValidAttribute();
65
66   // restores the current values of the widget attribute
67   restoreAttributeValue(aValid);
68   aData->blockSendAttributeUpdated(false);
69   anAttribute->blockSetInitialized(isAttributeBlocked);
70   aLoop->activateFlushes(true);
71
72   return aValid;
73 }
74
75 //********************************************************************
76 bool ModuleBase_WidgetValidated::isValidAttribute() const
77 {
78   SessionPtr aMgr = ModelAPI_Session::get();
79   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
80   std::list<ModelAPI_Validator*> aValidators;
81   std::list<std::list<std::string> > anArguments;
82   aFactory->validators(myFeature->getKind(), attributeID(), aValidators, anArguments);
83
84   DataPtr aData = myFeature->data();
85   AttributePtr anAttribute = myFeature->attribute(attributeID());
86
87   std::list<ModelAPI_Validator*>::iterator aValidator = aValidators.begin();
88   std::list<std::list<std::string> >::iterator aArgs = anArguments.begin();
89   bool aValid = true;
90   for (; aValidator != aValidators.end() && aValid; aValidator++, aArgs++) {
91     const ModelAPI_AttributeValidator* aAttrValidator =
92         dynamic_cast<const ModelAPI_AttributeValidator*>(*aValidator);
93     if (aAttrValidator) {
94       aValid = aAttrValidator->isValid(anAttribute, *aArgs);
95     }
96   }
97   return aValid;
98 }
99
100 void ModuleBase_WidgetValidated::activateFilters(ModuleBase_IWorkshop* theWorkshop,
101                                                  const bool toActivate) const
102 {
103   ModuleBase_IViewer* aViewer = theWorkshop->viewer();
104
105   Handle(SelectMgr_Filter) aSelFilter = theWorkshop->validatorFilter();
106   if (toActivate)
107     aViewer->addSelectionFilter(aSelFilter);
108   else
109     aViewer->removeSelectionFilter(aSelFilter);
110 }