Salome HOME
Merge branch 'Results_Hierarchy'
[modules/shaper.git] / src / ModuleBase / ModuleBase_FilterValidated.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "ModuleBase_FilterValidated.h"
22 #include "ModuleBase_IWorkshop.h"
23 #include "ModuleBase_IViewer.h"
24
25 #include <ModuleBase_IModule.h>
26 #include <ModuleBase_IPropertyPanel.h>
27 #include <ModuleBase_ISelection.h>
28 #include <ModuleBase_Operation.h>
29 #include <ModuleBase_WidgetValidated.h>
30 #include <ModuleBase_WidgetValidator.h>
31 #include <ModuleBase_ViewerPrs.h>
32 #include <ModuleBase_Tools.h>
33
34 IMPLEMENT_STANDARD_RTTIEXT(ModuleBase_FilterValidated, SelectMgr_Filter);
35
36 Standard_Boolean ModuleBase_FilterValidated::
37   IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
38 {
39   bool aValid = true;
40   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
41   if (anOperation) {
42     ModuleBase_IViewer* aViewer = myWorkshop->viewer();
43     Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
44
45     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
46     if (aPanel) {
47       ModuleBase_ModelWidget* aCurrentWidget = aPanel->preselectionWidget();
48       if (!aCurrentWidget)
49         aCurrentWidget = myWorkshop->module()->activeWidget();
50       if (aCurrentWidget) {
51         ModuleBase_ViewerPrsPtr aPrs(new ModuleBase_ViewerPrs());
52         myWorkshop->selection()->fillPresentation(aPrs, theOwner);
53         ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
54                                                                                (aCurrentWidget);
55         if (aWidgetValidated)
56           aValid = !aWidgetValidated || aWidgetValidated->isValidSelection(aPrs);
57         else{
58           ModuleBase_WidgetValidator* aWidgetValidator = aCurrentWidget->widgetValidator();
59           if (aWidgetValidator)
60             aValid = aWidgetValidator->isValidSelection(aPrs);
61         }
62       }
63     }
64   }
65
66 #ifdef DEBUG_FILTERS
67   qDebug(QString("ModuleBase_FilterValidated::IsOk = %1").arg(aValid).toStdString().c_str());
68 #endif
69   return aValid;
70 }
71