source: src/UIElements/Qt4/InstanceBoard/QtObservedAtom.hpp@ 367489

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 367489 was fe493f, checked in by Frederik Heber <heber@…>, 9 years ago

Extended QtObservedAtom by Name and Molecule.

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[0070aa]1/*
2 * QtObservedAtom.hpp
3 *
4 * Created on: Oct 28, 2015
5 * Author: heber
6 */
7
8
9#ifndef QTOBSERVEDATOM_HPP_
10#define QTOBSERVEDATOM_HPP_
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include <QtGui/QWidget>
18
[65c323]19#include <boost/function.hpp>
[98c35c]20#include <boost/shared_ptr.hpp>
[0070aa]21
[65c323]22#include "CodePatterns/Observer/Observable.hpp"
[0070aa]23#include "CodePatterns/Observer/Observer.hpp"
24
[65c323]25#include "LinearAlgebra/Vector.hpp"
26
[98c35c]27#include "UIElements/Qt4/InstanceBoard/ObservedValue_types.hpp"
[41e287]28#include "UIElements/Qt4/InstanceBoard/ObservedValuesContainer.hpp"
[0070aa]29#include "types.hpp"
30
[65c323]31class atom;
[98c35c]32class QtObservedInstanceBoard;
33
[0070aa]34/** This instance is the ObservedValue representation of a World's atom.
35 *
36 * Due to the signal/slot mechanism and its delays, lifetime of objects in the
37 * World and their QtGui representation cannot directly be related (without
38 * slowing down Actions just for having the representation up to speed).
39 * Hence, the required information for displaying and representing these
40 * objects must be contained in an extra instance.
41 *
42 * This is the instance for information about a particular atom.
[65c323]43 *
44 * Essentially, this is the interface between molecuilder's World (and a
45 * particular atom) and the QtGui part of the code.
[0070aa]46 */
47class QtObservedAtom : public QWidget, public Observer
48{
49 Q_OBJECT
50
[65c323]51public:
52
53 //!> typedef for instance wrapped in shared ptr
54 typedef boost::shared_ptr<QtObservedAtom> ptr;
55
56private:
[41e287]57 //!> ObservedValuesContainer needs to access private cstor and dstor
58 friend class ObservedValuesContainer<QtObservedAtom, atomId_t>;
[98c35c]59 //!> QtObservedInstanceBoard needs to access private cstor and dstor
60 friend class QtObservedInstanceBoard;
61
[0070aa]62 /** Cstor of QtObservedAtom.
63 *
[65c323]64 * \param _ObservedValues ref to set of observed values for this instance
65 * \param _board ref to InstanceBoard for callbacks on occasion of subjectKilled()
[0070aa]66 * \param _parent Qt parent to automatically destroy when parent is destroyed
67 */
[98c35c]68 QtObservedAtom(
[65c323]69 const ObservedValues_t &_ObservedValues,
70 QtObservedInstanceBoard &_board,
[98c35c]71 QWidget * _parent=0);
72
73public:
[0070aa]74
75 /** Dstor of QtObservedAtom.
76 *
77 */
78 ~QtObservedAtom();
79
[98c35c]80 // Observer functions
81 void update(Observable *publisher);
82 void subjectKilled(Observable *publisher);
83 void recieveNotification(Observable *publisher, Notification_ptr notification);
84
[65c323]85 /** Getter to atom index contained in \a ObservedValues.
86 *
87 * \return atom's index
88 */
89 atomId_t getAtomIndex() const;
90
[fe493f]91 //!> typedef for list of bonds, defined by pairs of atom ids
92 typedef std::vector< std::pair<atomId_t, atomId_t> > ListOfBonds_t;
93
94 /** Getter to atom bonds contained in \a ObservedValues.
[65c323]95 *
[fe493f]96 * \return atom's bonds
[65c323]97 */
[fe493f]98 ListOfBonds_t getAtomBonds() const;
[65c323]99
100 /** Getter to atom element contained in \a ObservedValues.
101 *
[fe493f]102 * \return atom's element
[65c323]103 */
104 atomicNumber_t getAtomElement() const;
105
[fe493f]106 /** Getter to atom name contained in \a ObservedValues.
107 *
108 * \return atom's name
109 */
110 std::string getAtomName() const;
[65c323]111
[fe493f]112 /** Getter to atom position contained in \a ObservedValues.
[65c323]113 *
[fe493f]114 * \return atom's position
[65c323]115 */
[fe493f]116 Vector getAtomPosition() const;
117
118 /** Getter to atom's molecule index contained in \a ObservedValues.
119 *
120 * \return atom's molecule index
121 */
122 moleculeId_t getAtomMoleculeIndex() const;
[65c323]123
[0070aa]124signals:
[65c323]125 void indexChanged();
126 void bondsChanged();
[fe493f]127 void elementChanged();
128 void moleculeindexChanged();
129 void nameChanged();
130 void positionChanged();
131 void atomRemoved();
[65c323]132
133//private slots:
[0070aa]134
[65c323]135private:
136 void activateObserver();
137 void deactivateObserver();
[0070aa]138
[65c323]139 static const atom * const getAtomConst(const atomId_t _id);
140 static atom * const getAtom(const atomId_t _id);
[0070aa]141
142private:
[65c323]143 static atomId_t updateIndex();
[fe493f]144 static ListOfBonds_t updateBonds(
[65c323]145 const boost::function<const atomId_t ()> &_getAtomIndex);
146 static atomicNumber_t updateElement(
147 const boost::function<const atomId_t ()> &_getAtomIndex);
[fe493f]148 static moleculeId_t updateMoleculeIndex(
149 const boost::function<const atomId_t ()> &_getAtomIndex);
150 static std::string updateName(
151 const boost::function<const atomId_t ()> &_getAtomIndex);
152 static Vector updatePosition(
[65c323]153 const boost::function<const atomId_t ()> &_getAtomIndex);
154
155 //!> enumeration of observed values to match with entries in ObservedValues
156 enum ObservedTypes {
157 //!> contains the current atom index
158 AtomIndex,
[fe493f]159 //!> contains the current set of bonds atoms for the atom
160 AtomBonds,
[65c323]161 //!> contains the current atom element
162 AtomElement,
[fe493f]163 //!> contains the current atom's molecule index
164 AtomMoleculeIndex,
165 //!> contains the current atom position
166 AtomName,
167 //!> contains the current atom position
168 AtomPosition,
[65c323]169 //!> gives the size of the enumeration
170 MAX_ObservedTypes
171 };
172
173 /** Initializes all \a ObservedValues entries.
174 *
175 * \param _ObservedValues vector of ObservedValue to be filled
176 * \param _id atom id
177 * \param _atomref reference to atom
178 * \param _subjectKilled ref to function to call on subjectKilled()
179 */
180 static void initObservedValues(
181 ObservedValues_t &_ObservedValues,
182 const atomId_t _id,
183 const atom * const _atomref,
184 const boost::function<void(const atomId_t)> &_subjectKilled);
185
186 /** Destroys all \a ObservedValues entries.
187 *
188 * \param _ObservedValues vector of ObservedValue to be destroyed
189 */
190 static void destroyObservedValues(
191 std::vector<boost::any> &_ObservedValues);
192
193 //!> counts how many ObservedValues have already been subjectKilled()
194 mutable size_t subjectKilledCount;
195
196private:
197
198 //!> list of channels when index needs to update
199 static const Observable::channels_t AtomIndexChannels;
200 //!> list of channels when bonds needs to update
201 static const Observable::channels_t AtomBondsChannels;
[fe493f]202 //!> list of channels when element needs to update
203 static const Observable::channels_t AtomElementChannels;
204 //!> list of channels when molecule index needs to update
205 static const Observable::channels_t AtomMoleculeIndexChannels;
206 //!> list of channels when name needs to update
207 static const Observable::channels_t AtomNameChannels;
208 //!> list of channels when position needs to update
209 static const Observable::channels_t AtomPositionChannels;
[65c323]210
211 //!> we get multiple subjectKilled(), count and call callback() only on last
212 const unsigned int AllsignedOnChannels;
213 unsigned int signedOffChannels;
214
215 //!> the Observable we are signed on, also indicates whether we are sign on (not NULL)
216 const Observable *owner;
217
218private:
219
220 //!> reference to InstanceBoard for callbacks on subjectKilled()
221 QtObservedInstanceBoard & board;
222
[98c35c]223 //!> internal reference to ObservedValues held by QtObservedInstanceBoard
[65c323]224 ObservedValues_t ObservedValues;
[0070aa]225};
226
227
228#endif /* QTOBSERVEDATOM_HPP_ */
Note: See TracBrowser for help on using the repository browser.