Changeset 8a77ac for src/UIElements/Views
- Timestamp:
- Apr 6, 2012, 11:57:21 AM (13 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:
- 343a4b
- Parents:
- 69643a
- git-author:
- Michael Ankele <ankele@…> (03/29/12 11:35:47)
- git-committer:
- Frederik Heber <heber@…> (04/06/12 11:57:21)
- Location:
- src/UIElements/Views/Qt4/Qt3D
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject.cpp
r69643a r8a77ac 53 53 m_objectId = -1; 54 54 m_hovering = false; 55 m_selected = false; 55 56 m_material = 0; 56 57 m_hoverMaterial = 0; … … 69 70 m_objectId = -1; 70 71 m_hovering = false; 72 m_selected = false; 71 73 m_material = 0; 72 74 m_hoverMaterial = 0; … … 100 102 if (m_hovering) 101 103 material = m_hoverMaterial; 104 else if (m_selected) 105 material = m_selectionMaterial; 102 106 else 103 107 material = m_material; … … 119 123 else 120 124 m_mesh->draw(painter); 125 126 QVector3DArray array; 127 qreal radius = 0.3f; 128 array.append(-radius, -radius, -radius); array.append( radius, -radius, -radius); 129 array.append( radius, -radius, -radius); array.append( radius, radius, -radius); 130 array.append( radius, radius, -radius); array.append(-radius, radius, -radius); 131 array.append(-radius, radius, -radius); array.append(-radius, -radius, -radius); 132 133 array.append(-radius, -radius, radius); array.append( radius, -radius, radius); 134 array.append( radius, -radius, radius); array.append( radius, radius, radius); 135 array.append( radius, radius, radius); array.append(-radius, radius, radius); 136 array.append(-radius, radius, radius); array.append(-radius, -radius, radius); 137 138 array.append(-radius, -radius, -radius); array.append(-radius, -radius, radius); 139 array.append( radius, -radius, -radius); array.append( radius, -radius, radius); 140 array.append(-radius, radius, -radius); array.append(-radius, radius, radius); 141 array.append( radius, radius, -radius); array.append( radius, radius, radius); 142 painter->clearAttributes(); 143 painter->setVertexAttribute(QGL::Position, array); 144 painter->draw(QGL::Lines, 24); 121 145 122 146 // Turn off the user effect, if present. … … 166 190 QGLMaterial* GLMoleculeObject::getMaterial(size_t no) 167 191 { 168 ASSERT( (no >= 0) && (no < MAX_ELEMENTS) ,192 ASSERT( (no >= 0) && (no < MAX_ELEMENTS) || (no == 65536), 169 193 "GLMoleculeView::getMaterial() - Element no "+toString(no)+" is invalid."); 170 194 if (ElementNoMaterialMap.find(no) != ElementNoMaterialMap.end()){ … … 178 202 if (no == 0) { // create hover material 179 203 newmaterial->setAmbientColor( QColor(0, 128, 128) ); 204 } else if (no == 65536) { // create selection material 205 newmaterial->setAmbientColor( QColor(200, 200, 200) ); 180 206 } else { // create material for element 181 207 periodentafel *periode = World::getInstance().getPeriode(); -
src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject.hpp
r69643a r8a77ac 60 60 void setHoverMaterial(QGLMaterial *value) { m_hoverMaterial = value; } 61 61 62 QGLMaterial *selectionMaterial() const { return m_selectionMaterial; } 63 void setSelectionMaterial(QGLMaterial *value) { m_selectionMaterial = value; } 64 62 65 QGLAbstractEffect *effect() const { return m_effect; } 63 66 void setEffect(QGLAbstractEffect *value) { m_effect = value; } … … 100 103 int m_objectId; 101 104 bool m_hovering; 105 bool m_selected; 102 106 }; 103 107 -
src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.cpp
r69643a r8a77ac 108 108 "GLMoleculeObject_atom::GLMoleculeObject_atom() - QGLMaterial ref from getter function for hover is NULL."); 109 109 setHoverMaterial(hovermaterial); 110 QGLMaterial *selectionmaterial = getMaterial(65536); // 65536 is the selection material 111 ASSERT(selectionmaterial != NULL, 112 "GLMoleculeObject_atom::GLMoleculeObject_atom() - QGLMaterial ref from getter function for selection is NULL."); 113 setSelectionMaterial(selectionmaterial); 110 114 111 115 // set scale -
src/UIElements/Views/Qt4/Qt3D/GLWorldScene.cpp
r69643a r8a77ac 205 205 void GLWorldScene::draw(QGLPainter *painter) const 206 206 { 207 std::cout << "scene draw\n"; 207 208 // Draw all of the mesh objects that we have as children. 208 209 foreach (QObject *obj, children()) { -
src/UIElements/Views/Qt4/Qt3D/GLWorldView.cpp
r69643a r8a77ac 48 48 World::getInstance().signOn(this, World::AtomInserted); 49 49 World::getInstance().signOn(this, World::AtomRemoved); 50 World::getInstance().signOn(this, World::AtomPositionChanged); 50 51 } 51 52 … … 55 56 World::getInstance().signOff(this, World::AtomInserted); 56 57 World::getInstance().signOff(this, World::AtomRemoved); 58 World::getInstance().signOff(this, World::AtomPositionChanged); 57 59 delete worldscene; 58 60 } … … 96 98 #endif 97 99 emit atomRemoved(_atom); 100 break; 101 } 102 case World::AtomPositionChanged: 103 { 104 std::cout << "view pos changed\n"; 105 const atom *_atom = World::getInstance().lastChanged<atom>(); 106 #ifdef LOG_OBSERVER 107 observerLog().addMessage() << "++ Observer " << observerLog().getName(this) << " received notification that atom "+toString(_atom->getId())+" has changed its position."; 108 #endif 109 emit changed(); 98 110 break; 99 111 }
Note:
See TracChangeset
for help on using the changeset viewer.