i3
|
00001 /* A Bison parser, made by GNU Bison 2.5. */ 00002 00003 /* Bison interface for Yacc-like parsers in C 00004 00005 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. 00006 00007 This program is free software: you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation, either version 3 of the License, or 00010 (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00019 00020 /* As a special exception, you may create a larger work that contains 00021 part or all of the Bison parser skeleton and distribute that work 00022 under terms of your choice, so long as that work isn't itself a 00023 parser generator using the skeleton or a modified version thereof 00024 as a parser skeleton. Alternatively, if you modify or redistribute 00025 the parser skeleton itself, you may (at your option) remove this 00026 special exception, which will cause the skeleton and the resulting 00027 Bison output files to be licensed under the GNU General Public 00028 License without this special exception. 00029 00030 This special exception was added by the Free Software Foundation in 00031 version 2.2 of Bison. */ 00032 00033 00034 /* Tokens. */ 00035 #ifndef YYTOKENTYPE 00036 # define YYTOKENTYPE 00037 /* Put the tokens into the symbol table, so that GDB and other debuggers 00038 know about them. */ 00039 enum yytokentype { 00040 TOK_EXEC = 258, 00041 TOK_EXIT = 259, 00042 TOK_RELOAD = 260, 00043 TOK_RESTART = 261, 00044 TOK_KILL = 262, 00045 TOK_WINDOW = 263, 00046 TOK_CLIENT = 264, 00047 TOK_FULLSCREEN = 265, 00048 TOK_GLOBAL = 266, 00049 TOK_LAYOUT = 267, 00050 TOK_DEFAULT = 268, 00051 TOK_STACKED = 269, 00052 TOK_TABBED = 270, 00053 TOK_BORDER = 271, 00054 TOK_NORMAL = 272, 00055 TOK_NONE = 273, 00056 TOK_1PIXEL = 274, 00057 TOK_MODE = 275, 00058 TOK_TILING = 276, 00059 TOK_FLOATING = 277, 00060 TOK_MODE_TOGGLE = 278, 00061 TOK_ENABLE = 279, 00062 TOK_DISABLE = 280, 00063 TOK_WORKSPACE = 281, 00064 TOK_OUTPUT = 282, 00065 TOK_TOGGLE = 283, 00066 TOK_FOCUS = 284, 00067 TOK_MOVE = 285, 00068 TOK_OPEN = 286, 00069 TOK_NEXT = 287, 00070 TOK_PREV = 288, 00071 TOK_SPLIT = 289, 00072 TOK_HORIZONTAL = 290, 00073 TOK_VERTICAL = 291, 00074 TOK_UP = 292, 00075 TOK_DOWN = 293, 00076 TOK_LEFT = 294, 00077 TOK_RIGHT = 295, 00078 TOK_PARENT = 296, 00079 TOK_CHILD = 297, 00080 TOK_APPEND_LAYOUT = 298, 00081 TOK_MARK = 299, 00082 TOK_RESIZE = 300, 00083 TOK_GROW = 301, 00084 TOK_SHRINK = 302, 00085 TOK_PX = 303, 00086 TOK_OR = 304, 00087 TOK_PPT = 305, 00088 TOK_NOP = 306, 00089 TOK_BACK_AND_FORTH = 307, 00090 TOK_NO_STARTUP_ID = 308, 00091 TOK_CLASS = 309, 00092 TOK_INSTANCE = 310, 00093 TOK_WINDOW_ROLE = 311, 00094 TOK_ID = 312, 00095 TOK_CON_ID = 313, 00096 TOK_TITLE = 314, 00097 STR = 315, 00098 NUMBER = 316 00099 }; 00100 #endif 00101 00102 00103 00104 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 00105 typedef union YYSTYPE 00106 { 00107 00108 /* Line 2068 of yacc.c */ 00109 #line 121 "src/cmdparse.y" 00110 00111 char *string; 00112 char chr; 00113 int number; 00114 00115 00116 00117 /* Line 2068 of yacc.c */ 00118 #line 119 "src/cmdparse.tab.h" 00119 } YYSTYPE; 00120 # define YYSTYPE_IS_TRIVIAL 1 00121 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 00122 # define YYSTYPE_IS_DECLARED 1 00123 #endif 00124 00125 extern YYSTYPE cmdyylval; 00126 00127