diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2007-01-18 12:11:02 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2007-01-18 12:11:02 +0000 |
| commit | 4b59f90ba747e8a568ae9c11a73128e659094d07 (patch) | |
| tree | aa04b2bd2f5aace31d530e41280e7ea11d907414 | |
| parent | 9bcf8fb046c97ca46b2e3ff7f6e31a559e06780e (diff) | |
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
| -rw-r--r-- | FL/names.h (renamed from FL/eventnames.h) | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/FL/eventnames.h b/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:$". |
