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