]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_os.hxx
dfe26f42624549a5281b4a18f36ff5e443249485
[flightgear.git] / src / Main / fg_os.hxx
1 #ifndef _FG_OS_HXX
2 #define _FG_OS_HXX
3
4 // Plib pui needs to know at compile time what toolkit is in use.
5 // Change this when we move to something other than glut.
6 // #define PU_USE_GLUT -- moved to configure.ac -- EMH
7 #ifdef HAVE_CONFIG_H
8 #  include <config.h>
9 #endif
10
11
12 enum { MOUSE_BUTTON_LEFT,
13        MOUSE_BUTTON_MIDDLE,
14        MOUSE_BUTTON_RIGHT };
15
16 enum { MOUSE_BUTTON_DOWN,
17        MOUSE_BUTTON_UP };
18
19 enum { MOUSE_CURSOR_NONE,
20        MOUSE_CURSOR_POINTER,
21        MOUSE_CURSOR_WAIT,
22        MOUSE_CURSOR_CROSSHAIR,
23        MOUSE_CURSOR_LEFTRIGHT };
24
25 enum { KEYMOD_NONE     = 0,
26        KEYMOD_RELEASED = 1, // Not a mod key, indicates "up" action
27        KEYMOD_SHIFT    = 2,
28        KEYMOD_CTRL     = 4,
29        KEYMOD_ALT      = 8,
30        KEYMOD_MAX      = 16 };
31
32 // A note on key codes: none are defined here.  FlightGear has no
33 // hard-coded interpretations of codes other than modifier keys, so we
34 // can get away with that.  The only firm requirement is that the
35 // codes passed to the fgKeyHandler function be correctly interpreted
36 // by the PUI library.  Users who need to hard-code key codes
37 // (probably not a good idea in any case) can use the pu.hxx header
38 // for definitions.
39
40 //
41 // OS integration functions
42 //
43
44 void fgOSInit(int* argc, char** argv);
45 void fgOSOpenWindow(int w, int h, int bpp, bool alpha, bool stencil,
46                     bool fullscreen);
47 void fgOSFullScreen();
48 void fgOSMainLoop();
49
50 void fgSetMouseCursor(int cursor);
51 int  fgGetMouseCursor();
52 void fgWarpMouse(int x, int y);
53
54 int  fgGetKeyModifiers();
55
56 void fgRequestRedraw();
57
58 //
59 // Callbacks and registration API
60 //
61
62 typedef void (*fgIdleHandler)();
63 typedef void (*fgDrawHandler)();
64 typedef void (*fgWindowResizeHandler)(int w, int h);
65
66 typedef void (*fgKeyHandler)(int key, int keymod, int mousex, int mousey);
67 typedef void (*fgMouseClickHandler)(int button, int updown, int x, int y);
68 typedef void (*fgMouseMotionHandler)(int x, int y);
69
70 void fgRegisterIdleHandler(fgIdleHandler func);
71 void fgRegisterDrawHandler(fgDrawHandler func);
72 void fgRegisterWindowResizeHandler(fgWindowResizeHandler func);
73
74 void fgRegisterKeyHandler(fgKeyHandler func);
75 void fgRegisterMouseClickHandler(fgMouseClickHandler func);
76 void fgRegisterMouseMotionHandler(fgMouseMotionHandler func);
77
78 #endif // _FG_OS_HXX