FLTK 1.3.0
|
00001 // 00002 // "$Id: names.h 7903 2010-11-28 21:06:39Z matt $" 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; you can redistribute it and/or 00009 // modify it under the terms of the GNU Library General Public 00010 // License as published by the Free Software Foundation; either 00011 // version 2 of the License, or (at your option) any later version. 00012 // 00013 // This library is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 // Library General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU Library General Public 00019 // License along with this library; if not, write to the Free Software 00020 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00021 // USA. 00022 // 00023 // Please report all bugs and problems on the following page: 00024 // 00025 // http://www.fltk.org/str.php 00026 // 00027 00028 // Thanks to Greg Ercolano for this addition. 00029 00030 #ifndef FL_NAMES_H 00031 #define FL_NAMES_H 00032 00052 const char * const fl_eventnames[] = 00053 { 00054 "FL_NO_EVENT", 00055 "FL_PUSH", 00056 "FL_RELEASE", 00057 "FL_ENTER", 00058 "FL_LEAVE", 00059 "FL_DRAG", 00060 "FL_FOCUS", 00061 "FL_UNFOCUS", 00062 "FL_KEYDOWN", 00063 "FL_KEYUP", 00064 "FL_CLOSE", 00065 "FL_MOVE", 00066 "FL_SHORTCUT", 00067 "FL_DEACTIVATE", 00068 "FL_ACTIVATE", 00069 "FL_HIDE", 00070 "FL_SHOW", 00071 "FL_PASTE", 00072 "FL_SELECTIONCLEAR", 00073 "FL_MOUSEWHEEL", 00074 "FL_DND_ENTER", 00075 "FL_DND_DRAG", 00076 "FL_DND_LEAVE", 00077 "FL_DND_RELEASE", 00078 }; 00079 00097 const char * const fl_fontnames[] = 00098 { 00099 "FL_HELVETICA", 00100 "FL_HELVETICA_BOLD", 00101 "FL_HELVETICA_ITALIC", 00102 "FL_HELVETICA_BOLD_ITALIC", 00103 "FL_COURIER", 00104 "FL_COURIER_BOLD", 00105 "FL_COURIER_ITALIC", 00106 "FL_COURIER_BOLD_ITALIC", 00107 "FL_TIMES", 00108 "FL_TIMES_BOLD", 00109 "FL_TIMES_ITALIC", 00110 "FL_TIMES_BOLD_ITALIC", 00111 "FL_SYMBOL", 00112 "FL_SCREEN", 00113 "FL_SCREEN_BOLD", 00114 "FL_ZAPF_DINGBATS", 00115 }; 00116 00119 #endif /* FL_NAMES_H */ 00120 00121 // 00122 // End of "$Id: names.h 7903 2010-11-28 21:06:39Z matt $". 00123 //