FLTK 1.3.0
|
00001 // 00002 // "$Id$" 00003 // 00004 // Event names header file for the Fast Light Tool Kit (FLTK). 00005 // 00006 // Copyright 1998-2010 by Bill Spitzak and others. 00007 // 00008 // This library is free software. Distribution and use rights are outlined in 00009 // the file "COPYING" which should have been included with this file. If this 00010 // file is missing or damaged, see the license at: 00011 // 00012 // http://www.fltk.org/COPYING.php 00013 // 00014 // Please report all bugs and problems on the following page: 00015 // 00016 // http://www.fltk.org/str.php 00017 // 00018 00019 // Thanks to Greg Ercolano for this addition. 00020 00021 #ifndef FL_NAMES_H 00022 #define FL_NAMES_H 00023 00043 const char * const fl_eventnames[] = 00044 { 00045 "FL_NO_EVENT", 00046 "FL_PUSH", 00047 "FL_RELEASE", 00048 "FL_ENTER", 00049 "FL_LEAVE", 00050 "FL_DRAG", 00051 "FL_FOCUS", 00052 "FL_UNFOCUS", 00053 "FL_KEYDOWN", 00054 "FL_KEYUP", 00055 "FL_CLOSE", 00056 "FL_MOVE", 00057 "FL_SHORTCUT", 00058 "FL_DEACTIVATE", 00059 "FL_ACTIVATE", 00060 "FL_HIDE", 00061 "FL_SHOW", 00062 "FL_PASTE", 00063 "FL_SELECTIONCLEAR", 00064 "FL_MOUSEWHEEL", 00065 "FL_DND_ENTER", 00066 "FL_DND_DRAG", 00067 "FL_DND_LEAVE", 00068 "FL_DND_RELEASE", 00069 "FL_SCREEN_CONFIGURATION_CHANGED", 00070 "FL_FULLSCREEN" 00071 }; 00072 00090 const char * const fl_fontnames[] = 00091 { 00092 "FL_HELVETICA", 00093 "FL_HELVETICA_BOLD", 00094 "FL_HELVETICA_ITALIC", 00095 "FL_HELVETICA_BOLD_ITALIC", 00096 "FL_COURIER", 00097 "FL_COURIER_BOLD", 00098 "FL_COURIER_ITALIC", 00099 "FL_COURIER_BOLD_ITALIC", 00100 "FL_TIMES", 00101 "FL_TIMES_BOLD", 00102 "FL_TIMES_ITALIC", 00103 "FL_TIMES_BOLD_ITALIC", 00104 "FL_SYMBOL", 00105 "FL_SCREEN", 00106 "FL_SCREEN_BOLD", 00107 "FL_ZAPF_DINGBATS", 00108 }; 00109 00112 #endif /* FL_NAMES_H */ 00113 00114 // 00115 // End of "$Id$". 00116 //