]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.h
1c1c6c901185e154c4db23a5a1b91631dc412cd6
[flightgear.git] / Main / GLUTkey.h
1 /**************************************************************************
2  * GLUTkey.h -- handle GLUT keyboard events
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _GLUTKEY_H
28 #define _GLUTKEY_H
29
30
31 #include <config.h>
32
33 #ifdef HAVE_WINDOWS_H
34 #  include <windows.h>                     
35 #endif
36
37 #include <GL/glut.h>
38 #include <XGL/xgl.h>
39
40 /* Handle keyboard events */
41 void GLUTkey(unsigned char k, int x, int y);
42 void GLUTspecialkey(int k, int x, int y);
43
44
45 #endif /* _GLUTKEY_H */
46
47
48 /* $Log$
49 /* Revision 1.8  1998/04/03 22:09:02  curt
50 /* Converting to Gnu autoconf system.
51 /*
52  * Revision 1.7  1998/02/12 21:59:44  curt
53  * Incorporated code changes contributed by Charlie Hotchkiss
54  * <chotchkiss@namg.us.anritsu.com>
55  *
56  * Revision 1.6  1998/01/22 02:59:36  curt
57  * Changed #ifdef FILE_H to #ifdef _FILE_H
58  *
59  * Revision 1.5  1997/07/23 21:52:23  curt
60  * Put comments around the text after an #endif for increased portability.
61  *
62  * Revision 1.4  1997/06/02 03:40:06  curt
63  * A tiny bit more view tweaking.
64  *
65  * Revision 1.3  1997/05/31 04:13:52  curt
66  * WE CAN NOW FLY!!!
67  *
68  * Continuing work on the LaRCsim flight model integration.
69  * Added some MSFS-like keyboard input handling.
70  *
71  * Revision 1.2  1997/05/23 15:40:25  curt
72  * Added GNU copyright headers.
73  * Fog now works!
74  *
75  * Revision 1.1  1997/05/21 15:57:51  curt
76  * Renamed due to added GLUT support.
77  *
78  * Revision 1.2  1997/05/17 00:17:34  curt
79  * Trying to stub in support for standard OpenGL.
80  *
81  * Revision 1.1  1997/05/16 16:05:53  curt
82  * Initial revision.
83  *
84  */