source: src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.hpp@ 534374

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 534374 was 534374, checked in by Frederik Heber <heber@…>, 10 years ago

GLMoleculeObject_atom uses ObservedValue for internally representing atom's state.

  • we use internal owner as ref to Observable.
  • Property mode set to 100644
File size: 3.4 KB
Line 
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
27class GLWorldScene;
28
29class GLMoleculeObject_atom : public GLMoleculeObject, Observer
30{
31 Q_OBJECT
32public:
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
43private slots:
44 void wasClicked();
45 void resetIndex();
46 void resetElement();
47 void resetPosition();
48 void resetBonds();
49 void resetSelectionStatus();
50
51signals:
52 void clicked(atomId_t);
53 void BondsAdded(const atomId_t _left, const atomId_t _right, const GLMoleculeObject_bond::SideOfBond side);
54 void BondsRemoved(const atomId_t _left, const atomId_t _right);
55 void indexChanged(GLMoleculeObject_atom *ob, const atomId_t oldId, const atomId_t newId);
56 void idChanged();
57 void positionChanged();
58 void elementChanged();
59 void bondsChanged();
60 void selectionstatusChanged();
61
62private:
63 //!> grant GLMoleculeObject_molecule acess to reset functions
64 friend class GLMoleculeObject_molecule;
65
66 //!> typedef for list of bonds, defined by pairs of atom ids
67 typedef std::vector< std::pair<atomId_t, atomId_t> > ListOfBonds_t;
68
69 static const atom * const getAtomConst(const atomId_t _id);
70 static atom * const getAtom(const atomId_t _id);
71
72 atomId_t updateIndex() const;
73 Vector updatePosition() const;
74 atomicNumber_t updateElement() const;
75 ListOfBonds_t updateBonds() const;
76 bool updateSelectionStatus() const;
77
78 void activateObserver();
79 void deactivateObserver();
80
81private:
82
83 //!> current list of bonds to compare new onw against for changes
84 ListOfBonds_t ListOfBonds;
85
86 //!> temporary variable used in cstor
87 atom * const atomref;
88
89 //!> cached value of the atom's id
90 ObservedValue<atomId_t> AtomIndex;
91 //!> cached value of the atom's position
92 ObservedValue<Vector> AtomPosition;
93 //!> cached value of the atom's element
94 ObservedValue<atomicNumber_t> AtomElement;
95 //!> cached value of the atom's id
96 ObservedValue<ListOfBonds_t> AtomBonds;
97 //!> cached value of the atom's selection status
98 ObservedValue<bool> AtomSelectionStatus;
99
100 //!> list of channels when index needs to update
101 static const Observable::channels_t AtomIndexChannels;
102 //!> list of channels when position needs to update
103 static const Observable::channels_t AtomPositionChannels;
104 //!> list of channels when element needs to update
105 static const Observable::channels_t AtomElementChannels;
106 //!> list of channels when bonds needs to update
107 static const Observable::channels_t AtomBondsChannels;
108 //!> list of channels when selection status needs to update
109 static const Observable::channels_t AtomSelectionStatusChannels;
110
111 //!> the Observable we are signed on, also indicates whether we are sign on (not NULL)
112 const Observable *owner;
113};
114
115
116
117#endif /* GLMOLECULEOBJECT_ATOM_HPP_ */
Note: See TracBrowser for help on using the repository browser.