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.
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.
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
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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>
33 #include <SUIT_FileDlg.h>
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_Desktop.h>
37 #include <LightApp_Application.h>
38 #include <QApplication>
40 HYDROGUI_ExportSinusXOp::HYDROGUI_ExportSinusXOp( HYDROGUI_Module* theModule )
41 : HYDROGUI_Operation( theModule )
43 setName( tr( "EXPORT_SINUSX" ) );
46 HYDROGUI_ExportSinusXOp::~HYDROGUI_ExportSinusXOp()
50 void HYDROGUI_ExportSinusXOp::startOperation()
52 HYDROGUI_Operation::startOperation();
54 HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
59 HYDROGUI_InputPanel* HYDROGUI_ExportSinusXOp::createInputPanel() const
61 HYDROGUI_ExportSinusXDlg* aPanel = new HYDROGUI_ExportSinusXDlg( module(), getName() );
62 connect( aPanel, SIGNAL( ExportItems() ), SLOT( onExportItems() ) );
66 void HYDROGUI_ExportSinusXOp::onExportItems()
68 QString aFilter( tr("SINUSX_FILTER") );
69 HYDROGUI_ExportSinusXDlg* aPanel = ::qobject_cast<HYDROGUI_ExportSinusXDlg*>( inputPanel() );
72 if (!aPanel->GetSelectedEntities().IsEmpty())
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());
80 SUIT_MessageBox::warning(module()->getApp()->desktop(), tr( "EXPORT_SINUSX" ), tr( "NO_ENTITIES_TO_EXPORT"));