]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.h
Prepairing for C++ integration.
[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 #ifdef __cplusplus                                                          
32 extern "C" {                            
33 #endif                                   
34
35
36 #include <config.h>
37
38 #ifdef HAVE_WINDOWS_H
39 #  include <windows.h>                     
40 #endif
41
42 #include <GL/glut.h>
43 #include <XGL/xgl.h>
44
45 /* Handle keyboard events */
46 void GLUTkey(unsigned char k, int x, int y);
47 void GLUTspecialkey(int k, int x, int y);
48
49
50 #ifdef __cplusplus
51 }
52 #endif
53
54
55 #endif /* _GLUTKEY_H */
56
57
58 /* $Log$
59 /* Revision 1.9  1998/04/21 17:02:36  curt
60 /* Prepairing for C++ integration.
61 /*
62  * Revision 1.8  1998/04/03 22:09:02  curt
63  * Converting to Gnu autoconf system.
64  *
65  * Revision 1.7  1998/02/12 21:59:44  curt
66  * Incorporated code changes contributed by Charlie Hotchkiss
67  * <chotchkiss@namg.us.anritsu.com>
68  *
69  * Revision 1.6  1998/01/22 02:59:36  curt
70  * Changed #ifdef FILE_H to #ifdef _FILE_H
71  *
72  * Revision 1.5  1997/07/23 21:52:23  curt
73  * Put comments around the text after an #endif for increased portability.
74  *
75  * Revision 1.4  1997/06/02 03:40:06  curt
76  * A tiny bit more view tweaking.
77  *
78  * Revision 1.3  1997/05/31 04:13:52  curt
79  * WE CAN NOW FLY!!!
80  *
81  * Continuing work on the LaRCsim flight model integration.
82  * Added some MSFS-like keyboard input handling.
83  *
84  * Revision 1.2  1997/05/23 15:40:25  curt
85  * Added GNU copyright headers.
86  * Fog now works!
87  *
88  * Revision 1.1  1997/05/21 15:57:51  curt
89  * Renamed due to added GLUT support.
90  *
91  * Revision 1.2  1997/05/17 00:17:34  curt
92  * Trying to stub in support for standard OpenGL.
93  *
94  * Revision 1.1  1997/05/16 16:05:53  curt
95  * Initial revision.
96  *
97  */