]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.hxx
MSVC++ portability tweaks contributed by Bernie Bright.
[flightgear.git] / Main / GLUTkey.hxx
1 // GLUTkey.hxx -- handle GLUT keyboard events
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifndef _GLUTKEY_HXX
26 #define _GLUTKEY_HXX
27
28
29 #ifndef __cplusplus                                                          
30 # error This library requires C++
31 #endif                                   
32
33
34 #ifdef HAVE_CONFIG_H
35 #  include <config.h>
36 #endif
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
46 // Handle keyboard events
47 void GLUTkey(unsigned char k, int x, int y);
48 void GLUTspecialkey(int k, int x, int y);
49
50
51 #endif // _GLUTKEY_HXX
52
53
54 // $Log$
55 // Revision 1.4  1999/03/12 22:51:53  curt
56 // Converted to C++ style comments.
57 //
58 // Revision 1.3  1999/03/11 23:09:47  curt
59 // When "Help" is selected from the menu check to see if netscape is running.
60 // If so, command it to go to the flight gear user guide url.  Otherwise
61 // start a new version of netscape with this url.
62 //
63 // Revision 1.2  1998/04/24 00:49:18  curt
64 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
65 // Trying out some different option parsing code.
66 // Some code reorganization.
67 //
68 // Revision 1.1  1998/04/22 13:25:41  curt
69 // C++ - ifing the code.
70 // Starting a bit of reorganization of lighting code.
71 //
72 // Revision 1.9  1998/04/21 17:02:36  curt
73 // Prepairing for C++ integration.
74 //
75 // Revision 1.8  1998/04/03 22:09:02  curt
76 // Converting to Gnu autoconf system.
77 //
78 // Revision 1.7  1998/02/12 21:59:44  curt
79 // Incorporated code changes contributed by Charlie Hotchkiss
80 // <chotchkiss@namg.us.anritsu.com>
81 //
82 // Revision 1.6  1998/01/22 02:59:36  curt
83 // Changed #ifdef FILE_H to #ifdef _FILE_H
84 //
85 // Revision 1.5  1997/07/23 21:52:23  curt
86 // Put comments around the text after an #endif for increased portability.
87 //
88 // Revision 1.4  1997/06/02 03:40:06  curt
89 // A tiny bit more view tweaking.
90 //
91 // Revision 1.3  1997/05/31 04:13:52  curt
92 // WE CAN NOW FLY!!!
93 //
94 // Continuing work on the LaRCsim flight model integration.
95 // Added some MSFS-like keyboard input handling.
96 //
97 // Revision 1.2  1997/05/23 15:40:25  curt
98 // Added GNU copyright headers.
99 // Fog now works!
100 //
101 // Revision 1.1  1997/05/21 15:57:51  curt
102 // Renamed due to added GLUT support.
103 //
104 // Revision 1.2  1997/05/17 00:17:34  curt
105 // Trying to stub in support for standard OpenGL.
106 //
107 // Revision 1.1  1997/05/16 16:05:53  curt
108 // Initial revision.
109 //
110