Salome HOME
Example of a c++ component with engine from Salome tutorial
[samples/atomsolv.git] / src / ATOMSOLVGUI / ATOMSOLVGUI_DataObject.h
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 #if !defined(ATOMSOLVGUI_DATAOBJECT_H)
23 #define ATOMSOLVGUI_DATAOBJECT_H
24
25 #include <LightApp_DataObject.h>
26
27 #include <qstring.h>
28
29 #include <SALOMEconfig.h>
30 #include CORBA_CLIENT_HEADER(ATOMSOLV)
31
32 /*!
33  * Class       : ATOMSOLVGUI_DataObject
34  * Description : Data Object for data of ATOMSOLV component
35  *               Using the same Data Object for Atoms and Molecules
36  *               If it is an Atom then myIndex field is >= 0
37  *               For Molecule myIndex equals to -1.
38  */
39 class ATOMSOLVGUI_DataObject : public virtual LightApp_DataObject
40 {
41 public:
42   ATOMSOLVGUI_DataObject ( SUIT_DataObject*, int MoleculeIndex, int AtomIndex = -1 );
43   virtual ~ATOMSOLVGUI_DataObject();
44     
45   virtual QString entry() const;
46
47   QString    name()    const;
48   QPixmap    icon(const int = NameId)    const;
49   QString    toolTip(const int = NameId) const;
50
51   int        getMoleculeIndex() const { return myMoleculeIndex; }
52   int        getAtomIndex() const { return myAtomIndex; }
53
54   bool       isMolecule() const { return !isAtom(); }
55   bool       isAtom() const { return myAtomIndex > -1; }
56
57 private:
58   ATOMSOLV_ORB::TMolecule    getTMolecule() const;
59
60   int                        myMoleculeIndex;
61   int                        myAtomIndex;
62 };
63
64 class ATOMSOLVGUI_ModuleObject : public ATOMSOLVGUI_DataObject,
65                                  public LightApp_ModuleObject
66 {
67 public:
68   ATOMSOLVGUI_ModuleObject ( CAM_DataModel*, SUIT_DataObject* = 0 );
69
70   virtual QString name()    const;
71   QPixmap         icon(const int = NameId)    const;
72   QString         toolTip(const int = NameId) const;
73 };
74
75 #endif // ATOMSOLVGUI_DATAOBJECT_H