rnd-20031129-2-src
[rocksndiamonds.git] / src / screens.h
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * screens.h                                                *
12 ***********************************************************/
13
14 #ifndef SCREENS_H
15 #define SCREENS_H
16
17 #include "main.h"
18
19 /* (randomly chosen) values for HandleChooseTree() */
20 #define SCROLL_LINE     (1 * SCR_FIELDY)
21 #define SCROLL_PAGE     (2 * SCR_FIELDY)
22
23
24 void DrawHeadline(void);
25
26 void DrawMainMenu(void);
27 void HandleMainMenu(int, int, int, int, int);
28
29 void HandleInfoScreen(int);
30
31 void HandleTypeName(int, Key);
32
33 void DrawChooseLevel(void);
34 void HandleChooseLevel(int, int, int, int, int);
35
36 void DrawHallOfFame(int);
37 void HandleHallOfFame(int, int, int, int, int);
38
39 void DrawSetupScreen(void);
40 void HandleSetupScreen(int, int, int, int, int);
41
42 void HandleGameActions(void);
43
44 void CreateScreenGadgets();
45 void FreeScreenGadgets();
46 void MapChooseTreeGadgets(TreeInfo *);
47 void UnmapChooseTreeGadgets();
48
49 #endif  /* SCREENS_H */