Mixer: Fix receiving of direct OSC messages.
[nondaw.git] / FL / event_name.C
blobd53ab98774ab032e9170541c0b6460591bc6de7f
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
20 static const char *event_names[] =
22     "FL_NO_EVENT",
23     "FL_PUSH",
24     "FL_RELEASE",
25     "FL_ENTER",
26     "FL_LEAVE",
27     "FL_DRAG",
28     "FL_FOCUS",
29     "FL_UNFOCUS",
30     "FL_KEYDOWN",
31     "FL_KEYUP",
32     "FL_CLOSE",
33     "FL_MOVE",
34     "FL_SHORTCUT",
35     "FL_DEACTIVATE",
36     "FL_ACTIVATE",
37     "FL_HIDE",
38     "FL_SHOW",
39     "FL_PASTE",
40     "FL_SELECTIONCLEAR",
41     "FL_MOUSEWHEEL",
42     "FL_DND_ENTER",
43     "FL_DND_DRAG",
44     "FL_DND_LEAVE",
45     "FL_DND_RELEASE",
48 const char *
49 event_name ( int m )
51     return event_names[ m ];