NTK 1.3.0
names.h
1//
2// "$Id: names.h 7903 2010-11-28 21:06:39Z matt $"
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; you can redistribute it and/or
9// modify it under the terms of the GNU Library General Public
10// License as published by the Free Software Foundation; either
11// version 2 of the License, or (at your option) any later version.
12//
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16// Library General Public License for more details.
17//
18// You should have received a copy of the GNU Library General Public
19// License along with this library; if not, write to the Free Software
20// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21// USA.
22//
23// Please report all bugs and problems on the following page:
24//
25// http://www.fltk.org/str.php
26//
27
28// Thanks to Greg Ercolano for this addition.
29
30#ifndef FL_NAMES_H
31#define FL_NAMES_H
32
52const char * const fl_eventnames[] =
53{
54 "FL_NO_EVENT",
55 "FL_PUSH",
56 "FL_RELEASE",
57 "FL_ENTER",
58 "FL_LEAVE",
59 "FL_DRAG",
60 "FL_FOCUS",
61 "FL_UNFOCUS",
62 "FL_KEYDOWN",
63 "FL_KEYUP",
64 "FL_CLOSE",
65 "FL_MOVE",
66 "FL_SHORTCUT",
67 "FL_DEACTIVATE",
68 "FL_ACTIVATE",
69 "FL_HIDE",
70 "FL_SHOW",
71 "FL_PASTE",
72 "FL_SELECTIONCLEAR",
73 "FL_MOUSEWHEEL",
74 "FL_DND_ENTER",
75 "FL_DND_DRAG",
76 "FL_DND_LEAVE",
77 "FL_DND_RELEASE",
78};
79
97const char * const fl_fontnames[] =
98{
99 "FL_HELVETICA",
100 "FL_HELVETICA_BOLD",
101 "FL_HELVETICA_ITALIC",
102 "FL_HELVETICA_BOLD_ITALIC",
103 "FL_COURIER",
104 "FL_COURIER_BOLD",
105 "FL_COURIER_ITALIC",
106 "FL_COURIER_BOLD_ITALIC",
107 "FL_TIMES",
108 "FL_TIMES_BOLD",
109 "FL_TIMES_ITALIC",
110 "FL_TIMES_BOLD_ITALIC",
111 "FL_SYMBOL",
112 "FL_SCREEN",
113 "FL_SCREEN_BOLD",
114 "FL_ZAPF_DINGBATS",
115};
116
119#endif /* FL_NAMES_H */
120
121//
122// End of "$Id: names.h 7903 2010-11-28 21:06:39Z matt $".
123//
const char *const fl_fontnames[]
This is an array of font names you can use to convert font numbers into names.
Definition: names.h:97
const char *const fl_eventnames[]
This is an array of event names you can use to convert event numbers into names.
Definition: names.h:52