Changeset f115cc
- Timestamp:
- Jan 11, 2015, 4:42:43 PM (10 years ago)
- Branches:
- 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
- Children:
- b6d92e
- Parents:
- a7aebd
- git-author:
- Frederik Heber <heber@…> (12/03/14 22:15:42)
- git-committer:
- Frederik Heber <heber@…> (01/11/15 16:42:43)
- Location:
- src/UIElements/Views/Qt4/Qt3D
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.cpp
ra7aebd rf115cc 56 56 GLMoleculeObject(mesh, parent), 57 57 Observer(std::string("GLMoleculeObject_atom")+toString(_id)), 58 atomicid(_id) 58 atomicid(_id), 59 uptodatePosition(false), 60 uptodateElement(false) 59 61 { 60 62 // sign on as observer (obtain non-const instance before) … … 108 110 ELOG(2, "Atom with id "+toString(atomicid)+" is already gone."); 109 111 } 112 uptodatePosition = true; 110 113 } 111 114 … … 141 144 } 142 145 setScale( radius / 4. ); 146 147 uptodateElement = true; 143 148 } 144 149 … … 165 170 // selected? 166 171 setSelected(World::getInstance().isAtomSelected(atomicid)); 172 } 173 174 void GLMoleculeObject_atom::draw(QGLPainter *painter, const QVector4D &cameraPlane) 175 { 176 // hook to update prior to painting 177 if (!uptodatePosition) 178 resetPosition(); 179 if (!uptodateElement) 180 resetElement(); 181 182 // call old hook to do the actual paining 183 GLMoleculeObject::draw(painter, cameraPlane); 167 184 } 168 185 … … 185 202 switch (notification->getChannelNo()) { 186 203 case AtomObservable::ElementChanged: 187 resetElement(); 188 emit changed(); 204 uptodateElement = false; 189 205 break; 190 206 case AtomObservable::IndexChanged: … … 192 208 break; 193 209 case AtomObservable::PositionChanged: 194 resetPosition(); 195 emit changed(); 210 uptodatePosition = false; 196 211 break; 197 212 case AtomObservable::BondsAdded: … … 199 214 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid)); 200 215 if (_atom != NULL) { 216 // make sure position is up-to-date 217 if (!uptodatePosition) 218 resetPosition(); 201 219 ASSERT(!_atom->getListOfBonds().empty(), 202 220 "GLMoleculeObject_atom::recieveNotification() - received BondsAdded but ListOfBonds is empty."); -
src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.hpp
ra7aebd rf115cc 31 31 virtual ~GLMoleculeObject_atom(); 32 32 33 void draw(QGLPainter *painter, const QVector4D &cameraPlane); 34 33 35 // Observer functions 34 36 void update(Observable *publisher); … … 56 58 57 59 const atomId_t atomicid; 60 61 bool uptodatePosition; 62 bool uptodateElement; 58 63 }; 59 64
Note:
See TracChangeset
for help on using the changeset viewer.