Salome HOME
Merge from V6_5_BR 05/06/2012
[samples/atomic.git] / src / ATOMICGUI / ATOMICGUI_DataObject.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #if !defined(ATOMICGUI_DATAOBJECT_H)
21 #define ATOMICGUI_DATAOBJECT_H
22
23 #include <LightApp_DataObject.h>
24
25 #include <qstring.h>
26
27 class ATOMICGUI_AtomicMolecule;
28
29 /*!
30  * Class       : ATOMICGUI_DataObject
31  * Description : Data Object for data of ATOMIC component
32  *               Using the same Data Object for Atoms and Molecules
33  *               If it is an Atom then myIndex field is >= 0
34  *               For Molecule myIndex equals to -1.
35  */
36 class ATOMICGUI_DataObject : public virtual LightApp_DataObject
37 {
38 public:
39   ATOMICGUI_DataObject ( SUIT_DataObject*, ATOMICGUI_AtomicMolecule* = 0, int = -1 );
40   virtual ~ATOMICGUI_DataObject();
41     
42   virtual QString entry() const;
43
44   QString    name()    const;
45   QPixmap    icon(const int = NameId)    const;
46   QString    toolTip(const int = NameId) const;
47
48   ATOMICGUI_AtomicMolecule* molecule() const { return myMolecule;  }
49   int        atomIndex()  const { return myIndex; }
50
51   bool       isMolecule() const;
52   bool       isAtom() const;
53
54 private:
55   ATOMICGUI_AtomicMolecule*  myMolecule;
56   int                        myIndex;
57 };
58
59 class ATOMICGUI_ModuleObject : public ATOMICGUI_DataObject,
60                                public LightApp_ModuleObject
61 {
62 public:
63   ATOMICGUI_ModuleObject ( CAM_DataModel*, SUIT_DataObject* = 0 );
64
65   virtual QString name()    const;
66   QPixmap         icon(const int = NameId)    const;
67   QString         toolTip(const int = NameId) const;
68 };
69
70 #endif // ATOMICGUI_DATAOBJECT_H