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 | * MenuDescription.cpp
|
---|
10 | *
|
---|
11 | * Created on: Oct 26, 2010
|
---|
12 | * Author: heber
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include "Helpers/MemDebug.hpp"
|
---|
21 |
|
---|
22 | #include <iostream>
|
---|
23 | #include <map>
|
---|
24 | #include <string>
|
---|
25 |
|
---|
26 | #include "Actions/ActionRegistry.hpp"
|
---|
27 | #include "Menu/MenuDescription.hpp"
|
---|
28 |
|
---|
29 | /** Constructor of class MenuDescription.
|
---|
30 | *
|
---|
31 | */
|
---|
32 | MenuDescription::MenuDescription()
|
---|
33 | {
|
---|
34 | // put each menu into its place, "" means top level
|
---|
35 | MenuPositionMap["analysis"] = TopPosition("tools",1);
|
---|
36 | MenuPositionMap["atom"] = TopPosition("edit",1);
|
---|
37 | MenuPositionMap["command"] = TopPosition("",3);
|
---|
38 | MenuPositionMap["edit"] = TopPosition("",2);
|
---|
39 | MenuPositionMap["fragmentation"] = TopPosition("tools",3);
|
---|
40 | MenuPositionMap["molecule"] = TopPosition("edit",2);
|
---|
41 | MenuPositionMap["parser"] = TopPosition("edit",3);
|
---|
42 | MenuPositionMap["selection"] = TopPosition("edit",4);
|
---|
43 | MenuPositionMap["tesselation"] = TopPosition("tools",2);
|
---|
44 | MenuPositionMap["tools"] = TopPosition("",4);
|
---|
45 | MenuPositionMap["world"] = TopPosition("",1);
|
---|
46 |
|
---|
47 | // put menu description into each menu category
|
---|
48 | MenuDescriptionsMap["analysis"] = "Analysis (pair correlation, volume)";
|
---|
49 | MenuDescriptionsMap["atom"] = "Edit atoms";
|
---|
50 | MenuDescriptionsMap["command"] = "Configuration";
|
---|
51 | MenuDescriptionsMap["edit"] = "Edit";
|
---|
52 | MenuDescriptionsMap["fragmentation"] = "Fragmentation";
|
---|
53 | MenuDescriptionsMap["molecule"] = "Parse files into system";
|
---|
54 | MenuDescriptionsMap["parser"] = "Edit molecules (load, parse, save)";
|
---|
55 | MenuDescriptionsMap["selection"] = "Select atoms/molecules";
|
---|
56 | MenuDescriptionsMap["tesselation"] = "Tesselate molecules";
|
---|
57 | MenuDescriptionsMap["tools"] = "Various tools";
|
---|
58 | MenuDescriptionsMap["world"] = "Edit world";
|
---|
59 |
|
---|
60 | // put menu name into each menu category
|
---|
61 | MenuNameMap["analysis"] = "Analysis";
|
---|
62 | MenuNameMap["atom"] = "Atoms";
|
---|
63 | MenuNameMap["command"] = "Configuration";
|
---|
64 | MenuNameMap["edit"] = "Edit";
|
---|
65 | MenuNameMap["fragmentation"] = "Fragmentation";
|
---|
66 | MenuNameMap["molecule"] = "Molecules";
|
---|
67 | MenuNameMap["parser"] = "Input/Output";
|
---|
68 | MenuNameMap["selection"] = "Selection";
|
---|
69 | MenuNameMap["tesselation"] = "Tesselation";
|
---|
70 | MenuNameMap["tools"] = "Tools";
|
---|
71 | MenuNameMap["world"] = "Globals";
|
---|
72 | }
|
---|
73 |
|
---|
74 | /** Destructor of class MenuDescription.
|
---|
75 | *
|
---|
76 | */
|
---|
77 | MenuDescription::~MenuDescription()
|
---|
78 | {}
|
---|
79 |
|
---|
80 | /** Getter for MenuDescriptionsMap.
|
---|
81 | * \param token name of menu
|
---|
82 | * \return description string of the menu or empty
|
---|
83 | */
|
---|
84 | const std::string MenuDescription::getDescription(const std::string &token) const
|
---|
85 | {
|
---|
86 | if (MenuDescriptionsMap.find(token) != MenuDescriptionsMap.end())
|
---|
87 | return MenuDescriptionsMap.find(token)->second;
|
---|
88 | else
|
---|
89 | return std::string();
|
---|
90 | }
|
---|
91 |
|
---|
92 | /** Getter for MenuNameMap.
|
---|
93 | * \param token name of menu
|
---|
94 | * \return description string of the menu or empty
|
---|
95 | */
|
---|
96 | const std::string MenuDescription::getName(const std::string &token) const
|
---|
97 | {
|
---|
98 | if (MenuNameMap.find(token) != MenuNameMap.end())
|
---|
99 | return MenuNameMap.find(token)->second;
|
---|
100 | else
|
---|
101 | return std::string();
|
---|
102 | }
|
---|
103 |
|
---|
104 | /** Constructs a multimap of all menus running over all actions belonging to it.
|
---|
105 | * \return multimap with which actions belongs to which menu.
|
---|
106 | */
|
---|
107 | std::multimap <std::string, std::string> MenuDescription::getMenuItemsMap() const
|
---|
108 | {
|
---|
109 | std::multimap <std::string, std::string> result;
|
---|
110 |
|
---|
111 | ActionRegistry &AR = ActionRegistry::getInstance();
|
---|
112 | for (ActionRegistry::const_iterator iter = AR.getBeginIter();iter != AR.getEndIter();++iter) {
|
---|
113 | std::cout << "Inserting " << (iter->second)->getName() << " into menu " << (iter->second)->Traits.getMenuName() << std::endl;
|
---|
114 | result.insert( std::pair<std::string, std::string> ((iter->second)->Traits.getMenuName(), (iter->second)->getName()));
|
---|
115 | }
|
---|
116 | // TODO: MenuPosition is not yet realized.
|
---|
117 | return result;
|
---|
118 | }
|
---|
119 |
|
---|
120 | /** Forward iterator from beginning of list of descriptions.
|
---|
121 | * \return iterator
|
---|
122 | */
|
---|
123 | MenuDescription::iterator MenuDescription::getBeginIter()
|
---|
124 | {
|
---|
125 | return MenuPositionMap.begin();
|
---|
126 | }
|
---|
127 |
|
---|
128 | /** Forward iterator at end of list of descriptions.
|
---|
129 | * \return iterator
|
---|
130 | */
|
---|
131 | MenuDescription::iterator MenuDescription::getEndIter()
|
---|
132 | {
|
---|
133 | return MenuPositionMap.end();
|
---|
134 | }
|
---|
135 |
|
---|
136 | /** Constant forward iterator from beginning of list of descriptions.
|
---|
137 | * \return constant iterator
|
---|
138 | */
|
---|
139 | MenuDescription::const_iterator MenuDescription::getBeginIter() const
|
---|
140 | {
|
---|
141 | return MenuPositionMap.begin();
|
---|
142 | }
|
---|
143 |
|
---|
144 | /** Constant forward iterator at end of list of descriptions.
|
---|
145 | * \return constant iterator
|
---|
146 | */
|
---|
147 | MenuDescription::const_iterator MenuDescription::getEndIter() const
|
---|
148 | {
|
---|
149 | return MenuPositionMap.end();
|
---|
150 | }
|
---|
151 |
|
---|
152 |
|
---|