Salome HOME
refs #432: refactoring of the shape class
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_CopyPasteOp.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_CopyPasteOp.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_UpdateFlags.h"
28
29 HYDROGUI_CopyPasteOp::HYDROGUI_CopyPasteOp( HYDROGUI_Module* theModule,
30                                             const bool theIsPaste )
31 : HYDROGUI_Operation( theModule ),
32   myIsPaste( theIsPaste )
33 {
34   setName( tr( "COPY_PASTE" ) );
35 }
36
37 HYDROGUI_CopyPasteOp::~HYDROGUI_CopyPasteOp()
38 {
39 }
40
41 void HYDROGUI_CopyPasteOp::startOperation()
42 {
43   HYDROGUI_Operation::startOperation();
44
45   HYDROGUI_DataModel* aModel = module()->getDataModel();
46
47   bool anIsOk = false;
48   int aFlags = 0;
49   if( myIsPaste )
50   {
51     startDocOperation();
52
53     anIsOk = aModel->paste();
54     aFlags = UF_Controls | UF_Model;
55
56     if( anIsOk )
57       commitDocOperation();
58     else
59       abortDocOperation();
60   }
61   else
62   {
63     anIsOk = aModel->copy();
64     aFlags = UF_Controls;
65   }
66
67   if( anIsOk )
68   {
69     module()->update( aFlags );
70     commit();
71   }
72   else
73     abort();
74 }