Salome HOME
Example of light module from Salome tutorial
[samples/atomic.git] / src / ATOMICGUI / ATOMICGUI_AddAtomOp.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_AddAtomOp.h>
23 #include <ATOMICGUI_AddAtomDlg.h>
24 #include <ATOMICGUI_DataModel.h>
25 #include <ATOMICGUI.h>
26
27 #include <LightApp_Module.h>
28 #include <LightApp_Application.h>
29 #include <SUIT_Desktop.h>
30
31 /*! Constructor */
32 ATOMICGUI_AddAtomOp::ATOMICGUI_AddAtomOp()
33   : ATOMICGUI_Operation(),
34     myDlg( 0 )
35 {
36 }
37
38 /*! Destructor */
39 ATOMICGUI_AddAtomOp::~ATOMICGUI_AddAtomOp()
40 {
41   if ( myDlg )
42     delete myDlg;
43 }
44
45 /*! Returns Operation dialog */
46 LightApp_Dialog* ATOMICGUI_AddAtomOp::dlg() const
47 {
48   if ( !myDlg )
49     const_cast<ATOMICGUI_AddAtomOp*>( this )->myDlg = new ATOMICGUI_AddAtomDlg( module()->getApp()->desktop() );
50
51   return myDlg;
52 }
53
54 /*! slot, called when user presses Apply button of the dialog */
55 void ATOMICGUI_AddAtomOp::onApply()
56 {
57   QStringList entries;
58   atomModule()->selected( entries, false );
59   ATOMICGUI_AddAtomDlg* d = dynamic_cast<ATOMICGUI_AddAtomDlg*>( dlg() );
60   if( dataModel() && d && d->acceptData( entries ) )
61   {
62     QString name;
63     double x, y, z;
64     d->data( name, x, y, z );
65     dataModel()->addAtom( entries.first(), name, x, y, z );
66     module()->getApp()->updateObjectBrowser();
67   }
68 }
69