Salome HOME
Fix for the bug #45: check and warning when the same image is used in 2 arguments.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_GeoreferencementOp.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_GeoreferencementOp.h"
24
25 #include "HYDROGUI_GeoreferencementDlg.h"
26 #include "HYDROGUI_DataModel.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <HYDROData_Profile.h>
32 #include <HYDROData_Iterator.h>
33 #include <HYDROData_Entity.h>
34
35 #include <LightApp_Application.h>
36 #include <LightApp_UpdateFlags.h>
37
38 #include <SUIT_Desktop.h>
39 #include <SUIT_MessageBox.h>
40 #include <SUIT_ViewWindow.h>
41
42 #include <OCCViewer_ViewManager.h>
43
44 #include <gp_XY.hxx>
45
46 HYDROGUI_GeoreferencementOp::HYDROGUI_GeoreferencementOp( HYDROGUI_Module* theModule, const int theInitialMode )
47 : HYDROGUI_Operation( theModule ),
48   myInitialMode( theInitialMode )
49 {
50   setName( tr( "PROFILES_GEOREFERENCEMENT" ) );
51 }
52
53 HYDROGUI_GeoreferencementOp::~HYDROGUI_GeoreferencementOp()
54 {
55 }
56
57 void HYDROGUI_GeoreferencementOp::startOperation()
58 {
59   HYDROGUI_Operation::startOperation();
60
61   HYDROGUI_GeoreferencementDlg* aPanel = 
62     ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
63   if ( !aPanel ) {
64     return;
65   }
66
67   aPanel->reset();
68
69   if ( myInitialMode == All ) {
70     onModeActivated( HYDROGUI_GeoreferencementDlg::AllProfiles );
71   } else if ( myInitialMode == Selected ) {
72     onModeActivated( HYDROGUI_GeoreferencementDlg::SelectedProfiles );
73   }
74
75   LightApp_Application* anApp = module()->getApp();
76   OCCViewer_ViewManager* aViewManager =
77     dynamic_cast<OCCViewer_ViewManager*>( anApp->getViewManager( OCCViewer_Viewer::Type(), false ) );
78   if ( aViewManager ) {
79     connect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
80              aPanel, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ), 
81              Qt::UniqueConnection );
82   }
83
84   connect( anApp->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
85            this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ), Qt::UniqueConnection );
86 }
87
88 void HYDROGUI_GeoreferencementOp::abortOperation()
89 {
90   LightApp_Application* anApp = module()->getApp();
91   if ( anApp && anApp->desktop() ) {
92     anApp->desktop()->disconnect( this );
93   }
94
95   HYDROGUI_Operation::abortOperation();
96 }
97
98 void HYDROGUI_GeoreferencementOp::commitOperation()
99 {
100   LightApp_Application* anApp = module()->getApp();
101   if ( anApp && anApp->desktop() ) {
102     anApp->desktop()->disconnect( this );
103   }
104
105   HYDROGUI_Operation::commitOperation();
106 }
107
108 HYDROGUI_InputPanel* HYDROGUI_GeoreferencementOp::createInputPanel() const
109 {
110   HYDROGUI_InputPanel* aPanel = new HYDROGUI_GeoreferencementDlg( module(), getName() );
111   connect( aPanel, SIGNAL( modeActivated( int ) ), SLOT( onModeActivated( int ) ) );
112   connect( aPanel, SIGNAL( updateSelection() ), SLOT( onUpdateSelection() ) );
113
114   return aPanel;
115 }
116
117 bool HYDROGUI_GeoreferencementOp::processApply( int& theUpdateFlags,
118                                                 QString& theErrorMsg )
119 {
120   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced;
121
122   return store( theErrorMsg );
123 }
124
125 void HYDROGUI_GeoreferencementOp::onModeActivated( const int theActualMode )
126 {
127   QString anErrorMsg;
128
129   // Get the panel
130   HYDROGUI_GeoreferencementDlg* aPanel = 
131     ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
132   if ( !aPanel ) {
133     return;
134   }
135
136   aPanel->setMode( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ?
137                    HYDROGUI_GeoreferencementDlg::SelectedProfiles :
138                    HYDROGUI_GeoreferencementDlg::AllProfiles);
139
140   // Store the dialog data to the data model
141   bool isToStore = false;
142   // Check if modifications exists
143   if ( aPanel->isModified() ) {
144     // Show confirmation dialog
145     SUIT_MessageBox::StandardButtons aButtons = 
146       SUIT_MessageBox::Yes | SUIT_MessageBox::No;
147
148     isToStore = SUIT_MessageBox::question( module()->getApp()->desktop(),
149                                            tr( "CONFIRMATION" ),
150                                            tr( "CONFIRM_STORE" ),
151                                            aButtons, 
152                                            SUIT_MessageBox::Yes) == SUIT_MessageBox::Yes;
153   }
154   // Store modifications if needed
155   if ( isToStore && !store( anErrorMsg ) ) {
156     anErrorMsg.append( "\n" + tr( "INPUT_VALID_DATA" ) );
157     SUIT_MessageBox::critical( module()->getApp()->desktop(),
158                                tr( "INSUFFICIENT_INPUT_DATA" ),
159                                anErrorMsg );
160     return;
161   }
162
163   aPanel->setMode( theActualMode );
164
165   // Get the list of profiles
166   HYDROData_SequenceOfObjects aSeqOfProfiles;
167   
168   if( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ) {
169     HYDROData_Iterator aProfilesIter( doc(), KIND_PROFILE );
170     while ( aProfilesIter.More() ) {
171       aSeqOfProfiles.Append( aProfilesIter.Current() );
172       aProfilesIter.Next();
173     }
174   } else if ( theActualMode == HYDROGUI_GeoreferencementDlg::SelectedProfiles ) {
175     aSeqOfProfiles = HYDROGUI_Tool::GetSelectedObjects( module() );
176   }
177
178   // Set the profiles to the panel
179   setPanelData( aSeqOfProfiles );
180 }
181
182 void HYDROGUI_GeoreferencementOp::onWindowActivated( SUIT_ViewWindow* theViewWindow )
183 {
184   if ( !theViewWindow ) {
185     return;
186   }
187
188   OCCViewer_ViewManager* aViewManager =
189     dynamic_cast<OCCViewer_ViewManager*>( theViewWindow->getViewManager() );
190
191   if ( aViewManager ) {
192     HYDROGUI_GeoreferencementDlg* aPanel = 
193       ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
194     if ( aPanel ) {
195       connect( aViewManager, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
196                aPanel, SLOT( onMousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
197                Qt::UniqueConnection);
198     }
199   }
200 }
201
202 bool HYDROGUI_GeoreferencementOp::store( QString& theErrorMsg )
203 {
204   // Clear the error string
205   theErrorMsg.clear();
206
207   // Get the panel
208   HYDROGUI_GeoreferencementDlg* aPanel = 
209     ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
210   if ( !aPanel ) {
211     return false;
212   }
213
214   // Get georeferencement data from the panel
215   HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aGeoDataMap;
216   aPanel->getData( aGeoDataMap );
217
218   if ( aGeoDataMap.empty() ) {
219     return true;
220   }
221
222   // Check the data validity
223   foreach ( const QString& aProfileName, aGeoDataMap.keys() ) {
224     HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData = 
225       aGeoDataMap.value( aProfileName );
226     if ( aGeoData.isIncomplete ) {
227       theErrorMsg = tr( "INCOMPLETE_DATA" ).arg( aProfileName );
228       return false;
229     }
230   }
231
232   // Store the data in the data model
233   foreach ( const QString& aProfileName, aGeoDataMap.keys() ) {
234     Handle(HYDROData_Profile) aProfile = 
235       Handle(HYDROData_Profile)::DownCast(
236         HYDROGUI_Tool::FindObjectByName( module(), aProfileName, KIND_PROFILE ) );
237     if ( !aProfile.IsNull() ) {
238       HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData = 
239         aGeoDataMap.value( aProfileName );
240       if ( !aGeoData.isEmpty ) {
241         aProfile->SetFirstPoint( gp_XY( aGeoData.Xg, aGeoData.Yg ) );
242         aProfile->SetLastPoint( gp_XY( aGeoData.Xd, aGeoData.Yd ) );
243       } else {
244         aProfile->Invalidate();
245       }
246
247       aProfile->Update();
248     }
249   }
250
251   module()->update( UF_Model | UF_OCCViewer | UF_OCC_Forced );
252   commitDocOperation(); // TODO: analyze the consequences
253
254   return true;
255 }
256
257 void HYDROGUI_GeoreferencementOp::onUpdateSelection()
258 {
259   // Get the selected profiles
260   HYDROData_SequenceOfObjects aSeqOfProfiles = 
261     HYDROGUI_Tool::GetSelectedObjects( module() );
262
263   // Set them to the dialog
264   setPanelData( aSeqOfProfiles );
265 }
266
267 void HYDROGUI_GeoreferencementOp::setPanelData( 
268   const HYDROData_SequenceOfObjects& theProfiles )
269 {
270   // Get the panel
271   HYDROGUI_GeoreferencementDlg* aPanel = 
272     ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
273   if ( !aPanel ) {
274     return;
275   }
276
277   // Get georeferencement data from the data model
278   HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aDataMap;
279
280   HYDROData_SequenceOfObjects::Iterator anIter( theProfiles );
281   for ( ; anIter.More(); anIter.Next() ) {
282     Handle(HYDROData_Profile) aProfile =
283         Handle(HYDROData_Profile)::DownCast( anIter.Value() );
284     if ( aProfile.IsNull() ) {
285       continue;
286     }
287
288     HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData;
289
290     gp_XY aFirstPoint, aLastPoint;
291     if ( aProfile->GetFirstPoint( aFirstPoint ) && aProfile->GetLastPoint( aLastPoint ) ) {
292       aGeoData = 
293         HYDROGUI_GeoreferencementDlg::ProfileGeoData( aFirstPoint.X(), aFirstPoint.Y(),
294                                                       aLastPoint.X(), aLastPoint.Y() );
295     }
296    
297     aDataMap.insert( aProfile->GetName(), aGeoData );
298   }
299
300   // Set the collected data to the dialog
301   aPanel->setData( aDataMap );
302 }