[SCM] MoleCuilder branch GUI_TesselatedLargeMolecules updated. v1.4.9-43-g99b1759
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MoleCuilder". The branch, GUI_TesselatedLargeMolecules has been updated via 99b1759cc8e41e6df7fbdf41b40c5c6ff40ad5b1 (commit) via 0f2e30633c636c0cccb1e31b38bfa7bc743ce630 (commit) via 0bda4554bfa598ae892d665e5afa95d7a682393b (commit) via 2122ad01dba5a4567eafce075beb89f7d50d61a6 (commit) via 5d9b8641f43b319ff2a5b7453d5ff9bb2f3555ee (commit) via 7315986e2f2bd37ded044dd495b6d2b890696080 (commit) via f7ffa9816725f66a38e9311eae206b41ea09145f (commit) via 2c21102b9c991c3977d061f7eab6bf4c195cab78 (commit) via 9c602744180737b258d8a92605021afb88cdc500 (commit) via f763f34ab6077c50b53ca2d1df19de17bd7b9d77 (commit) via 6c74c06c3ba093a18bcbd07a1282da2b3edc6e7d (commit) via 94c17043166ec2d8b4cf369029351dedcbda86f9 (commit) from 71ec5f12bad3f9ca07448c022d49cd6cf4cba571 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 99b1759cc8e41e6df7fbdf41b40c5c6ff40ad5b1 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Fri Dec 19 17:45:44 2014 +0100 Added Push/PopMolecules selection action. commit 0f2e30633c636c0cccb1e31b38bfa7bc743ce630 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Fri Dec 19 17:37:33 2014 +0100 Added TranslateMolecule action. commit 0bda4554bfa598ae892d665e5afa95d7a682393b Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Fri Dec 19 17:37:06 2014 +0100 Added Push/PopAtom selection actions. commit 2122ad01dba5a4567eafce075beb89f7d50d61a6 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Fri Dec 19 17:36:38 2014 +0100 tempcommit: World Queue fixes. commit 5d9b8641f43b319ff2a5b7453d5ff9bb2f3555ee Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Fri Dec 19 17:36:18 2014 +0100 tempcommit: clearTempQueue() fixes. commit 7315986e2f2bd37ded044dd495b6d2b890696080 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 20:32:31 2014 +0100 Added push/pop[Atoms|Molecules]Selection to World. - this is mostly convenience for MakroActions to use selections and still keep the selection from the user. commit f7ffa9816725f66a38e9311eae206b41ea09145f Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 20:32:19 2014 +0100 tempcommit: Fixing clearTempQueue(). commit 2c21102b9c991c3977d061f7eab6bf4c195cab78 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 20:27:35 2014 +0100 tempcommit: Fixing SelectionBox drawing, was not scaled nor translated. Merge with ... commit 9c602744180737b258d8a92605021afb88cdc500 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 20:10:19 2014 +0100 EDITME: FIX: ActionQueue is no longer cleared when Action fails. - we only remove the present and all following Actions. - also cleaned up threaded/non-threaded parts of ActionQueue: CurrentAction, tempQueue is solely used in threaded part. - EDITME: clearTempQueue() should be in threaded only but I did not want to recompile the whole thing (due to header change). commit f763f34ab6077c50b53ca2d1df19de17bd7b9d77 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 19:17:01 2014 +0100 tempcommit: Merge with 94c1704 commit 6c74c06c3ba093a18bcbd07a1282da2b3edc6e7d Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 19:15:47 2014 +0100 FIX: Failing Actions do not clear ActionQueue/History anymore. commit 94c17043166ec2d8b4cf369029351dedcbda86f9 Author: Frederik Heber <heber@ins.uni-bonn.de> Date: Sun Dec 14 19:11:47 2014 +0100 tempcommit: Zoom and keys distance change scaled by eye-center distance. Merge with ... ----------------------------------------------------------------------- Summary of changes: src/Actions/Action.cpp | 10 +- src/Actions/ActionQueue.cpp | 82 +++++++++------- src/Actions/ActionQueue.hpp | 36 +++++-- src/Actions/ActionRegistry.cpp | 14 +++ src/Actions/GlobalListOfActions.hpp | 5 + .../GraphAction/SubgraphDissectionAction.cpp | 26 +---- src/Actions/Makefile.am | 27 ++++- src/Actions/MoleculeAction/TranslateAction.cpp | 103 ++++++++++++++++++++ src/Actions/MoleculeAction/TranslateAction.def | 33 ++++++ src/Actions/MoleculeAction/TranslateAction.hpp | 22 ++++ .../SelectionAction/Atoms/PopAtomsAction.cpp | 72 ++++++++++++++ .../SelectionAction/Atoms/PopAtomsAction.def | 33 ++++++ .../SelectionAction/Atoms/PopAtomsAction.hpp | 22 ++++ .../SelectionAction/Atoms/PushAtomsAction.cpp | 73 ++++++++++++++ .../SelectionAction/Atoms/PushAtomsAction.def | 33 ++++++ .../SelectionAction/Atoms/PushAtomsAction.hpp | 22 ++++ .../Molecules/PopMoleculesAction.cpp | 72 ++++++++++++++ .../Molecules/PopMoleculesAction.def | 33 ++++++ .../Molecules/PopMoleculesAction.hpp | 22 ++++ .../Molecules/PushMoleculesAction.cpp | 73 ++++++++++++++ .../Molecules/PushMoleculesAction.def | 33 ++++++ .../Molecules/PushMoleculesAction.hpp | 22 ++++ src/UIElements/CommandLineUI/CommandLineParser.cpp | 1 + src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject.cpp | 3 +- .../Views/Qt4/Qt3D/GLMoleculeObject_molecule.cpp | 17 +++- src/UIElements/Views/Qt4/Qt3D/GLWorldView.cpp | 10 ++- src/World.cpp | 30 ++++++- src/World.hpp | 7 ++ 28 files changed, 849 insertions(+), 87 deletions(-) create mode 100644 src/Actions/MoleculeAction/TranslateAction.cpp create mode 100644 src/Actions/MoleculeAction/TranslateAction.def create mode 100644 src/Actions/MoleculeAction/TranslateAction.hpp create mode 100644 src/Actions/SelectionAction/Atoms/PopAtomsAction.cpp create mode 100644 src/Actions/SelectionAction/Atoms/PopAtomsAction.def create mode 100644 src/Actions/SelectionAction/Atoms/PopAtomsAction.hpp create mode 100644 src/Actions/SelectionAction/Atoms/PushAtomsAction.cpp create mode 100644 src/Actions/SelectionAction/Atoms/PushAtomsAction.def create mode 100644 src/Actions/SelectionAction/Atoms/PushAtomsAction.hpp create mode 100644 src/Actions/SelectionAction/Molecules/PopMoleculesAction.cpp create mode 100644 src/Actions/SelectionAction/Molecules/PopMoleculesAction.def create mode 100644 src/Actions/SelectionAction/Molecules/PopMoleculesAction.hpp create mode 100644 src/Actions/SelectionAction/Molecules/PushMoleculesAction.cpp create mode 100644 src/Actions/SelectionAction/Molecules/PushMoleculesAction.def create mode 100644 src/Actions/SelectionAction/Molecules/PushMoleculesAction.hpp hooks/post-receive -- MoleCuilder
participants (1)
-
git@ins.uni-bonn.de