Salome HOME
Synchronize adm files
[modules/yacs.git] / src / genericgui / QtGuiContext.cxx
1 // Copyright (C) 2006-2014  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "QtGuiContext.hxx"
21 #include <QClipboard>
22 #include "ItemMimeData.hxx"
23
24 //#define _DEVDEBUG_
25 #include "YacsTrace.hxx"
26
27 using namespace std;
28 using namespace YACS::ENGINE;
29 using namespace YACS::HMI;
30
31 QtGuiContext * QtGuiContext::_QtCurrent = 0;
32 counters *QtGuiContext::_counters = 0;
33 bool QtGuiContext::_delayCalc = false;
34 std::set<QtGuiContext*> QtGuiContext::_setOfContext;
35
36 QtGuiContext::QtGuiContext(GenericGui *gmain) : GuiContext()
37 {
38   _gmain = gmain;
39   _schemaModel = 0;
40   _editTree = 0;
41   _selectionModel = 0;
42   _scene = 0;
43   _view = 0;
44   _rootEdit = 0;
45   _window = 0;
46   _stackedWidget = 0;
47   _guiExecutor = 0;
48   _selectedSubject = 0;
49   _subjectToCut = 0;
50   _subjectToCopy = 0;
51   _isEdition = true;
52   _isLoadingPresentation = false;
53   _studyId = 0;
54   _fileName = QString();
55   _mapOfSchemaItem.clear();
56   _mapOfSceneItem.clear();
57   _mapOfEditionItem.clear();
58   _setOfModifiedSubjects.clear();
59   _setOfContext.insert(this);
60 }
61
62 QtGuiContext::~QtGuiContext()
63 {
64   DEBTRACE("QtGuiContext::~QtGuiContext");
65   if (_invoc) delete _invoc;
66   _invoc = 0;
67   if (_subjectProc)
68     {
69       _proc->setEdition(false);
70       _subjectProc->clean();
71       delete _subjectProc;
72       _subjectProc = 0;
73     }
74   _current = 0;
75   _QtCurrent = 0;
76   _setOfContext.erase(this);
77 }
78
79 void QtGuiContext::setProc(YACS::ENGINE::Proc* proc)
80 {
81   _mapOfSchemaItem.clear();
82   _mapOfSceneItem.clear();
83   GuiContext::setProc(proc);
84 }
85
86 YACS::HMI::Subject* QtGuiContext::getSubjectToPaste(bool &isCut)
87 {
88   QClipboard *clipboard = QApplication::clipboard();
89   const QMimeData * data=clipboard->mimeData();
90   const ItemMimeData* myData = dynamic_cast<const ItemMimeData*>(data);
91   Subject * sub=0;
92
93   if(myData)
94     {
95       sub=myData->getSubject();
96       isCut=myData->getControl();
97     }
98
99   return sub;
100 }
101
102 void QtGuiContext::setSubjectToCut(YACS::HMI::Subject* sub)
103 {
104   ItemMimeData *mime = new ItemMimeData;
105   mime->setSubject(sub);
106   mime->setControl(true);
107   QClipboard *clipboard = QApplication::clipboard();
108   clipboard->setMimeData(mime);
109 }
110
111 void QtGuiContext::setSubjectToCopy(YACS::HMI::Subject* sub)
112 {
113   ItemMimeData *mime = new ItemMimeData;
114   mime->setSubject(sub);
115   mime->setControl(false);
116   QClipboard *clipboard = QApplication::clipboard();
117   clipboard->setMimeData(mime);
118 }