Salome HOME
ef17ecdbbf53e91b8af34fce987920effd26e454
[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 #include <HYDROGUI_ObjListBox.h>
29 #include <QMessageBox>
30
31
32 HYDROGUI_ExportSinusXOp::HYDROGUI_ExportSinusXOp( HYDROGUI_Module* theModule )
33 : HYDROGUI_Operation( theModule )
34 {
35   setName( tr( "EXPORT_SINUSX" ) );
36 }
37
38 HYDROGUI_ExportSinusXOp::~HYDROGUI_ExportSinusXOp()
39 {
40 }
41
42 void HYDROGUI_ExportSinusXOp::startOperation()
43 {
44   HYDROGUI_Operation::startOperation();
45
46   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
47   if ( !aPanel )
48     return;
49 }
50
51 HYDROGUI_InputPanel* HYDROGUI_ExportSinusXOp::createInputPanel() const
52 {
53   HYDROGUI_ExportSinusXDlg* aPanel = new HYDROGUI_ExportSinusXDlg( module(), getName() );
54   connect( aPanel, SIGNAL( ExportItems() ), SLOT( onExportItems() ) );
55   return aPanel;
56 }
57
58 void HYDROGUI_ExportSinusXOp::onExportItems()
59 {
60   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
61   if ( !aPanel )
62     return;
63   int T = aPanel->GetSelectedEntities().Size();
64 }