Salome HOME
Documentation for 0022615: [CEA 1014] Fold/unfold all the nodes of a block.
[modules/yacs.git] / src / genericgui / ItemMimeData.cxx
index 85be81611308e19e7298b1e9970e1b7ac13f9768..a8744e2a4c43f4eb465f10ca64adcf0d0ab83226 100644 (file)
@@ -1,25 +1,28 @@
-//  Copyright (C) 2006-2008  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.
+// 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 "ItemMimeData.hxx"
 #include "guiObservers.hxx"
 #include "Catalog.hxx"
 
+#include <QStringList>
+
 //#define _DEVDEBUG_
 #include "YacsTrace.hxx"
 
@@ -29,12 +32,13 @@ using namespace YACS::HMI;
 
 ItemMimeData::ItemMimeData(): QMimeData()
 {
-  _sub = 0;
-  _catalog = 0;
+  _sub.clear();
+  _catalog.clear();
   _cataName.clear();
   _compoName.clear();
   _typeName.clear();
   _swCase=0;
+  _control=false;
 }
 
 ItemMimeData::~ItemMimeData()
@@ -43,27 +47,27 @@ ItemMimeData::~ItemMimeData()
 
 void ItemMimeData::setSubject(Subject *sub)
 {
-  _sub = sub;
+  _sub.push_back(sub);
 }
 
 void ItemMimeData::setCatalog(YACS::ENGINE::Catalog *cata)
 {
-  _catalog = cata;
+  _catalog.push_back(cata);
 }
 
 void ItemMimeData::setCataName(std::string cataName)
 {
-  _cataName = cataName;
+  _cataName.push_back(cataName);
 }
 
 void ItemMimeData::setCompo(std::string compo)
 {
-  _compoName = compo;
+  _compoName.push_back(compo);
 }
 
 void ItemMimeData::setType(std::string aType)
 {
-  _typeName = aType;
+  _typeName.push_back(aType);
 }
 
 void ItemMimeData::setCase(int aCase)
@@ -71,32 +75,65 @@ void ItemMimeData::setCase(int aCase)
   _swCase = aCase;
 }
 
-Subject* ItemMimeData::getSubject() const
+Subject* ItemMimeData::getSubject(int i) const
 {
-  return _sub;
+  YASSERT(i < _sub.size());
+  return _sub[i];
 }
 
-YACS::ENGINE::Catalog* ItemMimeData::getCatalog() const
+YACS::ENGINE::Catalog* ItemMimeData::getCatalog(int i) const
 {
-  return _catalog;
+  YASSERT(i < _catalog.size());
+  return _catalog[i];
 }
 
-std::string ItemMimeData::getCataName() const
+std::string ItemMimeData::getCataName(int i) const
 {
-  return _cataName;
+  YASSERT(i < _cataName.size());
+  return _cataName[i];
 }
 
-std::string ItemMimeData::getCompo() const
+std::string ItemMimeData::getCompo(int i) const
 {
-  return _compoName;
+  YASSERT(i < _compoName.size());
+  return _compoName[i];
 }
 
-std::string ItemMimeData::getType() const
+std::string ItemMimeData::getType(int i) const
 {
-  return _typeName;
+  YASSERT(i < _typeName.size());
+  return _typeName[i];
 }
 
 int ItemMimeData::getCase() const
 {
   return _swCase;
 }
+void ItemMimeData::setControl(bool control)
+{
+  _control=control;
+}
+bool ItemMimeData::getControl() const
+{
+  return _control;
+}
+
+int ItemMimeData::getDataSize() const
+{
+  int lg=0;
+  QStringList myFormats = formats();
+  for (int i=0; i<myFormats.size(); i++)
+    {
+      if (myFormats[i].contains("yacs/cata"))
+        {
+          lg = _cataName.size();
+          break;
+        }
+      else
+        {
+          lg = _sub.size();
+          break;
+        }
+    }
+  return lg;
+}