source: molecuilder/src/menu.hpp@ 057b77

Last change on this file since 057b77 was 381df6, checked in by Frederik Heber <heber@…>, 16 years ago

Rebuild the main menu using the new structure as far as possible. Signed-off-by: Tillmann Crueger <crueger@…>

  • Property mode set to 100644
File size: 1.2 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 void notImplementedYet();
25 void perform(MoleculeListClass *, config *, periodentafel *, char *);
26 void SaveConfig(char *, config *, periodentafel *, MoleculeListClass *);
27
28protected:
29 void AddAtoms(periodentafel *, molecule *);
30 void AlignAtoms(periodentafel *, molecule *);
31 void CenterAtoms(molecule *);
32 void EditMolecules(periodentafel *, MoleculeListClass *);
33 void FragmentAtoms(molecule *, config *);
34 void ManipulateAtoms(periodentafel *, MoleculeListClass *, config *);
35 void MeasureAtoms(periodentafel *, molecule *, config *);
36 void MergeMolecules(periodentafel *, MoleculeListClass *);
37 void ManipulateMolecules(periodentafel *, MoleculeListClass *, config *);
38 void MirrorAtoms(molecule *);
39 void RemoveAtoms(molecule *);
40 void testroutine(MoleculeListClass *);
41};
42
43#endif /* MENU_H_ */
Note: See TracBrowser for help on using the repository browser.