rnd-20050807-1-src
[rocksndiamonds.git] / src / editor.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 * editor.h                                                 *
12 ***********************************************************/
13
14 #ifndef EDITOR_H
15 #define EDITOR_H
16
17 #include "main.h"
18
19 /* number of element button columns and rows in the edit window */
20 #define MAX_ELEM_X              4
21 #define MAX_ELEM_Y              10
22
23 void CreateLevelEditorGadgets();
24 void FreeLevelEditorGadgets();
25 void UnmapLevelEditorGadgets();
26 void DrawLevelEd(void);
27 void HandleLevelEditorKeyInput(Key);
28 void HandleLevelEditorIdle();
29 void HandleEditorGadgetInfoText(void *ptr);
30 void RequestExitLevelEditor(boolean);
31 void PrintEditorElementList();
32
33 void DumpBrush();
34 void DumpBrush_Small();
35
36 #endif