Salome HOME
updated copyright message
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.cpp
index 7abdbe2304efe470a43e6c25db4d695300cb0f86..299e2b236c18ecd4a3f4d9642f29e33c27398848 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-/*
- * ModuleBase_IPropertyPanel.cpp
- *
- *  Created on: Oct 01, 2014
- *      Author: vsv
- */
-
 #include "ModuleBase_IPropertyPanel.h"
 #include "ModuleBase_ModelWidget.h"
 #include "ModuleBase_ToolBox.h"
@@ -68,7 +61,6 @@ ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget
 
   ModuleBase_ModelWidget* aWgt;
   QList<ModuleBase_ModelWidget*>::const_iterator aWIt;
-  bool isOffToolBox = false;
   for (aWIt = theWidgets.begin(); aWIt != theWidgets.end() && !aFirstWidget; ++aWIt) {
     aWgt = (*aWIt);
     if (!aValidators->isCase(aWgt->feature(), aWgt->attributeID()))
@@ -85,3 +77,14 @@ ModuleBase_ModelWidget* ModuleBase_IPropertyPanel::findFirstAcceptingValueWidget
   }
   return aFirstWidget;
 }
+
+bool ModuleBase_IPropertyPanel::isModified() const
+{
+  bool isModified = false;
+  QList<ModuleBase_ModelWidget*> aWidgets = modelWidgets();
+  foreach(ModuleBase_ModelWidget* aWgt, aWidgets) {
+    bool aRes = aWgt->isModified();
+    isModified |= aRes;
+  }
+  return isModified;
+}