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 |
|
---|
17 | #include <string>
|
---|
18 |
|
---|
19 | /** Constructor for base class ActionTraits.
|
---|
20 | *
|
---|
21 | */
|
---|
22 | ActionTraits::ActionTraits()
|
---|
23 | {}
|
---|
24 |
|
---|
25 | /** Constructor for base class ActionTraits.
|
---|
26 | *
|
---|
27 | */
|
---|
28 | ActionTraits::~ActionTraits()
|
---|
29 | {}
|
---|
30 |
|
---|
31 | /** Returns Current Value for this ActionTrait.
|
---|
32 | * \return ActionTraits::CurrentValue as std::string
|
---|
33 | */
|
---|
34 | const std::string ActionTraits::getCurrentValue() const
|
---|
35 | {
|
---|
36 | return CurrentValue;
|
---|
37 | }
|
---|
38 |
|
---|
39 | /** Returns Description for this ActionTrait.
|
---|
40 | * \return ActionTraits::Description as std::string
|
---|
41 | */
|
---|
42 | const std::string ActionTraits::getDescription() const
|
---|
43 | {
|
---|
44 | return Description;
|
---|
45 | }
|
---|
46 |
|
---|
47 | /** Returns menu title for this ActionTrait.
|
---|
48 | * \return ActionTraits::MenuTitle as std::string
|
---|
49 | */
|
---|
50 | const std::string ActionTraits::getMenuName() const
|
---|
51 | {
|
---|
52 | return MenuTitle;
|
---|
53 | }
|
---|
54 |
|
---|
55 | /** Returns menu title for this ActionTrait.
|
---|
56 | * \return ActionTraits::MenuPosition as std::string
|
---|
57 | */
|
---|
58 | const int ActionTraits::getMenuPosition() const
|
---|
59 | {
|
---|
60 | return MenuPosition;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /** Returns Description for the given option of this ActionTrait.
|
---|
64 | * \param token of option
|
---|
65 | * \return ActionTraits::OptionDescription as std::string
|
---|
66 | */
|
---|
67 | const std::string ActionTraits::getOptionDescription(const std::string descr) const
|
---|
68 | {
|
---|
69 | if (OptionDescription.find(descr) != OptionDescription.end())
|
---|
70 | return OptionDescription.find(descr)->second;
|
---|
71 | else
|
---|
72 | return std::string();
|
---|
73 | }
|
---|
74 |
|
---|
75 | /** Returns ShortForm for this ActionTrait.
|
---|
76 | * \return ActionTraits::ShortForm as std::string
|
---|
77 | */
|
---|
78 | const std::string ActionTraits::getShortForm() const
|
---|
79 | {
|
---|
80 | return ShortForm;
|
---|
81 | }
|
---|
82 |
|
---|
83 | /** Returns Type for this ActionTrait.
|
---|
84 | * \return ActionTraits::InternalType as std::type_info reference
|
---|
85 | */
|
---|
86 | const std::type_info * ActionTraits::getType() const
|
---|
87 | {
|
---|
88 | return InternalType;
|
---|
89 | }
|
---|
90 |
|
---|
91 | /** Forward iterator from beginning of list of options.
|
---|
92 | * \return iterator
|
---|
93 | */
|
---|
94 | ActionTraits::options_iterator ActionTraits::getBeginIter()
|
---|
95 | {
|
---|
96 | return OptionDescription.begin();
|
---|
97 | }
|
---|
98 |
|
---|
99 | /** Forward iterator at end of list of options.
|
---|
100 | * \return iterator
|
---|
101 | */
|
---|
102 | ActionTraits::options_iterator ActionTraits::getEndIter()
|
---|
103 | {
|
---|
104 | return OptionDescription.end();
|
---|
105 | }
|
---|
106 |
|
---|
107 | /** Constant forward iterator from beginning of list of options.
|
---|
108 | * \return constant iterator
|
---|
109 | */
|
---|
110 | ActionTraits::options_const_iterator ActionTraits::getBeginIter() const
|
---|
111 | {
|
---|
112 | return OptionDescription.begin();
|
---|
113 | }
|
---|
114 |
|
---|
115 | /** Constant forward iterator at end of list of options.
|
---|
116 | * \return constant iterator
|
---|
117 | */
|
---|
118 | ActionTraits::options_const_iterator ActionTraits::getEndIter() const
|
---|
119 | {
|
---|
120 | return OptionDescription.end();
|
---|
121 | }
|
---|
122 |
|
---|
123 |
|
---|