From 4b59f90ba747e8a568ae9c11a73128e659094d07 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 18 Jan 2007 12:11:02 +0000 Subject: [PATCH] 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 --- FL/{eventnames.h => names.h} | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) rename FL/{eventnames.h => names.h} (77%) diff --git a/FL/eventnames.h b/FL/names.h similarity index 77% rename from FL/eventnames.h rename to FL/names.h index 213ad3ab1..e2c934b51 100644 --- a/FL/eventnames.h +++ b/FL/names.h @@ -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:$".