source: molecuilder/src/Legacy/oldmenu.hpp@ 2e06c4

Last change on this file since 2e06c4 was 181488, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a directory to quarantine files that should be completely removed during transition.

  • Usage of Files in this directory is necessary while transition is in progress, but highly deprecated
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/** \file menu.hpp
2 * The class in this file is responsible for displaying the menu and enabling choices.
3 *
4 * This class is currently being refactored. Functions were copied from builder.cpp and are
5 * to be imported into the menu class.
6 *
7 */
8
9#ifndef MENU_H_
10#define MENU_H_
11
12
13class MoleculeListClass;
14class periodentafel;
15class config;
16class molecule;
17
18class oldmenu
19{
20public:
21 oldmenu();
22 virtual ~oldmenu();
23
24 // methods taken from ManipulateMoleculse submenu
25 void duplicateCell(MoleculeListClass *molecules, config *configuration);
26
27 // methods taken from MergeMolecules submenu
28 void SimpleAddMolecules(MoleculeListClass *molecules);
29 void embeddMolecules(MoleculeListClass *molecules);
30 void multiMergeMolecules(MoleculeListClass *molecules);
31 void simpleMergeMolecules(MoleculeListClass *molecules);
32
33 void AddAtoms(periodentafel *, molecule *);
34 void AlignAtoms(periodentafel *, molecule *);
35 void CenterAtoms(molecule *);
36 void FragmentAtoms(molecule *, config *);
37 void ManipulateAtoms(periodentafel *, MoleculeListClass *, config *);
38 void MeasureAtoms(periodentafel *, molecule *, config *);
39 void MergeMolecules(periodentafel *, MoleculeListClass *);
40 void ManipulateMolecules(periodentafel *, MoleculeListClass *, config *);
41 void MirrorAtoms(molecule *);
42 void RemoveAtoms(molecule *);
43 void testroutine(MoleculeListClass *);
44};
45
46#endif /* MENU_H_ */
Note: See TracBrowser for help on using the repository browser.