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