]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_TranslateObstacleOp.cxx
Salome HOME
Merge branch 'BR_IMPROVEMENTS' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_TranslateObstacleOp.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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_TranslateObstacleOp.h"
24
25 #include "HYDROGUI_TranslateObstacleDlg.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Shape.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <HYDROData_ShapesTool.h>
32
33 #include <LightApp_Application.h>
34 #include <LightApp_SelectionMgr.h>
35 #include <LightApp_UpdateFlags.h>
36
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_Desktop.h>
39
40 #include <OCCViewer_ViewManager.h>
41 #include <OCCViewer_ViewModel.h>
42 #include <OCCViewer_ViewWindow.h>
43
44
45 HYDROGUI_TranslateObstacleOp::HYDROGUI_TranslateObstacleOp( HYDROGUI_Module* theModule )
46 : HYDROGUI_Operation( theModule ), 
47   myPreviewPrs( NULL )
48 {
49   setName( tr( "TRANSLATE_OBSTACLE" ) );
50 }
51
52 HYDROGUI_TranslateObstacleOp::~HYDROGUI_TranslateObstacleOp()
53 {
54   erasePreview();
55 }
56
57 void HYDROGUI_TranslateObstacleOp::startOperation()
58 {
59   HYDROGUI_Operation::startOperation();
60
61   // Get panel and reset its state
62   HYDROGUI_TranslateObstacleDlg* aPanel = (HYDROGUI_TranslateObstacleDlg*)inputPanel();
63   aPanel->reset();
64
65   // Get the edited object
66   if ( isApplyAndClose() )
67     myEditedObject = Handle(HYDROData_Obstacle)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
68   if ( myEditedObject.IsNull() ) {
69     abort();
70     return;
71   }
72
73   // Set the edited object name to the panel
74   aPanel->setName( myEditedObject->GetName() );
75
76   // Create preview
77   createPreview();
78 }
79
80 void HYDROGUI_TranslateObstacleOp::abortOperation()
81 {
82   erasePreview();
83   abortDocOperation();
84
85   HYDROGUI_Operation::abortOperation();
86 }
87
88 void HYDROGUI_TranslateObstacleOp::commitOperation()
89 {
90   erasePreview();
91
92   HYDROGUI_Operation::commitOperation();
93 }
94
95 HYDROGUI_InputPanel* HYDROGUI_TranslateObstacleOp::createInputPanel() const
96 {
97   HYDROGUI_TranslateObstacleDlg* aPanel = new HYDROGUI_TranslateObstacleDlg( module(), getName() );
98
99   connect( aPanel, SIGNAL( argumentsChanged() ), this, SLOT( onArgumentsChanged() ) );
100
101   return aPanel;
102 }
103
104 bool HYDROGUI_TranslateObstacleOp::processApply( int& theUpdateFlags,
105                                                  QString& theErrorMsg,
106                                                  QStringList& theBrowseObjectsEntries )
107 {
108   HYDROGUI_TranslateObstacleDlg* aPanel = ::qobject_cast<HYDROGUI_TranslateObstacleDlg*>( inputPanel() );
109   if ( !aPanel || myEditedObject.IsNull() ) {
110     return false;
111   }
112
113   // Erase preview
114   erasePreview();
115
116   // Get the translated shape
117   double aDx = aPanel->getDx();
118   double aDy = aPanel->getDy();
119   double aDz = aPanel->getDz();
120
121   // Translate the obstacle
122   myEditedObject->Translate( aDx, aDy, aDz );
123   myEditedObject->Update();
124
125   module()->setIsToUpdate( myEditedObject );
126
127   // Set update flags
128   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
129
130   return true;
131 }
132
133 void HYDROGUI_TranslateObstacleOp::createPreview()
134 {
135   HYDROGUI_TranslateObstacleDlg* aPanel = (HYDROGUI_TranslateObstacleDlg*)inputPanel();
136   if ( myEditedObject.IsNull() || !aPanel )
137     return;
138
139   // Create preview presentation if necessary
140   if ( !myPreviewPrs ) {
141     LightApp_Application* anApp = module()->getApp();
142
143     if ( !getPreviewManager() )
144       setPreviewManager( ::qobject_cast<OCCViewer_ViewManager*>( 
145                          anApp->getViewManager( OCCViewer_Viewer::Type(), true ) ) );
146     OCCViewer_ViewManager* aViewManager = getPreviewManager();
147     if ( aViewManager ) {
148       if ( OCCViewer_Viewer* aViewer = aViewManager->getOCCViewer() ) {
149         Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
150         if ( !aCtx.IsNull() ) {
151           myPreviewPrs = new HYDROGUI_Shape( aCtx, NULL, getPreviewZLayer() );
152           myPreviewPrs->setFillingColor( myEditedObject->GetFillingColor(), false, false );
153           myPreviewPrs->setBorderColor( myEditedObject->GetBorderColor(), false, false );
154         }
155       }
156     }
157   }
158   
159   // Set the translated shape to the preview presentation
160   if ( myPreviewPrs )
161   {
162     double aDx = aPanel->getDx();
163     double aDy = aPanel->getDy();
164     double aDz = aPanel->getDz();
165     TopoDS_Shape anOriShape = myEditedObject->GetShape3D();
166
167     TopoDS_Shape aTranslatedShape = HYDROData_ShapesTool::Translated( anOriShape, aDx, aDy, aDz );
168     myPreviewPrs->setShape( aTranslatedShape );
169   }
170 }
171
172 void HYDROGUI_TranslateObstacleOp::erasePreview()
173 {
174   if( myPreviewPrs ) {
175     delete myPreviewPrs;
176     myPreviewPrs = 0;
177   }
178 }
179
180 void HYDROGUI_TranslateObstacleOp::onArgumentsChanged()
181 {
182   // Update preview
183   createPreview();
184 }
185