source: molecuilder/src/menu.hpp@ 16f86d

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

Removed unecessary method stubs from oldmenu class

  • Property mode set to 100644
File size: 1.1 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 FragmentAtoms(molecule *, config *);
33 void ManipulateAtoms(periodentafel *, MoleculeListClass *, config *);
34 void MeasureAtoms(periodentafel *, molecule *, config *);
35 void MergeMolecules(periodentafel *, MoleculeListClass *);
36 void ManipulateMolecules(periodentafel *, MoleculeListClass *, config *);
37 void MirrorAtoms(molecule *);
38 void RemoveAtoms(molecule *);
39 void testroutine(MoleculeListClass *);
40};
41
42#endif /* MENU_H_ */
Note: See TracBrowser for help on using the repository browser.