| [bcf653] | 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 | 
 | 
|---|
| [97ebf8] | 8 | /*
 | 
|---|
 | 9 |  * SetDefaultNameAction.cpp
 | 
|---|
 | 10 |  *
 | 
|---|
 | 11 |  *  Created on: May 8, 2010
 | 
|---|
 | 12 |  *      Author: heber
 | 
|---|
 | 13 |  */
 | 
|---|
 | 14 | 
 | 
|---|
| [bf3817] | 15 | // include config.h
 | 
|---|
 | 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 17 | #include <config.h>
 | 
|---|
 | 18 | #endif
 | 
|---|
 | 19 | 
 | 
|---|
| [112b09] | 20 | #include "Helpers/MemDebug.hpp"
 | 
|---|
 | 21 | 
 | 
|---|
| [97ebf8] | 22 | #include "Actions/WorldAction/SetDefaultNameAction.hpp"
 | 
|---|
| [0430e3] | 23 | #include "Actions/ActionRegistry.hpp"
 | 
|---|
| [952f38] | 24 | #include "Helpers/Log.hpp"
 | 
|---|
 | 25 | #include "Helpers/Verbose.hpp"
 | 
|---|
| [97ebf8] | 26 | #include "World.hpp"
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | #include <iostream>
 | 
|---|
 | 29 | #include <string>
 | 
|---|
 | 30 | 
 | 
|---|
 | 31 | using namespace std;
 | 
|---|
 | 32 | 
 | 
|---|
 | 33 | #include "UIElements/UIFactory.hpp"
 | 
|---|
 | 34 | #include "UIElements/Dialog.hpp"
 | 
|---|
| [861874] | 35 | #include "Actions/ValueStorage.hpp"
 | 
|---|
| [792597] | 36 | 
 | 
|---|
 | 37 | 
 | 
|---|
 | 38 | // memento to remember the state when undoing
 | 
|---|
 | 39 | 
 | 
|---|
 | 40 | class WorldSetDefaultNameState : public ActionState {
 | 
|---|
 | 41 | public:
 | 
|---|
 | 42 |   WorldSetDefaultNameState(std::string _lastName) :
 | 
|---|
 | 43 |     lastName(_lastName)
 | 
|---|
 | 44 |   {}
 | 
|---|
 | 45 |   std::string lastName;
 | 
|---|
 | 46 | };
 | 
|---|
| [97ebf8] | 47 | 
 | 
|---|
 | 48 | const char WorldSetDefaultNameAction::NAME[] = "default-molname";
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 | WorldSetDefaultNameAction::WorldSetDefaultNameAction() :
 | 
|---|
 | 51 |   Action(NAME)
 | 
|---|
 | 52 | {}
 | 
|---|
 | 53 | 
 | 
|---|
 | 54 | WorldSetDefaultNameAction::~WorldSetDefaultNameAction()
 | 
|---|
 | 55 | {}
 | 
|---|
 | 56 | 
 | 
|---|
| [a8f6ae] | 57 | void WorldSetDefaultName(std::string &defaultname) {
 | 
|---|
 | 58 |   ValueStorage::getInstance().setCurrentValue(WorldSetDefaultNameAction::NAME, defaultname);
 | 
|---|
 | 59 |   ActionRegistry::getInstance().getActionByName(WorldSetDefaultNameAction::NAME)->call(Action::NonInteractive);
 | 
|---|
 | 60 | };
 | 
|---|
 | 61 | 
 | 
|---|
| [047878] | 62 | Dialog* WorldSetDefaultNameAction::fillDialog(Dialog *dialog) {
 | 
|---|
 | 63 |   ASSERT(dialog,"No Dialog given when filling action dialog");
 | 
|---|
| [792597] | 64 | 
 | 
|---|
 | 65 |   string defaultname = World::getInstance().getDefaultName();
 | 
|---|
 | 66 |   ValueStorage::getInstance().setCurrentValue(NAME, defaultname);
 | 
|---|
| [c89fb4] | 67 |   dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
 | 
|---|
| [792597] | 68 | 
 | 
|---|
 | 69 |   return dialog;
 | 
|---|
 | 70 | }
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 | Action::state_ptr WorldSetDefaultNameAction::performCall() {
 | 
|---|
| [97ebf8] | 73 |   string defaultname;
 | 
|---|
 | 74 | 
 | 
|---|
 | 75 |   defaultname = World::getInstance().getDefaultName();
 | 
|---|
| [7aa3cf] | 76 |   WorldSetDefaultNameState *UndoState = new WorldSetDefaultNameState(defaultname);
 | 
|---|
| [792597] | 77 |   ValueStorage::getInstance().queryCurrentValue(NAME, defaultname);
 | 
|---|
 | 78 | 
 | 
|---|
 | 79 |   World::getInstance().setDefaultName(defaultname);
 | 
|---|
 | 80 |   DoLog(0) && (Log() << Verbose(0) << "Default name of new molecules set to " << World::getInstance().getDefaultName() << "." << endl);
 | 
|---|
| [7aa3cf] | 81 |   return Action::state_ptr(UndoState);
 | 
|---|
| [97ebf8] | 82 | }
 | 
|---|
 | 83 | 
 | 
|---|
 | 84 | Action::state_ptr WorldSetDefaultNameAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| [792597] | 85 |   WorldSetDefaultNameState *state = assert_cast<WorldSetDefaultNameState*>(_state.get());
 | 
|---|
 | 86 | 
 | 
|---|
 | 87 |   string newName = World::getInstance().getDefaultName();
 | 
|---|
 | 88 |   World::getInstance().setDefaultName(state->lastName);
 | 
|---|
| [7aa3cf] | 89 |   DoLog(0) && (Log() << Verbose(0) << "Default name of new molecules set to " << World::getInstance().getDefaultName() << "." << endl);
 | 
|---|
| [97ebf8] | 90 | 
 | 
|---|
| [792597] | 91 |   return Action::state_ptr(new WorldSetDefaultNameState(newName));
 | 
|---|
| [97ebf8] | 92 | }
 | 
|---|
 | 93 | 
 | 
|---|
 | 94 | Action::state_ptr WorldSetDefaultNameAction::performRedo(Action::state_ptr _state){
 | 
|---|
| [680470] | 95 |   return performUndo(_state);
 | 
|---|
| [97ebf8] | 96 | }
 | 
|---|
 | 97 | 
 | 
|---|
 | 98 | bool WorldSetDefaultNameAction::canUndo() {
 | 
|---|
| [792597] | 99 |   return true;
 | 
|---|
| [97ebf8] | 100 | }
 | 
|---|
 | 101 | 
 | 
|---|
 | 102 | bool WorldSetDefaultNameAction::shouldUndo() {
 | 
|---|
| [792597] | 103 |   return true;
 | 
|---|
| [97ebf8] | 104 | }
 | 
|---|
 | 105 | 
 | 
|---|
 | 106 | const string WorldSetDefaultNameAction::getName() {
 | 
|---|
 | 107 |   return NAME;
 | 
|---|
 | 108 | }
 | 
|---|