FLTK 1.3.2
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
names.h
1
//
2
// "$Id: names.h 9299 2012-03-23 16:47:53Z manolo $"
3
//
4
// Event names header file for the Fast Light Tool Kit (FLTK).
5
//
6
// Copyright 1998-2010 by Bill Spitzak and others.
7
//
8
// This library is free software. Distribution and use rights are outlined in
9
// the file "COPYING" which should have been included with this file. If this
10
// file is missing or damaged, see the license at:
11
//
12
// http://www.fltk.org/COPYING.php
13
//
14
// Please report all bugs and problems on the following page:
15
//
16
// http://www.fltk.org/str.php
17
//
18
19
// Thanks to Greg Ercolano for this addition.
20
21
#ifndef FL_NAMES_H
22
#define FL_NAMES_H
23
43
const
char
*
const
fl_eventnames
[] =
44
{
45
"FL_NO_EVENT"
,
46
"FL_PUSH"
,
47
"FL_RELEASE"
,
48
"FL_ENTER"
,
49
"FL_LEAVE"
,
50
"FL_DRAG"
,
51
"FL_FOCUS"
,
52
"FL_UNFOCUS"
,
53
"FL_KEYDOWN"
,
54
"FL_KEYUP"
,
55
"FL_CLOSE"
,
56
"FL_MOVE"
,
57
"FL_SHORTCUT"
,
58
"FL_DEACTIVATE"
,
59
"FL_ACTIVATE"
,
60
"FL_HIDE"
,
61
"FL_SHOW"
,
62
"FL_PASTE"
,
63
"FL_SELECTIONCLEAR"
,
64
"FL_MOUSEWHEEL"
,
65
"FL_DND_ENTER"
,
66
"FL_DND_DRAG"
,
67
"FL_DND_LEAVE"
,
68
"FL_DND_RELEASE"
,
69
"FL_SCREEN_CONFIGURATION_CHANGED"
,
70
"FL_FULLSCREEN"
71
};
72
90
const
char
*
const
fl_fontnames
[] =
91
{
92
"FL_HELVETICA"
,
93
"FL_HELVETICA_BOLD"
,
94
"FL_HELVETICA_ITALIC"
,
95
"FL_HELVETICA_BOLD_ITALIC"
,
96
"FL_COURIER"
,
97
"FL_COURIER_BOLD"
,
98
"FL_COURIER_ITALIC"
,
99
"FL_COURIER_BOLD_ITALIC"
,
100
"FL_TIMES"
,
101
"FL_TIMES_BOLD"
,
102
"FL_TIMES_ITALIC"
,
103
"FL_TIMES_BOLD_ITALIC"
,
104
"FL_SYMBOL"
,
105
"FL_SCREEN"
,
106
"FL_SCREEN_BOLD"
,
107
"FL_ZAPF_DINGBATS"
,
108
};
109
112
#endif
/* FL_NAMES_H */
113
114
//
115
// End of "$Id: names.h 9299 2012-03-23 16:47:53Z manolo $".
116
//
© 1998-2012 by Bill Spitzak and others.