contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / pascal / test / gevents.pas
blobc43466ac82b20d1529490b66b588f5b0d4564b1a
1 (*******************************************************************
3 * gevents test programs events definition 1.1
5 * This file defines the events used by the FreeType test programs
6 * It is _not_ included by 'gmain.c'. This file is also used by the
7 * drivers to translate their own events in GEvents.
9 * Not a very good design, but we're not rewriting X..
11 * Copyright 1996 David Turner, Robert Wilhelm and Werner Lemberg.
13 * This file is part of the FreeType project, and may only be used
14 * modified and distributed under the terms of the FreeType project
15 * license, LICENSE.TXT. By continuing to use, modify or distribute
16 * this file you indicate that you have read the license and
17 * understand and accept it fully.
19 ******************************************************************)
21 Unit GEvents;
23 interface
25 type
26 GEvent = (
27 event_None,
28 event_Quit, (* Quit program *)
30 event_Keyboard, (* unknown keystroke *)
32 event_Change_Glyph,
33 event_Rotate_Glyph,
34 event_Scale_Glyph,
36 event_Change_ScanType,
37 event_Change_Instructions
40 implementation
42 end.