]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_ExportSinusXOp.cxx
Salome HOME
sinusX p.5 (Export / GUI Part)
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ExportSinusXOp.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_ExportSinusXOp.h>
20 #include <HYDROGUI_ExportSinusXDlg.h>
21 #include <HYDROData_Document.h>
22 #include <HYDROGUI_UpdateFlags.h>
23 #include <HYDROGUI_Tool.h>
24 #include <HYDROData_Bathymetry.h>
25 #include <HYDROData_PolylineXY.h>
26 #include <HYDROData_Profile.h>
27 #include <HYDROData_Entity.h>
28
29
30 HYDROGUI_ExportSinusXOp::HYDROGUI_ExportSinusXOp( HYDROGUI_Module* theModule )
31 : HYDROGUI_Operation( theModule )
32 {
33   setName( tr( "EXPORT_SINUSX" ) );
34 }
35
36 HYDROGUI_ExportSinusXOp::~HYDROGUI_ExportSinusXOp()
37 {
38 }
39
40 void HYDROGUI_ExportSinusXOp::startOperation()
41 {
42   HYDROGUI_Operation::startOperation();
43
44   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
45   if ( !aPanel )
46     return;
47 }
48
49 HYDROGUI_InputPanel* HYDROGUI_ExportSinusXOp::createInputPanel() const
50 {
51   HYDROGUI_ExportSinusXDlg* aPanel = new HYDROGUI_ExportSinusXDlg( module(), getName() );
52   connect( aPanel, SIGNAL( IncludeItems() ), SLOT( onIncludeItems() ) );
53   connect( aPanel, SIGNAL( ExcludeItems() ), SLOT( onExcludeItems() ) );
54   return aPanel;
55 }
56
57 void HYDROGUI_ExportSinusXOp::onIncludeItems()
58 {
59   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
60   if ( !aPanel )
61     return;
62
63   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
64   HYDROData_SequenceOfObjects aSelectedItems;
65
66   if ( aSeq.IsEmpty())
67     return;
68
69   for( int i = 1; i <= aSeq.Length(); i++ )
70   {
71     Handle_HYDROData_Entity anEnt = aSeq.Value( i );
72     if (anEnt->IsKind( STANDARD_TYPE( HYDROData_Bathymetry)) ||
73         anEnt->IsKind( STANDARD_TYPE( HYDROData_PolylineXY)) ||
74         anEnt->IsKind( STANDARD_TYPE( HYDROData_Profile))  )
75         aSelectedItems.Append(anEnt);
76   }
77   
78   aPanel->addItems( aSelectedItems );
79
80 }
81
82 void HYDROGUI_ExportSinusXOp::onExcludeItems()
83 {
84   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
85   if ( !aPanel )
86     return;
87   aPanel->RemoveItems( );
88
89 }