path:
root/
src/
controller/
callbacks/
keyboard.c (
plain)
blob: 28bea811fc682f5e66e0067992a5ac289cf4c604
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#include "keyboard.h"
#include "../actions/clear_selection.h"
#include "../actions/selection_from_db.h"
#include "reshape.h"
#include "../../view/state0.h"
#include <GL/glut.h>
#define S state0
void
keyboard (unsigned char key, int x, int y)
{
switch (key)
{
case 27:
/*
* ESC Pressed.
*/
clear_selection ();
glutPostRedisplay ();
break;
case 'g':
/*
* g has been pressed. This is used to load a selection from
* the database since it is the convention to use g for
* refreshing a buffer in Emacs.
*/
selection_from_db ();
glutPostRedisplay ();
break;
case 'l':
/*
* Toggle display of the legend.
*/
S.legend = !S.legend;
glutPostRedisplay ();
break;
case 'r':
/*
* Reset the view (unzoom).
*/
S.zoom.active = false;
reshape (S.viewport.w, S.viewport.h);
glutPostRedisplay ();
break;
case 's':
/*
* Selection will be used to define a set.
*/
S.selection.purpose = SET;
break;
case 'z':
/*
* Selection will be use to zoom.
*/
S.selection.purpose = ZOOM;
break;
}
return;
}
|