Salome HOME
new presentation using DTM
[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 <HYDROGUI_Operation.h>
30 #include "HYDROGUI_Module.h"
31 #include <HYDROData_SinusX.h>
32
33 #include <SUIT_FileDlg.h>
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_Desktop.h>
36
37 #include <LightApp_Application.h>
38 #include <QApplication>
39
40 HYDROGUI_ExportSinusXOp::HYDROGUI_ExportSinusXOp( HYDROGUI_Module* theModule )
41 : HYDROGUI_Operation( theModule )
42 {
43   setName( tr( "EXPORT_SINUSX" ) );
44 }
45
46 HYDROGUI_ExportSinusXOp::~HYDROGUI_ExportSinusXOp()
47 {
48 }
49
50 void HYDROGUI_ExportSinusXOp::startOperation()
51 {
52   HYDROGUI_Operation::startOperation();
53
54   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
55   if ( !aPanel )
56     return;
57 }
58
59 HYDROGUI_InputPanel* HYDROGUI_ExportSinusXOp::createInputPanel() const
60 {
61   HYDROGUI_ExportSinusXDlg* aPanel = new HYDROGUI_ExportSinusXDlg( module(), getName() );
62   connect( aPanel, SIGNAL( ExportItems() ), SLOT( onExportItems() ) );
63   return aPanel;
64 }
65
66 void HYDROGUI_ExportSinusXOp::onExportItems()
67 {
68   QString aFilter( tr("SINUSX_FILTER") ); 
69   HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
70   if ( !aPanel )
71     return;
72   if (!aPanel->GetSelectedEntities().IsEmpty())
73   {
74     //Export selected items to SX file
75     QString aFileName = SUIT_FileDlg::getFileName( module()->getApp()->desktop(), "", aFilter, tr( "EXPORT_SINUSX" ), false );
76     HYDROData_SinusX anExporter;
77     anExporter.Export(aFileName, aPanel->GetSelectedEntities());
78   }
79   else
80     SUIT_MessageBox::warning(module()->getApp()->desktop(), tr( "EXPORT_SINUSX" ), tr( "NO_ENTITIES_TO_EXPORT"));
81 }