source: src/Actions/MoleculeAction/ChangeNameAction.cpp@ 60896f

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 60896f was bf3817, checked in by Frederik Heber <heber@…>, 15 years ago

Added ifdef HAVE_CONFIG and config.h include to each and every cpp file.

  • is now topmost in front of MemDebug.hpp (and any other).
  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[03bb99]1/*
2 * ChangeNameAction.cpp
3 *
4 * Created on: Jan 15, 2010
5 * Author: crueger
6 */
7
[bf3817]8// include config.h
9#ifdef HAVE_CONFIG_H
10#include <config.h>
11#endif
12
[112b09]13#include "Helpers/MemDebug.hpp"
14
[03bb99]15#include "Actions/MoleculeAction/ChangeNameAction.hpp"
[0430e3]16#include "Actions/ActionRegistry.hpp"
[1a3c26]17#include "atom.hpp"
18#include "molecule.hpp"
[bfce50]19
20#include <iostream>
21#include <string>
22
23using namespace std;
24
25#include "UIElements/UIFactory.hpp"
26#include "UIElements/Dialog.hpp"
[861874]27#include "Actions/ValueStorage.hpp"
[bfce50]28
[03bb99]29/****** MoleculeChangeNameAction *****/
[bfce50]30
[67e2b3]31// memento to remember the state when undoing
32
[03bb99]33class MoleculeChangeNameState : public ActionState {
[67e2b3]34public:
[03bb99]35 MoleculeChangeNameState(molecule* _mol,std::string _lastName) :
[67e2b3]36 mol(_mol),
37 lastName(_lastName)
38 {}
39 molecule* mol;
40 std::string lastName;
41};
42
[326bbe]43const char MoleculeChangeNameAction::NAME[] = "change-molname";
[bfce50]44
[97ebf8]45MoleculeChangeNameAction::MoleculeChangeNameAction() :
46 Action(NAME)
[bfce50]47{}
48
[03bb99]49MoleculeChangeNameAction::~MoleculeChangeNameAction()
[bfce50]50{}
51
[1a3c26]52void MoleculeChangeName(std::string &name) {
53 ValueStorage::getInstance().setCurrentValue(MoleculeChangeNameAction::NAME, name);
54 ActionRegistry::getInstance().getActionByName(MoleculeChangeNameAction::NAME)->call(Action::NonInteractive);
55};
56
[047878]57Dialog* MoleculeChangeNameAction::fillDialog(Dialog *dialog) {
58 ASSERT(dialog,"No Dialog given when filling action dialog");
[5bc8520]59
60 dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
61
62 return dialog;
63}
64
[03bb99]65Action::state_ptr MoleculeChangeNameAction::performCall() {
[bfce50]66 string filename;
67 molecule *mol = NULL;
68
[5bc8520]69 ValueStorage::getInstance().queryCurrentValue(NAME, filename);
[67e2b3]70
[5bc8520]71 if (World::getInstance().countSelectedMolecules() == 1) {
72 mol = World::getInstance().beginMoleculeSelection()->second;
[67e2b3]73 string oldName = mol->getName();
[520c8b]74 mol->setName(filename);
[03bb99]75 return Action::state_ptr(new MoleculeChangeNameState(mol,oldName));
[5bc8520]76 } else
77 return Action::failure;
[bfce50]78}
79
[03bb99]80Action::state_ptr MoleculeChangeNameAction::performUndo(Action::state_ptr _state) {
81 MoleculeChangeNameState *state = assert_cast<MoleculeChangeNameState*>(_state.get());
[67e2b3]82
83 string newName = state->mol->getName();
84 state->mol->setName(state->lastName);
[bfce50]85
[03bb99]86 return Action::state_ptr(new MoleculeChangeNameState(state->mol,newName));
[67e2b3]87}
88
[03bb99]89Action::state_ptr MoleculeChangeNameAction::performRedo(Action::state_ptr _state){
[67e2b3]90 // Undo and redo have to do the same for this action
91 return performUndo(_state);
[bfce50]92}
93
[03bb99]94bool MoleculeChangeNameAction::canUndo() {
[67e2b3]95 return true;
[bfce50]96}
97
[03bb99]98bool MoleculeChangeNameAction::shouldUndo() {
[bfce50]99 return true;
100}
101
[03bb99]102const string MoleculeChangeNameAction::getName() {
[bfce50]103 return NAME;
104}
Note: See TracBrowser for help on using the repository browser.