1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "ModuleBase_IPropertyPanel.h"
22 #include "ModuleBase_ModelWidget.h"
23 #include "ModuleBase_ToolBox.h"
25 #include <ModelAPI_Validator.h>
26 #include <ModelAPI_Session.h>
28 ModuleBase_IPropertyPanel::ModuleBase_IPropertyPanel(QWidget* theParent)
29 : QDockWidget(theParent), myIsEditing(false)
33 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::modelWidget(
34 const std::string& theAttributeId) const
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;
51 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget()
53 return ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(modelWidgets());
56 ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget(
57 const QList<ModuleBase_ModelWidget*>& theWidgets)
59 ModuleBase_ModelWidget* aFirstWidget = 0;
61 ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
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) {
68 if (!aValidators->isCase(aWgt->feature(), aWgt->attributeID()))
69 continue; // this attribute is not participated in the current case
71 if (!aWgt->canAcceptFocus())
74 /// workaround for the same attributes used in different stacked widgets(attribute types)
75 if (ModuleBase_ToolBox::isOffToolBoxParent(aWgt))