Changeset 326a43b
- Timestamp:
- Feb 17, 2010, 5:07:35 PM (15 years ago)
- Branches:
- 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
- Children:
- cbf01e
- Parents:
- b1d8092
- Location:
- src
- Files:
-
- 4 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/small_actions.hpp
rb1d8092 r326a43b 1 1 // All rather small Actions should go into this file for simplicities sake 2 2 3 #ifndef _SMALL_ACTIONS_HPP 4 #define _SMALL_ACTIONS_HPP 5 3 6 #include "Actions/Action.hpp" 4 7 #include "Actions/Process.hpp" 5 8 6 9 class MoleculeListClass; … … 9 12 public: 10 13 ChangeMoleculeNameAction(MoleculeListClass*); 11 ~ChangeMoleculeNameAction();14 virtual ~ChangeMoleculeNameAction(); 12 15 13 16 void call(); … … 21 24 static char NAME[]; 22 25 }; 26 27 #endif // _SMALL_ACTIONS_HPP -
src/Makefile.am
rb1d8092 r326a43b 8 8 ANALYSISHEADER = analysis_bonds.hpp analysis_correlation.hpp 9 9 10 ACTIONSSOURCE = Actions/Action.cpp Actions/ MethodAction.cpp Actions/ActionSequence.cpp Actions/MakroAction.cpp Actions/ErrorAction.cpp Actions/small_actions.cpp Actions/ActionRegistry.cpp11 ACTIONSHEADER = Actions/Action.hpp Actions/ MethodAction.hpp Actions/ActionSequence.hpp Actions/MakroAction.hpp Actions/ErrorAction.hpp Actions/small_actions.hpp Actions/ActionRegistry.hpp10 ACTIONSSOURCE = Actions/Action.cpp Actions/Process.cpp Actions/MethodAction.cpp Actions/ActionSequence.cpp Actions/MakroAction.cpp Actions/ErrorAction.cpp Actions/small_actions.cpp Actions/ActionRegistry.cpp 11 ACTIONSHEADER = Actions/Action.hpp Actions/Process.hpp Actions/MethodAction.hpp Actions/ActionSequence.hpp Actions/MakroAction.hpp Actions/ErrorAction.hpp Actions/small_actions.hpp Actions/ActionRegistry.hpp 12 12 13 13 PATTERNSOURCE = Patterns/Observer.cpp … … 33 33 LEGACYHEADER = Legacy/oldmenu.hpp 34 34 35 36 QTUIMOC_HEADER = UIElements/QT4/QTMainWindow.hpp UIElements/QT4/QTDialog.hpp Menu/QT4/QTMenu.hpp Views/QT4/QTMoleculesView.hpp Views/QT4/GLMoleculeView.hpp 37 QTUIMOC_TARGETS = QTMainWindow.moc.cpp QTMenu.moc.cpp QTDialog.moc.cpp QTMoleculesView.moc.cpp GLMoleculeView.moc.cpp 35 QTUIMOC_HEADER = UIElements/QT4/QTMainWindow.hpp UIElements/QT4/QTDialog.hpp Menu/QT4/QTMenu.hpp Views/QT4/QTMoleculesView.hpp Views/QT4/GLMoleculeView.hpp Views/QT4/QTStatusBar.hpp 36 QTUIMOC_TARGETS = QTMainWindow.moc.cpp QTMenu.moc.cpp QTDialog.moc.cpp QTMoleculesView.moc.cpp GLMoleculeView.moc.cpp QTStatusBar.moc.cpp 38 37 39 38 DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp Descriptors/AtomIdDescriptor.cpp 40 39 DESCRIPTORHEADER = Descriptors/AtomDescriptor.hpp Descriptors/AtomIdDescriptor.hpp 41 40 42 QTUISOURCE = ${QTUIMOC_TARGETS} UIElements/QT4/QTMainWindow.cpp UIElements/QT4/QTDialog.cpp UIElements/QT4/QTUIFactory.cpp Menu/QT4/QTMenu.cpp Views/QT4/QTMoleculesView.cpp Views/QT4/GLMoleculeView.cpp 41 QTUISOURCE = ${QTUIMOC_TARGETS} UIElements/QT4/QTMainWindow.cpp UIElements/QT4/QTDialog.cpp UIElements/QT4/QTUIFactory.cpp Menu/QT4/QTMenu.cpp Views/QT4/QTMoleculesView.cpp Views/QT4/GLMoleculeView.cpp Views/QT4/QTStatusBar.cpp 43 42 QTUIHEADER = ${QTUIMOC_HEADER} UIElements/QT4/QTUIFactory.hpp 44 43 -
src/UIElements/QT4/QTMainWindow.cpp
rb1d8092 r326a43b 22 22 #include "Views/QT4/QTMoleculesView.hpp" 23 23 #include "Views/QT4/GLMoleculeView.hpp" 24 #include "Views/QT4/QTStatusBar.hpp" 24 25 25 26 … … 43 44 splitter2->addWidget(moleculeDisplay); 44 45 45 46 46 statusBar = new QTStatusBar(this); 47 setStatusBar(statusBar); 47 48 48 49 editMoleculesMenu = new QTMenu("Edit Molecules"); -
src/UIElements/QT4/QTMainWindow.hpp
rb1d8092 r326a43b 16 16 class QTMenu; 17 17 class GLMoleculeView; 18 class QTStatusBar; 18 19 19 20 class QTMainWindow : public QMainWindow, public MainWindow … … 34 35 QTMenu *editMoleculesMenu; 35 36 GLMoleculeView *molecule3dDisplay; 37 QTStatusBar *statusBar; 36 38 37 39 }; -
src/World.cpp
rb1d8092 r326a43b 59 59 periode(new periodentafel), 60 60 molecules_deprecated(new MoleculeListClass) 61 {} 61 { 62 molecules_deprecated->signOn(this); 63 } 62 64 63 65 World::~World() -
src/builder.cpp
rb1d8092 r326a43b 2168 2168 2169 2169 void cleanUp(config *configuration){ 2170 UIFactory::purgeInstance(); 2170 2171 World::destroy(); 2171 2172 delete(configuration); … … 2177 2178 logger::purgeInstance(); 2178 2179 errorLogger::purgeInstance(); 2179 UIFactory::purgeInstance();2180 2180 ActionRegistry::purgeRegistry(); 2181 2181 } -
src/helpers.hpp
rb1d8092 r326a43b 187 187 }; 188 188 189 189 #define PLURAL_S(v) (((v)==1)?"":"s") 190 190 191 191 #endif /*HELPERS_HPP_*/
Note:
See TracChangeset
for help on using the changeset viewer.