Salome HOME
Copyright update 2022
[modules/shaper.git] / src / ModuleBase / ModuleBase_FilterValidated.cpp
1 // Copyright (C) 2014-2022  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 email : webmaster.salome@opencascade.com
18 //
19
20 #include "ModuleBase_FilterValidated.h"
21 #include "ModuleBase_IWorkshop.h"
22 #include "ModuleBase_IViewer.h"
23
24 #include <ModuleBase_IModule.h>
25 #include <ModuleBase_IPropertyPanel.h>
26 #include <ModuleBase_ISelection.h>
27 #include <ModuleBase_Operation.h>
28 #include <ModuleBase_WidgetValidated.h>
29 #include <ModuleBase_WidgetValidator.h>
30 #include <ModuleBase_ViewerPrs.h>
31 #include <ModuleBase_Tools.h>
32
33 IMPLEMENT_STANDARD_RTTIEXT(ModuleBase_FilterValidated, SelectMgr_Filter);
34
35 Standard_Boolean ModuleBase_FilterValidated::
36   IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
37 {
38   bool aValid = true;
39   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
40   if (anOperation) {
41     ModuleBase_IViewer* aViewer = myWorkshop->viewer();
42     Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
43
44     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
45     if (aPanel) {
46       ModuleBase_ModelWidget* aCurrentWidget = aPanel->preselectionWidget();
47       if (!aCurrentWidget)
48         aCurrentWidget = myWorkshop->module()->activeWidget();
49       if (aCurrentWidget) {
50         ModuleBase_ViewerPrsPtr aPrs(new ModuleBase_ViewerPrs());
51         myWorkshop->selection()->fillPresentation(aPrs, theOwner);
52         if (aPrs->isEmpty())
53           return false;
54         ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
55                                                                                (aCurrentWidget);
56         if (aWidgetValidated)
57           aValid = !aWidgetValidated || aWidgetValidated->isValidSelection(aPrs);
58         else{
59           ModuleBase_WidgetValidator* aWidgetValidator = aCurrentWidget->widgetValidator();
60           if (aWidgetValidator)
61             aValid = aWidgetValidator->isValidSelection(aPrs);
62         }
63       }
64     }
65   }
66
67 #ifdef DEBUG_FILTERS
68   qDebug(QString("ModuleBase_FilterValidated::IsOk = %1").arg(aValid).toStdString().c_str());
69 #endif
70   return aValid;
71 }
72