[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 |
|
---|
[e2009b] | 8 | /*
|
---|
[521bbf] | 9 | * NotMoleculeByIdAction.cpp
|
---|
[e2009b] | 10 | *
|
---|
| 11 | * Created on: May 12, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[e2009b] | 20 | #include "Helpers/MemDebug.hpp"
|
---|
| 21 |
|
---|
[533838] | 22 | #include "molecule.hpp"
|
---|
[952f38] | 23 | #include "Helpers/Log.hpp"
|
---|
| 24 | #include "Helpers/Verbose.hpp"
|
---|
[e2009b] | 25 | #include "World.hpp"
|
---|
| 26 |
|
---|
| 27 | #include <iostream>
|
---|
| 28 | #include <string>
|
---|
| 29 |
|
---|
| 30 | using namespace std;
|
---|
| 31 |
|
---|
[1fd675] | 32 | #include "Actions/SelectionAction/NotMoleculeByIdAction.hpp"
|
---|
[533838] | 33 |
|
---|
[1fd675] | 34 | // and construct the stuff
|
---|
| 35 | #include "NotMoleculeByIdAction.def"
|
---|
| 36 | #include "Action_impl_pre.hpp"
|
---|
| 37 | /** =========== define the function ====================== */
|
---|
[533838] | 38 | Action::state_ptr SelectionNotMoleculeByIdAction::performCall() {
|
---|
[1fd675] | 39 | // obtain information
|
---|
| 40 | getParametersfromValueStorage();
|
---|
[e2009b] | 41 |
|
---|
[1fd675] | 42 | if (World::getInstance().isSelected(params.mol)) {
|
---|
| 43 | DoLog(1) && (Log() << Verbose(1) << "Unselecting molecule " << params.mol->name << endl);
|
---|
| 44 | World::getInstance().unselectMolecule(params.mol);
|
---|
| 45 | return Action::state_ptr(new SelectionNotMoleculeByIdState(params));
|
---|
[e2009b] | 46 | } else {
|
---|
[533838] | 47 | return Action::success;
|
---|
[e2009b] | 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | Action::state_ptr SelectionNotMoleculeByIdAction::performUndo(Action::state_ptr _state) {
|
---|
| 52 | SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
|
---|
| 53 |
|
---|
[1fd675] | 54 | if (state->params.mol != NULL)
|
---|
| 55 | World::getInstance().selectMolecule(state->params.mol);
|
---|
[e2009b] | 56 |
|
---|
[1fd675] | 57 | return Action::state_ptr(_state);
|
---|
[e2009b] | 58 | }
|
---|
| 59 |
|
---|
| 60 | Action::state_ptr SelectionNotMoleculeByIdAction::performRedo(Action::state_ptr _state){
|
---|
| 61 | SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
|
---|
| 62 |
|
---|
[1fd675] | 63 | if (state->params.mol != NULL)
|
---|
| 64 | World::getInstance().unselectMolecule(state->params.mol);
|
---|
[e2009b] | 65 |
|
---|
[1fd675] | 66 | return Action::state_ptr(_state);
|
---|
[e2009b] | 67 | }
|
---|
| 68 |
|
---|
| 69 | bool SelectionNotMoleculeByIdAction::canUndo() {
|
---|
| 70 | return true;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | bool SelectionNotMoleculeByIdAction::shouldUndo() {
|
---|
| 74 | return true;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | const string SelectionNotMoleculeByIdAction::getName() {
|
---|
| 78 | return NAME;
|
---|
| 79 | }
|
---|
[1fd675] | 80 | /** =========== end of function ====================== */
|
---|