Salome HOME
Example of light module from Salome tutorial
[samples/atomic.git] / ATOMIC_SRC / src / ATOMICGUI / ATOMICGUI_ImportExportOp.cxx
1 //  Copyright (C) 2007-2010  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.
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21
22 #include <ATOMICGUI_ImportExportOp.h>
23 #include <ATOMICGUI_DataModel.h>
24
25 #include <LightApp_Module.h>
26 #include <LightApp_Application.h>
27
28 #include <SUIT_MessageBox.h>
29 #include <SUIT_Desktop.h>
30
31 /*! Constructor */
32 ATOMICGUI_ImportExportOp::ATOMICGUI_ImportExportOp( const bool import )
33 : ATOMICGUI_Operation(),
34   myIsImport( import )
35 {
36 }
37
38 /*! Destructor */
39 ATOMICGUI_ImportExportOp::~ATOMICGUI_ImportExportOp()
40 {
41 }
42
43 /*! Operation itself. Imports or exports the data structure 
44  *  calling the corresponing methods of Data Model. */
45 void ATOMICGUI_ImportExportOp::startOperation()
46 {
47   ATOMICGUI_DataModel* dm = dataModel();
48   if ( !dm )
49   {
50     abort();
51     return;
52   }
53
54   QStringList filtersList;
55   filtersList.append( tr( "XML_FILES" ) );
56
57   // Select a file to be imported
58   QString aFileName = module()->getApp()->getFileName( myIsImport, QString::null,
59                                                        filtersList.join( ";;" ),
60                                                        tr( myIsImport ? "ATOMICGUI_IMPORT_XML" : "ATOMICGUI_EXPORT_XML" ), 0 );
61
62   if( !aFileName.isEmpty() )
63   {
64     if( ( myIsImport && dm->importFile( aFileName ) ) ||
65         ( !myIsImport && dm->exportFile( aFileName ) ) )
66     {
67       commit();
68       return;
69     }
70     else
71       SUIT_MessageBox::warning( application()->desktop(),
72                                 tr( "WRN_WARNING" ),
73                                 tr( myIsImport ? "WRN_IMPORT_FAILED" : "WRN_EXPORT_FAILED" ),
74                                 tr( "BUT_OK" ) );
75   }
76   abort();
77 }