i3
|
00001 /* A Bison parser, made by GNU Bison 2.4.3. */ 00002 00003 /* Skeleton interface for Bison's Yacc-like parsers in C 00004 00005 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 00006 2009, 2010 Free Software Foundation, Inc. 00007 00008 This program is free software: you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation, either version 3 of the License, or 00011 (at your option) any later version. 00012 00013 This program 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 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00020 00021 /* As a special exception, you may create a larger work that contains 00022 part or all of the Bison parser skeleton and distribute that work 00023 under terms of your choice, so long as that work isn't itself a 00024 parser generator using the skeleton or a modified version thereof 00025 as a parser skeleton. Alternatively, if you modify or redistribute 00026 the parser skeleton itself, you may (at your option) remove this 00027 special exception, which will cause the skeleton and the resulting 00028 Bison output files to be licensed under the GNU General Public 00029 License without this special exception. 00030 00031 This special exception was added by the Free Software Foundation in 00032 version 2.2 of Bison. */ 00033 00034 00035 /* Tokens. */ 00036 #ifndef YYTOKENTYPE 00037 # define YYTOKENTYPE 00038 /* Put the tokens into the symbol table, so that GDB and other debuggers 00039 know about them. */ 00040 enum yytokentype { 00041 NUMBER = 258, 00042 WORD = 259, 00043 STR = 260, 00044 STR_NG = 261, 00045 HEX = 262, 00046 OUTPUT = 263, 00047 TOKBINDCODE = 264, 00048 TOKTERMINAL = 265, 00049 TOKCOMMENT = 266, 00050 TOKFONT = 267, 00051 TOKBINDSYM = 268, 00052 MODIFIER = 269, 00053 TOKCONTROL = 270, 00054 TOKSHIFT = 271, 00055 TOKFLOATING_MODIFIER = 272, 00056 QUOTEDSTRING = 273, 00057 TOKWORKSPACE = 274, 00058 TOKOUTPUT = 275, 00059 TOKASSIGN = 276, 00060 TOKSET = 277, 00061 TOKIPCSOCKET = 278, 00062 TOKRESTARTSTATE = 279, 00063 TOKEXEC = 280, 00064 TOKEXEC_ALWAYS = 281, 00065 TOKSINGLECOLOR = 282, 00066 TOKCOLOR = 283, 00067 TOKARROW = 284, 00068 TOKMODE = 285, 00069 TOK_ORIENTATION = 286, 00070 TOK_HORIZ = 287, 00071 TOK_VERT = 288, 00072 TOK_AUTO = 289, 00073 TOK_WORKSPACE_LAYOUT = 290, 00074 TOKNEWWINDOW = 291, 00075 TOK_NORMAL = 292, 00076 TOK_NONE = 293, 00077 TOK_1PIXEL = 294, 00078 TOKFOCUSFOLLOWSMOUSE = 295, 00079 TOK_FORCE_FOCUS_WRAPPING = 296, 00080 TOKWORKSPACEBAR = 297, 00081 TOK_DEFAULT = 298, 00082 TOK_STACKING = 299, 00083 TOK_TABBED = 300, 00084 TOKSTACKLIMIT = 301, 00085 TOK_POPUP_DURING_FULLSCREEN = 302, 00086 TOK_IGNORE = 303, 00087 TOK_LEAVE_FULLSCREEN = 304, 00088 TOK_FOR_WINDOW = 305, 00089 TOK_MARK = 306, 00090 TOK_CLASS = 307, 00091 TOK_ID = 308, 00092 TOK_CON_ID = 309, 00093 TOK_TITLE = 310 00094 }; 00095 #endif 00096 00097 00098 00099 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 00100 typedef union YYSTYPE 00101 { 00102 00103 /* Line 1685 of yacc.c */ 00104 #line 491 "src/cfgparse.y" 00105 00106 int number; 00107 char *string; 00108 uint32_t *single_color; 00109 struct Colortriple *color; 00110 Match *match; 00111 struct Binding *binding; 00112 00113 00114 00115 /* Line 1685 of yacc.c */ 00116 #line 117 "src/cfgparse.tab.h" 00117 } YYSTYPE; 00118 # define YYSTYPE_IS_TRIVIAL 1 00119 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 00120 # define YYSTYPE_IS_DECLARED 1 00121 #endif 00122 00123 extern YYSTYPE yylval; 00124 00125