[907636] | 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 |
|
---|
[534374] | 18 | #include "CodePatterns/ObservedValue.hpp"
|
---|
[02ce36] | 19 | #include "CodePatterns/Observer/Observer.hpp"
|
---|
[7188b1] | 20 |
|
---|
[534374] | 21 | #include "LinearAlgebra/Vector.hpp"
|
---|
| 22 |
|
---|
[88c8ec] | 23 | #include "Bond/bond.hpp"
|
---|
[917659] | 24 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_bond.hpp"
|
---|
| 25 | #include "types.hpp"
|
---|
[907636] | 26 |
|
---|
[ce4126] | 27 | class GLWorldScene;
|
---|
| 28 |
|
---|
[534374] | 29 | class GLMoleculeObject_atom : public GLMoleculeObject, Observer
|
---|
[907636] | 30 | {
|
---|
[06ebf5] | 31 | Q_OBJECT
|
---|
[907636] | 32 | public:
|
---|
[917659] | 33 | GLMoleculeObject_atom(QGLSceneNode *mesh[], QObject *parent, const atomId_t id);
|
---|
[9c18e4] | 34 | virtual ~GLMoleculeObject_atom();
|
---|
[7188b1] | 35 |
|
---|
[f115cc] | 36 | void draw(QGLPainter *painter, const QVector4D &cameraPlane);
|
---|
| 37 |
|
---|
[7188b1] | 38 | // Observer functions
|
---|
| 39 | void update(Observable *publisher);
|
---|
| 40 | void subjectKilled(Observable *publisher);
|
---|
| 41 | void recieveNotification(Observable *publisher, Notification_ptr notification);
|
---|
[06ebf5] | 42 |
|
---|
[015f8c] | 43 | public slots:
|
---|
| 44 | void Selected();
|
---|
| 45 | void Unselected();
|
---|
| 46 |
|
---|
[06ebf5] | 47 | private slots:
|
---|
| 48 | void wasClicked();
|
---|
[534374] | 49 | void resetIndex();
|
---|
| 50 | void resetElement();
|
---|
| 51 | void resetPosition();
|
---|
| 52 | void resetBonds();
|
---|
[06ebf5] | 53 |
|
---|
| 54 | signals:
|
---|
| 55 | void clicked(atomId_t);
|
---|
[534374] | 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();
|
---|
[907636] | 63 |
|
---|
[ce4126] | 64 | private:
|
---|
[8c001a] | 65 | //!> grant GLMoleculeObject_molecule acess to reset functions
|
---|
| 66 | friend class GLMoleculeObject_molecule;
|
---|
[ce4126] | 67 |
|
---|
[534374] | 68 | //!> typedef for list of bonds, defined by pairs of atom ids
|
---|
| 69 | typedef std::vector< std::pair<atomId_t, atomId_t> > ListOfBonds_t;
|
---|
[89b992] | 70 |
|
---|
[534374] | 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;
|
---|
[7188b1] | 78 |
|
---|
[534374] | 79 | void activateObserver();
|
---|
| 80 | void deactivateObserver();
|
---|
| 81 |
|
---|
| 82 | private:
|
---|
[f115cc] | 83 |
|
---|
[534374] | 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;
|
---|
[907636] | 110 | };
|
---|
| 111 |
|
---|
| 112 |
|
---|
| 113 |
|
---|
| 114 | #endif /* GLMOLECULEOBJECT_ATOM_HPP_ */
|
---|