]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_FilterValidated.cpp
Salome HOME
Shape plane filter should process shapes of objects selected in object browser.
[modules/shaper.git] / src / ModuleBase / ModuleBase_FilterValidated.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_FilterValidated.h
4 // Created:     17 Mar 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #include "ModuleBase_FilterValidated.h"
8 #include "ModuleBase_IWorkshop.h"
9
10 #include <ModuleBase_IModule.h>
11 #include <ModuleBase_IPropertyPanel.h>
12 #include <ModuleBase_ISelection.h>
13 #include <ModuleBase_Operation.h>
14 #include <ModuleBase_WidgetValidated.h>
15 #include <ModuleBase_ViewerPrs.h>
16
17 IMPLEMENT_STANDARD_HANDLE(ModuleBase_FilterValidated, SelectMgr_Filter);
18 IMPLEMENT_STANDARD_RTTIEXT(ModuleBase_FilterValidated, SelectMgr_Filter);
19
20 Standard_Boolean ModuleBase_FilterValidated::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
21 {
22   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
23   if (!anOperation)
24     return true;
25
26   ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
27   ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
28   if (!anActiveWidget)
29     anActiveWidget = aPanel->preselectionWidget();
30   ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
31                                                                          (anActiveWidget);
32   ModuleBase_ViewerPrs aPrs;
33   myWorkshop->selection()->fillPresentation(aPrs, theOwner);
34
35   return !aWidgetValidated || aWidgetValidated->isValidSelection(aPrs);
36 }
37