]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/genericgui/EditionWhile.cxx
Salome HOME
[EDF27816] : in case of UsingPythonCache disabled (default) all temporary variables...
[modules/yacs.git] / src / genericgui / EditionWhile.cxx
index 11d149d320f9a6fbd8ec5f8ebba682df4632b2da..6532336d388e572b0155b28e5a6d8d5f645fb147 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2006-2012  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -20,6 +20,7 @@
 #include "EditionWhile.hxx"
 #include "FormLoop.hxx"
 #include "guiObservers.hxx"
+#include "QtGuiContext.hxx"
 
 //#define _DEVDEBUG_
 #include "YacsTrace.hxx"
@@ -43,6 +44,8 @@ EditionWhile::EditionWhile(Subject* subject,
   _formWhile->sb_nsteps->setMinimum(0);
   _formWhile->sb_nsteps->setMaximum(1);
   _formWhile->label->setText("Condition");
+  if (!QtGuiContext::getQtCurrent()->isEdition())
+    _formWhile->setEnabled (false);
   connect(_formWhile->sb_nsteps, SIGNAL(editingFinished()),
           this, SLOT(onConditionEdited()));
 }