Salome HOME
updated copyright message
[modules/yacs.git] / src / genericgui / EditionSwitch.cxx
index d5a62a415386c2ebe8ab94ee6f61e774b5155d50..d0793b4a92be4e3bb798544afac03e8ff52c9b2f 100644 (file)
@@ -1,21 +1,22 @@
-//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2023  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.
+// 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, 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
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  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
+// 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
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #include "EditionSwitch.hxx"
 #include "TableSwitch.hxx"
 #include "SchemaModel.hxx"
@@ -51,6 +52,8 @@ EditionSwitch::EditionSwitch(Subject* subject,
   _valueDelegate = new ValueDelegate(parent);
   _tvSwitch->tv_nodes->setItemDelegateForColumn(YValue, _valueDelegate);
   _tvSwitch->setEditableCase(true);
+  if (!QtGuiContext::getQtCurrent()->isEdition())
+    _tvSwitch->setEnabled (false);
 
   connect(_valueDelegate, SIGNAL(commitData(QWidget*)),
           this, SLOT(onCommitData(QWidget*)));
@@ -89,7 +92,7 @@ void EditionSwitch::onModifySelect(const QString &text)
 {
   DEBTRACE("EditionSwitch::onModifySelect " << text.toStdString());
   SubjectSwitch *sswitch = dynamic_cast<SubjectSwitch*>(_subject);
-  assert(sswitch);
+  YASSERT(sswitch);
   sswitch->setSelect(text.toStdString());
 }
 
@@ -120,16 +123,16 @@ void EditionSwitch::onCommitData(QWidget *editor)
 {
   DEBTRACE("EditionSwitch::onCommitData " << editor);
   GenericEditor* gedit = dynamic_cast<GenericEditor*>(editor);
-  assert(gedit);
+  YASSERT(gedit);
   QString val = gedit->GetStrValue();
   DEBTRACE(val.toStdString());
   Subject *sub = gedit->getSubject();
-  assert(sub);
+  YASSERT(sub);
   SubjectNode *snode = dynamic_cast<SubjectNode*>(sub);
-  assert(snode);
+  YASSERT(snode);
   sub = snode->getParent();
   SubjectSwitch *sswitch = dynamic_cast<SubjectSwitch*>(sub);
-  assert(sswitch);
+  YASSERT(sswitch);
   bool isOk = sswitch->setCase(val.toStdString(), snode);
   if (_valueDelegate)
     _valueDelegate->setResultEditing(editor, isOk);