Salome HOME
Update to graphviz 2.38
[modules/yacs.git] / src / genericgui / EditionWhile.cxx
index 11d149d320f9a6fbd8ec5f8ebba682df4632b2da..1d7df1e438b90354be002d78a75899c534553fb9 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2006-2012  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2014  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()));
 }