Salome HOME
Selection for image presentation & updates for interpolated stream profiles and stream.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_RiverBottomOp.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_RiverBottomOp.h"
24
25 #include "HYDROGUI_RiverBottomDlg.h"
26
27 #include "HYDROGUI_DataModel.h"
28 #include "HYDROGUI_DataObject.h"
29 #include "HYDROGUI_Module.h"
30 #include "HYDROGUI_Shape.h"
31 #include "HYDROGUI_Tool.h"
32 #include "HYDROGUI_UpdateFlags.h"
33
34 #include <HYDROData_River.h>
35 #include <HYDROData_Iterator.h>
36
37 /*
38 #include <HYDROData_Profile.h>
39
40 #include <OCCViewer_ViewManager.h>
41 #include <OCCViewer_ViewModel.h>
42
43 #include <LightApp_Application.h>
44 #include <LightApp_UpdateFlags.h>
45
46 #include <TopoDS.hxx>
47 */
48
49 HYDROGUI_RiverBottomOp::HYDROGUI_RiverBottomOp( HYDROGUI_Module* theModule )
50 : HYDROGUI_Operation( theModule )
51 {
52   setName( tr( "FIND_RIVER_BOTTOM" ) );
53 }
54
55 HYDROGUI_RiverBottomOp::~HYDROGUI_RiverBottomOp()
56 {
57 }
58
59 void HYDROGUI_RiverBottomOp::startOperation()
60 {
61   HYDROGUI_Operation::startOperation();
62
63   HYDROGUI_RiverBottomDlg* aPanel = ::qobject_cast<HYDROGUI_RiverBottomDlg*>( inputPanel() );
64
65   aPanel->reset();
66 }
67
68 void HYDROGUI_RiverBottomOp::abortOperation()
69 {
70   HYDROGUI_Operation::abortOperation();
71 }
72
73 void HYDROGUI_RiverBottomOp::commitOperation()
74 {
75   HYDROGUI_Operation::commitOperation();
76 }
77
78 HYDROGUI_InputPanel* HYDROGUI_RiverBottomOp::createInputPanel() const
79 {
80   HYDROGUI_RiverBottomDlg* aPanel = new HYDROGUI_RiverBottomDlg( module(), getName() );
81   return aPanel;
82 }
83
84 bool HYDROGUI_RiverBottomOp::processApply( int& theUpdateFlags, QString& theErrorMsg,
85                                            QStringList& theBrowseObjectsEntries )
86 {
87   HYDROGUI_RiverBottomDlg* aPanel = ::qobject_cast<HYDROGUI_RiverBottomDlg*>( inputPanel() );
88   if ( !aPanel )
89     return false;
90
91   Handle(HYDROData_Stream) aRiver = riverObject( aPanel->getRiverName() );
92   if ( aRiver.IsNull() )
93   {
94     theErrorMsg = tr( "INCORRECT_RIVER_OBJECT" );
95     return false;
96   }
97
98   startDocOperation();
99
100   aRiver->GenerateBottomPolyline();
101   aRiver->Update();
102
103   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
104
105   commitDocOperation();
106
107   return true;
108 }
109 /*
110 Handle(HYDROData_RiverBottom) HYDROGUI_RiverBottomOp::createNewObject()
111 {
112   return Handle(HYDROData_RiverBottom)::DownCast( doc()->CreateObject( KIND_RIVERBOTTOM ) );
113 }
114 */
115
116 Handle(HYDROData_Stream) HYDROGUI_RiverBottomOp::riverObject( const QString& theName ) const
117 {
118     return Handle(HYDROData_Stream)::DownCast( HYDROGUI_Tool::FindObjectByName( module(), theName ) );
119 }
120 QStringList HYDROGUI_RiverBottomOp::riverNames( bool all ) const
121 {
122     QStringList aNames;
123 /*
124     for ( HYDROData_Iterator it( HYDROData_Document::Document( module()->getStudyId() ), KIND_RIVER ); it.More(); it.Next() )
125     {
126         it.Current();
127         if ( !aRiver.IsNull() && ( all || !aRiver->HasBottom() )
128             aNames.append( aRiver->GetName() );
129     }
130 */
131     return aNames;
132 }