| 1 | /* | 
|---|
| 2 | * Project: MoleCuilder | 
|---|
| 3 | * Description: creates and alters molecular systems | 
|---|
| 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| 5 | * | 
|---|
| 6 | * | 
|---|
| 7 | *   This file is part of MoleCuilder. | 
|---|
| 8 | * | 
|---|
| 9 | *    MoleCuilder is free software: you can redistribute it and/or modify | 
|---|
| 10 | *    it under the terms of the GNU General Public License as published by | 
|---|
| 11 | *    the Free Software Foundation, either version 2 of the License, or | 
|---|
| 12 | *    (at your option) any later version. | 
|---|
| 13 | * | 
|---|
| 14 | *    MoleCuilder is distributed in the hope that it will be useful, | 
|---|
| 15 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 16 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 17 | *    GNU General Public License for more details. | 
|---|
| 18 | * | 
|---|
| 19 | *    You should have received a copy of the GNU General Public License | 
|---|
| 20 | *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>. | 
|---|
| 21 | */ | 
|---|
| 22 |  | 
|---|
| 23 | /* | 
|---|
| 24 | * MenuDescription.cpp | 
|---|
| 25 | * | 
|---|
| 26 | *  Created on: Oct 26, 2010 | 
|---|
| 27 | *      Author: heber | 
|---|
| 28 | */ | 
|---|
| 29 |  | 
|---|
| 30 | // include config.h | 
|---|
| 31 | #ifdef HAVE_CONFIG_H | 
|---|
| 32 | #include <config.h> | 
|---|
| 33 | #endif | 
|---|
| 34 |  | 
|---|
| 35 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| 36 |  | 
|---|
| 37 | #include <iostream> | 
|---|
| 38 | #include <map> | 
|---|
| 39 | #include <string> | 
|---|
| 40 |  | 
|---|
| 41 | //#include "Actions/ActionQueue.hpp" | 
|---|
| 42 | #include "Menu/MenuDescription.hpp" | 
|---|
| 43 |  | 
|---|
| 44 | #include "CodePatterns/Singleton_impl.hpp" | 
|---|
| 45 |  | 
|---|
| 46 | MenuDescription::TextMap *MenuDescription::MenuDescriptionsMap = NULL; | 
|---|
| 47 | MenuDescription::IterableMap *MenuDescription::MenuPositionMap = NULL; | 
|---|
| 48 | MenuDescription::TextMap *MenuDescription::MenuNameMap = NULL; | 
|---|
| 49 |  | 
|---|
| 50 |  | 
|---|
| 51 | /** Constructor of class MenuDescription. | 
|---|
| 52 | * | 
|---|
| 53 | */ | 
|---|
| 54 | MenuDescription::MenuDescription() | 
|---|
| 55 | { | 
|---|
| 56 | // allocate maps | 
|---|
| 57 | MenuDescriptionsMap = new TextMap(); | 
|---|
| 58 | MenuPositionMap = new IterableMap(); | 
|---|
| 59 | MenuNameMap = new TextMap(); | 
|---|
| 60 |  | 
|---|
| 61 | // put each menu into its place, "" means top level | 
|---|
| 62 | MenuPositionMap->insert(std::make_pair("analysis",TopPosition("tools",1))); | 
|---|
| 63 | MenuPositionMap->insert(std::make_pair("atom",TopPosition("edit",1))); | 
|---|
| 64 | MenuPositionMap->insert(std::make_pair("bond",TopPosition("edit",2))); | 
|---|
| 65 | MenuPositionMap->insert(std::make_pair("command",TopPosition("",3))); | 
|---|
| 66 | MenuPositionMap->insert(std::make_pair("edit",TopPosition("",2))); | 
|---|
| 67 | MenuPositionMap->insert(std::make_pair("fill",TopPosition("tools",5))); | 
|---|
| 68 | MenuPositionMap->insert(std::make_pair("fragmentation",TopPosition("tools",3))); | 
|---|
| 69 | MenuPositionMap->insert(std::make_pair("graph",TopPosition("tools",4))); | 
|---|
| 70 | MenuPositionMap->insert(std::make_pair("molecule",TopPosition("edit",3))); | 
|---|
| 71 | MenuPositionMap->insert(std::make_pair("potential",TopPosition("tools",7))); | 
|---|
| 72 | MenuPositionMap->insert(std::make_pair("parser",TopPosition("edit",4))); | 
|---|
| 73 | MenuPositionMap->insert(std::make_pair("selection",TopPosition("edit",5))); | 
|---|
| 74 | MenuPositionMap->insert(std::make_pair("tesselation",TopPosition("tools",2))); | 
|---|
| 75 | MenuPositionMap->insert(std::make_pair("shape",TopPosition("tools",6))); | 
|---|
| 76 | MenuPositionMap->insert(std::make_pair("tools",TopPosition("",4))); | 
|---|
| 77 | MenuPositionMap->insert(std::make_pair("world",TopPosition("",1))); | 
|---|
| 78 |  | 
|---|
| 79 | // put menu description into each menu category | 
|---|
| 80 | MenuDescriptionsMap->insert(std::make_pair("analysis","Analysis (pair correlation, volume)")); | 
|---|
| 81 | MenuDescriptionsMap->insert(std::make_pair("atom","Edit atoms")); | 
|---|
| 82 | MenuDescriptionsMap->insert(std::make_pair("bond","Edit bonds")); | 
|---|
| 83 | MenuDescriptionsMap->insert(std::make_pair("command","Configuration")); | 
|---|
| 84 | MenuDescriptionsMap->insert(std::make_pair("edit","Edit")); | 
|---|
| 85 | MenuDescriptionsMap->insert(std::make_pair("fill","Fill")); | 
|---|
| 86 | MenuDescriptionsMap->insert(std::make_pair("fragmentation","Fragmentation")); | 
|---|
| 87 | MenuDescriptionsMap->insert(std::make_pair("graph","Graph")); | 
|---|
| 88 | MenuDescriptionsMap->insert(std::make_pair("molecule","Parse files into system")); | 
|---|
| 89 | MenuDescriptionsMap->insert(std::make_pair("parser","Edit molecules (load, parse, save)")); | 
|---|
| 90 | MenuDescriptionsMap->insert(std::make_pair("potential","Fit potentials and parse, save homologies")); | 
|---|
| 91 | MenuDescriptionsMap->insert(std::make_pair("selection","Select atoms/molecules")); | 
|---|
| 92 | MenuDescriptionsMap->insert(std::make_pair("tesselation","Tesselate molecules")); | 
|---|
| 93 | MenuDescriptionsMap->insert(std::make_pair("shape","Edit shapes")); | 
|---|
| 94 | MenuDescriptionsMap->insert(std::make_pair("tools","Various tools")); | 
|---|
| 95 | MenuDescriptionsMap->insert(std::make_pair("world","Edit world")); | 
|---|
| 96 |  | 
|---|
| 97 | // put menu name into each menu category | 
|---|
| 98 | MenuNameMap->insert(std::make_pair("analysis","Analysis")); | 
|---|
| 99 | MenuNameMap->insert(std::make_pair("atom","Atoms")); | 
|---|
| 100 | MenuNameMap->insert(std::make_pair("bond","Bonds")); | 
|---|
| 101 | MenuNameMap->insert(std::make_pair("command","Configuration")); | 
|---|
| 102 | MenuNameMap->insert(std::make_pair("edit","Edit")); | 
|---|
| 103 | MenuNameMap->insert(std::make_pair("fill","Fill")); | 
|---|
| 104 | MenuNameMap->insert(std::make_pair("fragmentation","Fragmentation")); | 
|---|
| 105 | MenuNameMap->insert(std::make_pair("graph","Graph")); | 
|---|
| 106 | MenuNameMap->insert(std::make_pair("molecule","Molecules")); | 
|---|
| 107 | MenuNameMap->insert(std::make_pair("parser","Input/Output")); | 
|---|
| 108 | MenuNameMap->insert(std::make_pair("potential","PotentialFitting")); | 
|---|
| 109 | MenuNameMap->insert(std::make_pair("selection","Selection")); | 
|---|
| 110 | MenuNameMap->insert(std::make_pair("tesselation","Tesselation")); | 
|---|
| 111 | MenuNameMap->insert(std::make_pair("shape","Shape")); | 
|---|
| 112 | MenuNameMap->insert(std::make_pair("tools","Tools")); | 
|---|
| 113 | MenuNameMap->insert(std::make_pair("world","Globals")); | 
|---|
| 114 | } | 
|---|
| 115 |  | 
|---|
| 116 | /** Destructor of class MenuDescription. | 
|---|
| 117 | * | 
|---|
| 118 | */ | 
|---|
| 119 | MenuDescription::~MenuDescription() | 
|---|
| 120 | { | 
|---|
| 121 | //std::cout << "MenuDescription: clearing maps ... " << std::endl; | 
|---|
| 122 | for (IterableMap::iterator iter = MenuPositionMap->begin(); !MenuPositionMap->empty(); iter = MenuPositionMap->begin()) | 
|---|
| 123 | MenuPositionMap->erase(iter); | 
|---|
| 124 | delete MenuNameMap; | 
|---|
| 125 | delete MenuDescriptionsMap; | 
|---|
| 126 | delete MenuPositionMap; | 
|---|
| 127 | } | 
|---|
| 128 |  | 
|---|
| 129 | /** Getter for MenuDescriptionsMap. | 
|---|
| 130 | * \param token name of menu | 
|---|
| 131 | * \return description string of the menu or empty | 
|---|
| 132 | */ | 
|---|
| 133 | const std::string MenuDescription::getDescription(const std::string &token) const | 
|---|
| 134 | { | 
|---|
| 135 | if (MenuDescriptionsMap->find(token) != MenuDescriptionsMap->end()) | 
|---|
| 136 | return MenuDescriptionsMap->find(token)->second; | 
|---|
| 137 | else | 
|---|
| 138 | return std::string(); | 
|---|
| 139 | } | 
|---|
| 140 |  | 
|---|
| 141 | /** Getter for MenuNameMap-> | 
|---|
| 142 | * \param token name of menu | 
|---|
| 143 | * \return description string of the menu or empty | 
|---|
| 144 | */ | 
|---|
| 145 | const std::string MenuDescription::getName(const std::string &token) const | 
|---|
| 146 | { | 
|---|
| 147 | if (MenuNameMap->find(token) != MenuNameMap->end()) | 
|---|
| 148 | return MenuNameMap->find(token)->second; | 
|---|
| 149 | else | 
|---|
| 150 | return std::string(); | 
|---|
| 151 | } | 
|---|
| 152 |  | 
|---|
| 153 | ///** Constructs a multimap of all menus running over all actions belonging to it. | 
|---|
| 154 | // * \return multimap with which actions belongs to which menu. | 
|---|
| 155 | // */ | 
|---|
| 156 | //std::multimap <std::string, std::string> MenuDescription::getMenuItemsMap() const | 
|---|
| 157 | //{ | 
|---|
| 158 | //  std::multimap <std::string, std::string> result; | 
|---|
| 159 | // | 
|---|
| 160 | //  ActionQueue &AQ = ActionQueue::getInstance(); | 
|---|
| 161 | //  ActionQueue::ActionTokens_t tokens = AQ.getListOfActions(); | 
|---|
| 162 | //  for (ActionQueue::ActionTokens_t::const_iterator iter = tokens.begin(); | 
|---|
| 163 | //      iter != tokens.end(); ++iter) { | 
|---|
| 164 | //    const ActionTrait &CurrentTrait = AQ.getActionsTrait(*iter); | 
|---|
| 165 | //    std::cout << "Inserting " << *iter << " into menu " << CurrentTrait.getMenuName() << std::endl; | 
|---|
| 166 | //    result.insert( std::pair<std::string, std::string> (CurrentTrait.getMenuName(), *iter)); | 
|---|
| 167 | //  } | 
|---|
| 168 | //  // TODO: MenuPosition is not yet realized. | 
|---|
| 169 | //  return result; | 
|---|
| 170 | //} | 
|---|
| 171 |  | 
|---|
| 172 | /** Forward iterator from beginning of list of descriptions. | 
|---|
| 173 | * \return iterator | 
|---|
| 174 | */ | 
|---|
| 175 | MenuDescription::iterator MenuDescription::getBeginIter() | 
|---|
| 176 | { | 
|---|
| 177 | return MenuPositionMap->begin(); | 
|---|
| 178 | } | 
|---|
| 179 |  | 
|---|
| 180 | /** Forward iterator at end of list of descriptions. | 
|---|
| 181 | * \return iterator | 
|---|
| 182 | */ | 
|---|
| 183 | MenuDescription::iterator MenuDescription::getEndIter() | 
|---|
| 184 | { | 
|---|
| 185 | return MenuPositionMap->end(); | 
|---|
| 186 | } | 
|---|
| 187 |  | 
|---|
| 188 | /** Constant forward iterator from beginning of list of descriptions. | 
|---|
| 189 | * \return constant iterator | 
|---|
| 190 | */ | 
|---|
| 191 | MenuDescription::const_iterator MenuDescription::getBeginIter() const | 
|---|
| 192 | { | 
|---|
| 193 | return MenuPositionMap->begin(); | 
|---|
| 194 | } | 
|---|
| 195 |  | 
|---|
| 196 | /** Constant forward iterator at end of list of descriptions. | 
|---|
| 197 | * \return constant iterator | 
|---|
| 198 | */ | 
|---|
| 199 | MenuDescription::const_iterator MenuDescription::getEndIter() const | 
|---|
| 200 | { | 
|---|
| 201 | return MenuPositionMap->end(); | 
|---|
| 202 | } | 
|---|
| 203 |  | 
|---|
| 204 | CONSTRUCT_SINGLETON(MenuDescription) | 
|---|