Salome HOME
updated copyright message
[modules/yacs.git] / src / genericgui / QtGuiContext.cxx
index 98a939e4fa0552ee996050263c6da60b6908d58e..576b76b9e320c3223613ba087543a968ef485879 100644 (file)
@@ -1,31 +1,37 @@
-//  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 "QtGuiContext.hxx"
+#include <QClipboard>
+#include "ItemMimeData.hxx"
 
 //#define _DEVDEBUG_
 #include "YacsTrace.hxx"
+#include "chrono.hxx"
 
 using namespace std;
 using namespace YACS::ENGINE;
 using namespace YACS::HMI;
 
 QtGuiContext * QtGuiContext::_QtCurrent = 0;
+counters *QtGuiContext::_counters = 0;
+bool QtGuiContext::_delayCalc = false;
 std::set<QtGuiContext*> QtGuiContext::_setOfContext;
 
 QtGuiContext::QtGuiContext(GenericGui *gmain) : GuiContext()
@@ -41,11 +47,8 @@ QtGuiContext::QtGuiContext(GenericGui *gmain) : GuiContext()
   _stackedWidget = 0;
   _guiExecutor = 0;
   _selectedSubject = 0;
-  _subjectToCut = 0;
-  _subjectToCopy = 0;
   _isEdition = true;
-  _studyId = 0;
-  _isLoading = false;
+  _isLoadingPresentation = false;
   _fileName = QString();
   _mapOfSchemaItem.clear();
   _mapOfSceneItem.clear();
@@ -61,6 +64,7 @@ QtGuiContext::~QtGuiContext()
   _invoc = 0;
   if (_subjectProc)
     {
+      _proc->setEdition(false);
       _subjectProc->clean();
       delete _subjectProc;
       _subjectProc = 0;
@@ -68,6 +72,9 @@ QtGuiContext::~QtGuiContext()
   _current = 0;
   _QtCurrent = 0;
   _setOfContext.erase(this);
+  // Avoid any possible copy from the destroyed schema.
+  QClipboard *clipboard = QApplication::clipboard();
+  clipboard->setMimeData(NULL);
 }
 
 void QtGuiContext::setProc(YACS::ENGINE::Proc* proc)
@@ -79,21 +86,34 @@ void QtGuiContext::setProc(YACS::ENGINE::Proc* proc)
 
 YACS::HMI::Subject* QtGuiContext::getSubjectToPaste(bool &isCut)
 {
-  isCut = (_subjectToCut != 0);
-  if (isCut)
-    return _subjectToCut;
-  else
-    return _subjectToCopy;
+  QClipboard *clipboard = QApplication::clipboard();
+  const QMimeData * data=clipboard->mimeData();
+  const ItemMimeData* myData = dynamic_cast<const ItemMimeData*>(data);
+  Subject * sub=0;
+
+  if(myData)
+    {
+      sub=myData->getSubject();
+      isCut=myData->getControl();
+    }
+
+  return sub;
 }
 
 void QtGuiContext::setSubjectToCut(YACS::HMI::Subject* sub)
 {
-  _subjectToCut = sub;
-  _subjectToCopy = 0;
+  ItemMimeData *mime = new ItemMimeData;
+  mime->setSubject(sub);
+  mime->setControl(true);
+  QClipboard *clipboard = QApplication::clipboard();
+  clipboard->setMimeData(mime);
 }
 
 void QtGuiContext::setSubjectToCopy(YACS::HMI::Subject* sub)
 {
-  _subjectToCopy = sub;
-  _subjectToCut = 0;
+  ItemMimeData *mime = new ItemMimeData;
+  mime->setSubject(sub);
+  mime->setControl(false);
+  QClipboard *clipboard = QApplication::clipboard();
+  clipboard->setMimeData(mime);
 }