[c67518] | 1 | /*
|
---|
| 2 | * GLMoleculeObject_molecule.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Mar 30, 2012
|
---|
| 5 | * Author: ankele
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef GLMOLECULEOBJECT_MOLECULE_HPP_
|
---|
| 9 | #define GLMOLECULEOBJECT_MOLECULE_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/Observer/Observer.hpp"
|
---|
| 19 |
|
---|
| 20 | #include "GLMoleculeObject_bond.hpp"
|
---|
| 21 |
|
---|
| 22 | class atom;
|
---|
| 23 | class bond;
|
---|
[8c001a] | 24 | class GLMoleculeObject_atom;
|
---|
| 25 | class GLWorldScene;
|
---|
[c67518] | 26 | class molecule;
|
---|
| 27 |
|
---|
| 28 | class GLMoleculeObject_molecule : public GLMoleculeObject, public Observer
|
---|
| 29 | {
|
---|
| 30 | Q_OBJECT
|
---|
| 31 | public:
|
---|
[34e7fdb] | 32 | GLMoleculeObject_molecule(QObject *parent, const molecule *molref);
|
---|
[72a4c1] | 33 | GLMoleculeObject_molecule(QGLSceneNode *mesh[], QObject *parent, const molecule *molref);
|
---|
[c67518] | 34 | virtual ~GLMoleculeObject_molecule();
|
---|
| 35 |
|
---|
[d6203a] | 36 | void updateBoundingBox();
|
---|
| 37 |
|
---|
[c67518] | 38 | // Observer functions
|
---|
| 39 | void update(Observable *publisher);
|
---|
| 40 | void subjectKilled(Observable *publisher);
|
---|
| 41 | void recieveNotification(Observable *publisher, Notification_ptr notification);
|
---|
| 42 |
|
---|
[8c001a] | 43 | void initialize(QGLView *view, QGLPainter *painter);
|
---|
| 44 | void draw(QGLPainter *painter, const QVector4D &cameraPlane);
|
---|
| 45 |
|
---|
| 46 | typedef std::pair< atomId_t, atomId_t> BondIds;
|
---|
| 47 | friend std::ostream &operator<<(std::ostream &ost, const BondIds &t);
|
---|
| 48 |
|
---|
| 49 | static BondIds getBondIds(
|
---|
| 50 | const bond::ptr _bond,
|
---|
| 51 | const enum GLMoleculeObject_bond::SideOfBond side);
|
---|
| 52 |
|
---|
| 53 | void selected(const bool _isSelected)
|
---|
| 54 | { isSelected = _isSelected; }
|
---|
| 55 |
|
---|
| 56 | signals:
|
---|
| 57 | void changed();
|
---|
| 58 | void changeOccured();
|
---|
[2b596f] | 59 | void hoverChanged(const atom&);
|
---|
| 60 | void hoverChanged(const molecule&, int);
|
---|
[8c001a] | 61 | void atomClicked(atomId_t no);
|
---|
[9a7ef9] | 62 | void moleculeClicked(moleculeId_t no);
|
---|
[8c001a] | 63 | void changeAtomId(GLMoleculeObject_atom *, int, int);
|
---|
| 64 |
|
---|
| 65 | private slots:
|
---|
| 66 | //!> grant GLWorldScene access to private slots
|
---|
| 67 | friend class GLWorldScene;
|
---|
| 68 |
|
---|
[9a7ef9] | 69 | void wasClicked();
|
---|
[8c001a] | 70 | void atomInserted(const atomicNumber_t _id);
|
---|
| 71 | void atomRemoved(const atomicNumber_t _id);
|
---|
| 72 | void bondInserted(const bond::ptr _bond, const GLMoleculeObject_bond::SideOfBond side);
|
---|
| 73 | void bondRemoved(const atomId_t leftnr, const atomId_t rightnr);
|
---|
| 74 | void hoverChangedSignalled(GLMoleculeObject *ob);
|
---|
| 75 |
|
---|
[34e7fdb] | 76 | void setVisible(bool value);
|
---|
| 77 |
|
---|
[c67518] | 78 | private:
|
---|
[8c001a] | 79 | void init();
|
---|
| 80 | void reinit();
|
---|
| 81 |
|
---|
| 82 | void addAtomBonds(
|
---|
| 83 | const bond::ptr &_bond,
|
---|
| 84 | const GLMoleculeObject_bond::SideOfBond _side
|
---|
| 85 | );
|
---|
| 86 | void addAtomBonds(const atom *_atom);
|
---|
| 87 |
|
---|
[7b5984] | 88 | void updateTesselationHull();
|
---|
| 89 |
|
---|
[8c001a] | 90 | //!> states whether selection box is additionally drawn or not
|
---|
| 91 | bool isSelected;
|
---|
[2b596f] | 92 | bool isBoundingBoxUptodate;
|
---|
[c67518] | 93 |
|
---|
[34e7fdb] | 94 | //!> whether we are signed on to the associated molecule
|
---|
| 95 | bool isSignedOn;
|
---|
| 96 |
|
---|
[c67518] | 97 | const molecule *_molecule;
|
---|
[8c001a] | 98 |
|
---|
[7b5984] | 99 | bool TesselationHullUptodate;
|
---|
| 100 |
|
---|
[8c001a] | 101 | typedef std::map< atomId_t, GLMoleculeObject_atom* > AtomNodeMap;
|
---|
| 102 | typedef std::map< BondIds , GLMoleculeObject_bond* > BondNodeMap;
|
---|
| 103 | AtomNodeMap AtomsinSceneMap;
|
---|
| 104 | BondNodeMap BondsinSceneMap;
|
---|
| 105 |
|
---|
| 106 | const atom *hoverAtom;
|
---|
[c67518] | 107 | };
|
---|
| 108 |
|
---|
[8c001a] | 109 | std::ostream &operator<<(std::ostream &ost, const GLMoleculeObject_molecule::BondIds &t);
|
---|
[c67518] | 110 |
|
---|
| 111 |
|
---|
| 112 | #endif /* GLMOLECULEOBJECT_MOLECULE_HPP_ */
|
---|