Salome HOME
Jenkins compilation correction.
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.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_IPropertyPanel.h"
22 #include "ModuleBase_ModelWidget.h"
23 #include "ModuleBase_ToolBox.h"
24
25 #include <ModelAPI_Validator.h>
26 #include <ModelAPI_Session.h>
27
28 ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent)
29  : QDockWidget(theParent), myIsEditing(false)
30 {
31 }
32
33 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::modelWidget(
34                                           const std::string& theAttributeId) const
35 {
36   ModuleBase_ModelWidget* aWidget = 0;
37   QList<ModuleBase_ModelWidget*> aWidgets = modelWidgets();
38   ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
39   for (QList<ModuleBase_ModelWidget*>::const_iterator anIt = aWidgets.begin();
40     anIt != aWidgets.end() && !aWidget; anIt++) {
41     ModuleBase_ModelWidget* aCurrentWidget = *anIt;
42     if (aCurrentWidget->attributeID() == theAttributeId &&
43         aCurrentWidget->canAcceptFocus() &&
44         aValidators->isCase(aCurrentWidget->feature(), aCurrentWidget->attributeID()))
45       aWidget = aCurrentWidget;
46   }
47
48   return aWidget;
49 }
50
51 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget()
52 {
53   return ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(modelWidgets());
54 }
55
56 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(
57                                         const QList<ModuleBase_ModelWidget*>& theWidgets)
58 {
59   ModuleBase_ModelWidget* aFirstWidget = 0;
60
61   ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
62
63   ModuleBase_ModelWidget* aWgt;
64   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
65   bool isOffToolBox = false;
66   for (aWIt = theWidgets.begin(); aWIt != theWidgets.end() && !aFirstWidget; ++aWIt) {
67     aWgt = (*aWIt);
68     if (!aValidators->isCase(aWgt->feature(), aWgt->attributeID()))
69       continue; // this attribute is not participated in the current case
70
71     if (!aWgt->canAcceptFocus())
72       continue;
73
74     /// workaround for the same attributes used in different stacked widgets(attribute types)
75     if (ModuleBase_ToolBox::isOffToolBoxParent(aWgt))
76       continue;
77
78     aFirstWidget = aWgt;
79   }
80   return aFirstWidget;
81 }