Salome HOME
export shapefile name under field 'name'
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DeleteOp.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_DeleteOp.h"
20 #include "HYDROGUI_DataModel.h"
21 #include "HYDROGUI_DeleteDlg.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_Tool.h"
24 #include "HYDROGUI_Tool2.h"
25 #include "HYDROGUI_UpdateFlags.h"
26 #include "HYDROGUI_ProfileOp.h"
27
28 #include <HYDROData_Object.h>
29 #include <HYDROData_Document.h>
30
31 #include <LightApp_Application.h>
32
33 #include <SUIT_Desktop.h>
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_Study.h>
36
37 #include <QSet>
38
39 #define _DEVDEBUG_
40 #include "HYDRO_trace.hxx"
41
42 HYDROGUI_DeleteOp::HYDROGUI_DeleteOp( HYDROGUI_Module* theModule )
43 : HYDROGUI_Operation( theModule )
44 {
45   setName( tr( "DELETE" ) );
46 }
47
48 HYDROGUI_DeleteOp::~HYDROGUI_DeleteOp()
49 {
50 }
51
52 void HYDROGUI_DeleteOp::startOperation()
53 {
54   DEBTRACE("startOperation");
55   QList<SUIT_Operation*> operations = study()->operations();
56   int n = operations.size();
57   if( n>=2 )
58   {
59     SUIT_Operation* anOtherOp = operations[n-2];
60     HYDROGUI_ProfileOp* aProfileOp = dynamic_cast<HYDROGUI_ProfileOp*>( anOtherOp );
61     if( aProfileOp )
62     {
63       aProfileOp->deleteSelected();
64       abort();
65       return;
66     }
67   }
68
69   HYDROGUI_Operation::startOperation();
70
71   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
72   if( aSeq.IsEmpty() )
73   {
74     abort();
75     return;
76   }
77
78   bool anIsCanRemove = true;
79
80   QStringList anObjNames;
81   for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
82   {
83     Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
84     if( anObject.IsNull() )
85       continue;
86
87     if ( !anObject->CanRemove() )
88     {
89       anIsCanRemove = false;
90       break;
91     }
92
93     anObjNames.append( anObject->GetName() );
94     DEBTRACE("obj name " << anObject->GetName().toStdString());
95   }
96
97   if ( !anIsCanRemove )
98   {
99     SUIT_MessageBox::critical( module()->getApp()->desktop(),
100                                tr( "DELETE_OBJECTS" ), tr( "DELETE_OBJECTS_IMPOSIBLE" ) );
101     abort();
102     return;
103   }
104
105   anObjNames.removeDuplicates();
106
107   // check the back-references
108   QMap<QString,HYDROData_SequenceOfObjects> aBackObjects =
109     HYDROGUI_Tool::GetObjectsBackReferences( doc(), anObjNames );
110
111   QMap<QString,HYDROData_SequenceOfObjects>::const_iterator anIt = aBackObjects.begin(),
112                                                             aLast = aBackObjects.end();
113   QStringList aRefList;
114   for ( ; anIt != aLast; anIt++ ) {
115     QStringList aSeqList;
116     HYDROData_SequenceOfObjects::Iterator anIter( anIt.value() );
117     for ( ; anIter.More(); anIter.Next() )
118     {
119       Handle(HYDROData_Entity) anEntity = anIter.Value();
120       if ( anEntity.IsNull() )
121         continue;
122       aSeqList.append( QString( tr( "DELETE_OBJECT_NAME" ) ).arg( anEntity->GetName() ) );
123     }
124     aRefList.append( QString( tr( "DELETE_OBJECT_IS_USED_FOR" ) ).arg( anIt.key() )
125                                                           .arg( aSeqList.join( ", " ) ) );
126   }
127
128   //QString aNamesList = anObjNames.join( "\n" );
129   if ( !aBackObjects.isEmpty() )
130   {
131     SUIT_MessageBox::critical( module()->getApp()->desktop(),
132                                tr( "DELETE_OBJECTS" ),
133                                tr( "DELETED_OBJECTS_HAS_BACKREFERENCES" ).arg( aRefList.join( "\n" ) ) );
134     abort();
135     return;
136   }
137
138   QString aWarningMsg;
139
140   HYDROGUI_DeleteDlg aDeleteDlg( module()->getApp()->desktop() );
141   aDeleteDlg.setObjectsToRemove( anObjNames );
142   bool isLastStricklerRemoved = false;
143   if ( aDeleteDlg.exec() != HYDROGUI_DeleteDlg::Accepted )
144   {
145     abort();
146     return;
147   }
148   else
149   {
150     QStringList aTableNames = 
151       HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_STRICKLER_TABLE, false );
152     aTableNames += anObjNames;
153     if ( aTableNames.toSet().size() == anObjNames.size() )
154     {
155       aWarningMsg = tr("DELETE_LAST_TABLE_WRN");
156       isLastStricklerRemoved = true;
157     }
158   }
159
160   if ( !aWarningMsg.isEmpty() ) {
161     int anAnswer = SUIT_MessageBox::warning( module()->getApp()->desktop(),
162                                              tr("WARNING"), aWarningMsg,
163                                               QMessageBox::Yes | QMessageBox::No,
164                                               QMessageBox::No );
165     if ( anAnswer != QMessageBox::Yes ) {
166       abort();
167       return;
168     }
169   }
170
171   startDocOperation();
172
173   for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
174   {
175     Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
176
177     if ( !anObject.IsNull() && !anObject->IsRemoved() ) {
178       anObject->Remove();
179       module()->setObjectRemoved( anObject );
180     }
181   }
182
183   if( isLastStricklerRemoved )
184   {
185     HYDROGUI_DataModel* aModel = dynamic_cast<HYDROGUI_DataModel*>( module()->dataModel() );
186     aModel->createDefaultStricklerTable( doc(), 0 );
187   }
188
189   commitDocOperation();
190
191   module()->update( UF_Model | UF_Viewer | UF_OCCViewer | UF_VTKViewer );
192   commit();
193
194   module()->enableLCMActions();
195 }