source: src/UIElements/Views/Qt4/MoleculeList/SpecificItems/QtMoleculeItem_visibility.hpp@ 33a694

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes
Last change on this file since 33a694 was 3054f4a, checked in by Frederik Heber <heber@…>, 9 years ago

QtObserved...Observed now get index on ...Removed() signal.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 * QtMoleculeItem_visibility.hpp
3 *
4 * Created on: Jan 18, 2015
5 * Author: heber
6 */
7
8#ifndef QTMOLECULEITEM_VISIBILITY_HPP_
9#define QTMOLECULEITEM_VISIBILITY_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "UIElements/Views/Qt4/MoleculeList/QtMoleculeItem.hpp"
17
18class QtMoleculeItemFactory;
19
20/** This class contains the visibility of a molecule and keeps it up to date.
21 *
22 */
23class QtMoleculeItem_visibility : public QtMoleculeItem
24{
25 //!> only allow factory to instantiate items
26 friend class QtMoleculeItemFactory;
27
28 QtMoleculeItem_visibility(
29 QtObservedMolecule::ptr &_ObservedMolecule) :
30 id(_ObservedMolecule->getIndex())
31 {
32 setFlags(flags() | Qt::ItemIsUserCheckable);
33 setCheckState(Qt::Unchecked);
34 // cannot call pure virtual function in QtMoleculeItem's cstor
35 updateState(_ObservedMolecule);
36 }
37
38 /** Performs the update of the molecule's visibility.
39 *
40 * \param _ObservedMolecule object to update state from
41 */
42 void updateState(const QtObservedMolecule::ptr &_ObservedMolecule)
43 {}
44
45 QtMoleculeItem::COLUMNTYPES getType() const
46 { return QtMoleculeItem::VISIBILITY; }
47
48 /** Getter for the id of the observed molecule for this item.
49 *
50 * \return id of the observed molecule
51 */
52 ObservedValue_Index_t getMoleculeIndex() const
53 { return id; }
54
55private:
56 const ObservedValue_Index_t id;
57};
58
59
60
61#endif /* QTMOLECULEITEM_VISIBILITY_HPP_ */
Note: See TracBrowser for help on using the repository browser.