Added "names.h" in "FL" to support developer output of event names etc. . This file is never compiled into the executable unless specifically added by the developer.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5612 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2007-01-18 12:11:02 +00:00
parent 9bcf8fb046
commit 4b59f90ba7

View File

@ -27,8 +27,9 @@
// Thnaks to Greg Ercolano for this addition.
#ifndef FL_EVENTNAMES_H
#define FL_EVENTNAMES_H
#ifndef FL_NAMES_H
#define FL_NAMES_H
char *fl_eventnames[] =
{
"FL_NO_EVENT",
@ -56,7 +57,28 @@ char *fl_eventnames[] =
"FL_DND_LEAVE",
"FL_DND_RELEASE",
};
#endif /* FL_EVENTNAMES_H */
char *fl_fontnames[] =
{
"FL_HELVETICA",
"FL_HELVETICA_BOLD",
"FL_HELVETICA_ITALIC",
"FL_HELVETICA_BOLD_ITALIC",
"FL_COURIER",
"FL_COURIER_BOLD",
"FL_COURIER_ITALIC",
"FL_COURIER_BOLD_ITALIC",
"FL_TIMES",
"FL_TIMES_BOLD",
"FL_TIMES_ITALIC",
"FL_TIMES_BOLD_ITALIC",
"FL_SYMBOL",
"FL_SCREEN",
"FL_SCREEN_BOLD",
"FL_ZAPF_DINGBATS",
};
#endif /* FL_NAMES_H */
//
// End of "$Id:$".