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 |
|
---|
13 | class MoleculeListClass;
|
---|
14 | class periodentafel;
|
---|
15 | class config;
|
---|
16 | class molecule;
|
---|
17 |
|
---|
18 | class oldmenu
|
---|
19 | {
|
---|
20 | public:
|
---|
21 | oldmenu();
|
---|
22 | virtual ~oldmenu();
|
---|
23 |
|
---|
24 | void notImplementedYet();
|
---|
25 | void perform(MoleculeListClass *, config *, periodentafel *, char *);
|
---|
26 | void SaveConfig(char *, config *, periodentafel *, MoleculeListClass *);
|
---|
27 |
|
---|
28 | protected:
|
---|
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.