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

Action_Thermostats Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 9a1e099 was 522c45, checked in by Frederik Heber <heber@…>, 9 years ago

QtObserved... signals indexChanged does not transmit ids anymore.

  • since the change to ObservedValue_Index_t, the id is not used anymore. Only in the GUI for the objectid.
  • Property mode set to 100644
File size: 1.5 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 <vector>
19#include <boost/any.hpp>
20
21#include "CodePatterns/ObservedValue.hpp"
22
23#include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_bond.hpp"
24#include "UIElements/Qt4/InstanceBoard/QtObservedAtom.hpp"
25#include "types.hpp"
26
27class GLWorldScene;
28class QtObservedInstanceBoard;
29
30class GLMoleculeObject_atom : public GLMoleculeObject
31{
32 Q_OBJECT
33public:
34 GLMoleculeObject_atom(
35 QGLSceneNode *mesh[],
36 QObject *parent,
37 QtObservedAtom::ptr &_ObservedAtom
38 );
39 virtual ~GLMoleculeObject_atom();
40
41 void draw(QGLPainter *painter, const QVector4D &cameraPlane);
42
43private slots:
44 void wasClicked();
45 void resetIndex();
46 void resetElement();
47 void resetPosition();
48 void resetSelected();
49
50signals:
51 void clicked(atomId_t);
52 void BondsAdded(const atomId_t _left, const atomId_t _right, const GLMoleculeObject_bond::SideOfBond side);
53 void BondsRemoved(const atomId_t _left, const atomId_t _right);
54 void indexChanged(GLMoleculeObject_atom*, const atomId_t _oldid, const atomId_t _newid);
55
56private:
57 void init(const atomId_t _id);
58
59private:
60 //!> current list of bonds to compare new onw against for changes
61 QtObservedAtom::ListOfBonds_t ListOfBonds;
62
63 QtObservedAtom::ptr ObservedAtom;
64};
65
66
67
68#endif /* GLMOLECULEOBJECT_ATOM_HPP_ */
Note: See TracBrowser for help on using the repository browser.