1 | /*
|
---|
2 | * GLMoleculeObject_atom.hpp
|
---|
3 | *
|
---|
4 | * Created on: Aug 17, 2011
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef GLMOLECULEOBJECT_ATOM_HPP_
|
---|
9 | #define GLMOLECULEOBJECT_ATOM_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include "GLMoleculeObject.hpp"
|
---|
17 |
|
---|
18 | #include "CodePatterns/ObservedValue.hpp"
|
---|
19 | #include "CodePatterns/Observer/Observer.hpp"
|
---|
20 |
|
---|
21 | #include "LinearAlgebra/Vector.hpp"
|
---|
22 |
|
---|
23 | #include "Bond/bond.hpp"
|
---|
24 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_bond.hpp"
|
---|
25 | #include "types.hpp"
|
---|
26 |
|
---|
27 | class GLWorldScene;
|
---|
28 |
|
---|
29 | class GLMoleculeObject_atom : public GLMoleculeObject, Observer
|
---|
30 | {
|
---|
31 | Q_OBJECT
|
---|
32 | public:
|
---|
33 | GLMoleculeObject_atom(QGLSceneNode *mesh[], QObject *parent, const atomId_t id);
|
---|
34 | virtual ~GLMoleculeObject_atom();
|
---|
35 |
|
---|
36 | void draw(QGLPainter *painter, const QVector4D &cameraPlane);
|
---|
37 |
|
---|
38 | // Observer functions
|
---|
39 | void update(Observable *publisher);
|
---|
40 | void subjectKilled(Observable *publisher);
|
---|
41 | void recieveNotification(Observable *publisher, Notification_ptr notification);
|
---|
42 |
|
---|
43 | public slots:
|
---|
44 | void Selected();
|
---|
45 | void Unselected();
|
---|
46 |
|
---|
47 | private slots:
|
---|
48 | void wasClicked();
|
---|
49 | void resetIndex();
|
---|
50 | void resetElement();
|
---|
51 | void resetPosition();
|
---|
52 | void resetBonds();
|
---|
53 |
|
---|
54 | signals:
|
---|
55 | void clicked(atomId_t);
|
---|
56 | void BondsAdded(const atomId_t _left, const atomId_t _right, const GLMoleculeObject_bond::SideOfBond side);
|
---|
57 | void BondsRemoved(const atomId_t _left, const atomId_t _right);
|
---|
58 | void indexChanged(GLMoleculeObject_atom *ob, const atomId_t oldId, const atomId_t newId);
|
---|
59 | void idChanged();
|
---|
60 | void positionChanged();
|
---|
61 | void elementChanged();
|
---|
62 | void bondsChanged();
|
---|
63 |
|
---|
64 | private:
|
---|
65 | //!> grant GLMoleculeObject_molecule acess to reset functions
|
---|
66 | friend class GLMoleculeObject_molecule;
|
---|
67 |
|
---|
68 | //!> typedef for list of bonds, defined by pairs of atom ids
|
---|
69 | typedef std::vector< std::pair<atomId_t, atomId_t> > ListOfBonds_t;
|
---|
70 |
|
---|
71 | static const atom * const getAtomConst(const atomId_t _id);
|
---|
72 | static atom * const getAtom(const atomId_t _id);
|
---|
73 |
|
---|
74 | atomId_t updateIndex() const;
|
---|
75 | Vector updatePosition() const;
|
---|
76 | atomicNumber_t updateElement() const;
|
---|
77 | ListOfBonds_t updateBonds() const;
|
---|
78 |
|
---|
79 | void activateObserver();
|
---|
80 | void deactivateObserver();
|
---|
81 |
|
---|
82 | private:
|
---|
83 |
|
---|
84 | //!> current list of bonds to compare new onw against for changes
|
---|
85 | ListOfBonds_t ListOfBonds;
|
---|
86 |
|
---|
87 | //!> temporary variable used in cstor
|
---|
88 | atom * const atomref;
|
---|
89 |
|
---|
90 | //!> cached value of the atom's id
|
---|
91 | ObservedValue<atomId_t> AtomIndex;
|
---|
92 | //!> cached value of the atom's position
|
---|
93 | ObservedValue<Vector> AtomPosition;
|
---|
94 | //!> cached value of the atom's element
|
---|
95 | ObservedValue<atomicNumber_t> AtomElement;
|
---|
96 | //!> cached value of the atom's id
|
---|
97 | ObservedValue<ListOfBonds_t> AtomBonds;
|
---|
98 |
|
---|
99 | //!> list of channels when index needs to update
|
---|
100 | static const Observable::channels_t AtomIndexChannels;
|
---|
101 | //!> list of channels when position needs to update
|
---|
102 | static const Observable::channels_t AtomPositionChannels;
|
---|
103 | //!> list of channels when element needs to update
|
---|
104 | static const Observable::channels_t AtomElementChannels;
|
---|
105 | //!> list of channels when bonds needs to update
|
---|
106 | static const Observable::channels_t AtomBondsChannels;
|
---|
107 |
|
---|
108 | //!> the Observable we are signed on, also indicates whether we are sign on (not NULL)
|
---|
109 | const Observable *owner;
|
---|
110 | };
|
---|
111 |
|
---|
112 |
|
---|
113 |
|
---|
114 | #endif /* GLMOLECULEOBJECT_ATOM_HPP_ */
|
---|