source: src/Actions/ActionTraits.cpp@ f0f9a6

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
Last change on this file since f0f9a6 was b59da6, checked in by Frederik Heber <heber@…>, 15 years ago

Refactoring of Menu structure for Qt and Text UI done.

  • Menu is now the initialising class for the menu structure.
  • MenuInterface contains virtual declarations of all functions that Menu needs to call.
  • TextMenu and QtMenu are templated classes which contain both Menu and MenuInterface and implement the virtual functions.
  • class TxMenu and its ...MenuItems contain most of the old Menu code for the text-based system. Most of the stuff, such as triggers, are now hidden internally.
  • in ..MainWindow() we basically just construct the desired Menu and call init at the correct time.
  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[df32ee]1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * ActionTraits.cpp
10 *
11 * Created on: Oct 26, 2010
12 * Author: heber
13 */
14
15#include "Actions/ActionTraits.hpp"
16
[e4afb4]17#include "Helpers/Assert.hpp"
18
19#include <iostream>
20#include <sstream>
[df32ee]21#include <string>
[e4afb4]22#include <typeinfo>
[df32ee]23
[e4afb4]24/** Copy constructor for base class ActionTraits.
25 * \param &_Traits source ActionTraits class to copy
[df32ee]26 */
[e4afb4]27ActionTraits::ActionTraits(const std::string &_token) :
28 OptionTrait(_token,
29 &typeid(void),
30 "this is an invisible action",
31 "",
32 ""
33 )
34{
[c38826]35 //std::cout << "ActionTraits::ActionTraits(string &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
[e4afb4]36}
[df32ee]37
[e4afb4]38/** Copy constructor for base class ActionTraits.
39 * we have to make our own copy in order to avoid references and deep-copy everything.
40 * \param &_Traits source ActionTraits class to copy
[df32ee]41 */
[e4afb4]42ActionTraits::ActionTraits(const ActionTraits &_Traits) :
43 OptionTrait(_Traits.getName(),
44 _Traits.getType(),
45 _Traits.getDescription(),
46 _Traits.hasDefaultValue() ? _Traits.getDefaultValue() : "",
47 _Traits.hasShortForm() ? _Traits.getShortForm() : ""
[b59da6]48 ),
49 MenuTitle(_Traits.MenuTitle),
50 MenuPosition(_Traits.MenuPosition)
[e4afb4]51{
52 for (options_const_iterator iter = _Traits.Options.begin(); iter != _Traits.Options.end(); ++iter) {
53 Options.insert(
54 std::pair< std::string, OptionTrait *> (
55 iter->first,
56 new OptionTrait(iter->second->getName(),iter->second->getType(),iter->second->getDescription(), iter->second->getDefaultValue(), iter->second->getShortForm())
57 )
58 );
59 }
[c38826]60 //std::cout << "ActionTraits::ActionTraits(ActionTraits &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
[e4afb4]61}
[df32ee]62
[e4afb4]63/** Copy constructor for base class ActionTraits.
64 * we have to make our own copy in order to avoid references and deep-copy everything.
65 * \param &_Traits source OptionTrait class to copy
[df32ee]66 */
[b59da6]67ActionTraits::ActionTraits(const OptionTrait &_Traits, const std::string _MenuTitle, const int _MenuPosition) :
68 OptionTrait(_Traits),
69 MenuTitle(_MenuTitle),
70 MenuPosition(_MenuPosition)
[df32ee]71{
[c38826]72 //std::cout << "ActionTraits::ActionTraits(OptionTrait &) with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl;
[df32ee]73}
74
[e4afb4]75/** Constructor for base class ActionTraits.
76 * Deletes all present Options.
[df32ee]77 */
[e4afb4]78ActionTraits::~ActionTraits()
[df32ee]79{
[e4afb4]80 for (options_iterator iter = Options.begin(); !Options.empty(); iter = Options.begin()) {
81 delete (iter->second);
82 Options.erase(iter);
83 }
[df32ee]84}
85
[e4afb4]86
[53be34]87/** Returns menu title for this ActionTrait.
88 * \return ActionTraits::MenuTitle as std::string
89 */
[e4afb4]90const std::string& ActionTraits::getMenuName() const
[53be34]91{
92 return MenuTitle;
93}
94
95/** Returns menu title for this ActionTrait.
96 * \return ActionTraits::MenuPosition as std::string
97 */
[b59da6]98int ActionTraits::getMenuPosition() const
[53be34]99{
100 return MenuPosition;
101}
102
103/** Returns Description for the given option of this ActionTrait.
[e4afb4]104 * \param &token token of option
105 * \return reference to OptionTrait
[53be34]106 */
[e4afb4]107OptionTrait const & ActionTraits::getOption(const std::string &token) const
[53be34]108{
[e4afb4]109 ASSERT(Options.find(token) != Options.end(),
110 "ActionTraits::getOption() - Option not found!");
111 return *(Options.find(token)->second);
[53be34]112}
113
[e4afb4]114/** States whether given option (token) is present or not.
115 * \param &token name of option
116 * \return true - option present, false - not
[df32ee]117 */
[e4afb4]118bool ActionTraits::hasOption(const std::string &token) const
[df32ee]119{
[e4afb4]120 return (Options.find(token) != Options.end());
[df32ee]121}
122
[e4afb4]123/** States whether this Action has options at all.
124 * \return true - options present, false - no options
[df32ee]125 */
[e4afb4]126bool ActionTraits::hasOptions() const
[df32ee]127{
[e4afb4]128 return (Options.begin() != Options.end());
[df32ee]129}
130
[53be34]131/** Forward iterator from beginning of list of options.
132 * \return iterator
133 */
134ActionTraits::options_iterator ActionTraits::getBeginIter()
135{
[e4afb4]136 return Options.begin();
[53be34]137}
138
139/** Forward iterator at end of list of options.
140 * \return iterator
141 */
142ActionTraits::options_iterator ActionTraits::getEndIter()
143{
[e4afb4]144 return Options.end();
[53be34]145}
146
147/** Constant forward iterator from beginning of list of options.
148 * \return constant iterator
149 */
150ActionTraits::options_const_iterator ActionTraits::getBeginIter() const
151{
[e4afb4]152 return Options.begin();
[53be34]153}
154
155/** Constant forward iterator at end of list of options.
156 * \return constant iterator
157 */
158ActionTraits::options_const_iterator ActionTraits::getEndIter() const
159{
[e4afb4]160 return Options.end();
[53be34]161}
162
163
Note: See TracBrowser for help on using the repository browser.