]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_RiverBottomOp.cxx
Salome HOME
Merge branch 'BR_IMPROVEMENTS' of ssh://git.salome-platform.org/modules/hydro into...
[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_STREAM_BOTTOM" ) );
53 }
54
55 HYDROGUI_RiverBottomOp::~HYDROGUI_RiverBottomOp()
56 {
57 }
58
59 void HYDROGUI_RiverBottomOp::startOperation()
60 {
61   HYDROGUI_Operation::startOperation();
62
63   if ( isApplyAndClose() )
64   {
65     HYDROGUI_RiverBottomDlg* aPanel = ::qobject_cast<HYDROGUI_RiverBottomDlg*>( inputPanel() );
66
67     aPanel->reset();
68   }
69 }
70
71 void HYDROGUI_RiverBottomOp::abortOperation()
72 {
73   HYDROGUI_Operation::abortOperation();
74 }
75
76 void HYDROGUI_RiverBottomOp::commitOperation()
77 {
78   HYDROGUI_Operation::commitOperation();
79 }
80
81 HYDROGUI_InputPanel* HYDROGUI_RiverBottomOp::createInputPanel() const
82 {
83   HYDROGUI_RiverBottomDlg* aPanel = new HYDROGUI_RiverBottomDlg( module(), getName() );
84   return aPanel;
85 }
86
87 bool HYDROGUI_RiverBottomOp::processApply( int& theUpdateFlags, QString& theErrorMsg,
88                                            QStringList& theBrowseObjectsEntries )
89 {
90   HYDROGUI_RiverBottomDlg* aPanel = ::qobject_cast<HYDROGUI_RiverBottomDlg*>( inputPanel() );
91   if ( !aPanel )
92     return false;
93
94   Handle(HYDROData_Stream) aRiver = riverObject( aPanel->getRiverName() );
95   if ( aRiver.IsNull() )
96   {
97     theErrorMsg = tr( "INCORRECT_STREAM_OBJECT" );
98     return false;
99   }
100
101   startDocOperation();
102
103   aRiver->GenerateBottomPolyline();
104   aRiver->Update();
105
106   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
107
108   commitDocOperation();
109
110   return true;
111 }
112 /*
113 Handle(HYDROData_RiverBottom) HYDROGUI_RiverBottomOp::createNewObject()
114 {
115   return Handle(HYDROData_RiverBottom)::DownCast( doc()->CreateObject( KIND_RIVERBOTTOM ) );
116 }
117 */
118
119 Handle(HYDROData_Stream) HYDROGUI_RiverBottomOp::riverObject( const QString& theName ) const
120 {
121     return Handle(HYDROData_Stream)::DownCast( HYDROGUI_Tool::FindObjectByName( module(), theName ) );
122 }
123 QStringList HYDROGUI_RiverBottomOp::riverNames( bool all ) const
124 {
125     QStringList aNames;
126 /*
127     for ( HYDROData_Iterator it( HYDROData_Document::Document( module()->getStudyId() ), KIND_RIVER ); it.More(); it.Next() )
128     {
129         it.Current();
130         if ( !aRiver.IsNull() && ( all || !aRiver->HasBottom() )
131             aNames.append( aRiver->GetName() );
132     }
133 */
134     return aNames;
135 }