Salome HOME
48854073bd0e6d749f88e422549b148dcc4c4b1f
[samples/atomic.git] / ATOMIC_SRC / src / ATOMICGUI / ATOMICGUI_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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21
22 #if !defined(ATOMICGUI_DATAOBJECT_H)
23 #define ATOMICGUI_DATAOBJECT_H
24
25 #include <LightApp_DataObject.h>
26
27 #include <qstring.h>
28
29 class ATOMICGUI_AtomicMolecule;
30
31 /*!
32  * Class       : ATOMICGUI_DataObject
33  * Description : Data Object for data of ATOMIC component
34  *               Using the same Data Object for Atoms and Molecules
35  *               If it is an Atom then myIndex field is >= 0
36  *               For Molecule myIndex equals to -1.
37  */
38 class ATOMICGUI_DataObject : public virtual LightApp_DataObject
39 {
40 public:
41   ATOMICGUI_DataObject ( SUIT_DataObject*, ATOMICGUI_AtomicMolecule* = 0, int = -1 );
42   virtual ~ATOMICGUI_DataObject();
43     
44   virtual QString entry() const;
45
46   QString    name()    const;
47   QPixmap    icon(const int = NameId)    const;
48   QString    toolTip(const int = NameId) const;
49
50   ATOMICGUI_AtomicMolecule* molecule() const { return myMolecule;  }
51   int        atomIndex()  const { return myIndex; }
52
53   bool       isMolecule() const;
54   bool       isAtom() const;
55
56 private:
57   ATOMICGUI_AtomicMolecule*  myMolecule;
58   int                        myIndex;
59 };
60
61 class ATOMICGUI_ModuleObject : public ATOMICGUI_DataObject,
62                                public LightApp_ModuleObject
63 {
64 public:
65   ATOMICGUI_ModuleObject ( CAM_DataModel*, SUIT_DataObject* = 0 );
66
67   virtual QString name()    const;
68   QPixmap         icon(const int = NameId)    const;
69   QString         toolTip(const int = NameId) const;
70 };
71
72 #endif // ATOMICGUI_DATAOBJECT_H