i3
src/cmdparse.tab.h
Go to the documentation of this file.
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      TOK_EXEC = 258,
00042      TOK_EXIT = 259,
00043      TOK_RELOAD = 260,
00044      TOK_RESTART = 261,
00045      TOK_KILL = 262,
00046      TOK_WINDOW = 263,
00047      TOK_CLIENT = 264,
00048      TOK_FULLSCREEN = 265,
00049      TOK_GLOBAL = 266,
00050      TOK_LAYOUT = 267,
00051      TOK_DEFAULT = 268,
00052      TOK_STACKED = 269,
00053      TOK_TABBED = 270,
00054      TOK_BORDER = 271,
00055      TOK_NORMAL = 272,
00056      TOK_NONE = 273,
00057      TOK_1PIXEL = 274,
00058      TOK_MODE = 275,
00059      TOK_TILING = 276,
00060      TOK_FLOATING = 277,
00061      TOK_MODE_TOGGLE = 278,
00062      TOK_ENABLE = 279,
00063      TOK_DISABLE = 280,
00064      TOK_WORKSPACE = 281,
00065      TOK_TOGGLE = 282,
00066      TOK_FOCUS = 283,
00067      TOK_MOVE = 284,
00068      TOK_OPEN = 285,
00069      TOK_NEXT = 286,
00070      TOK_PREV = 287,
00071      TOK_SPLIT = 288,
00072      TOK_HORIZONTAL = 289,
00073      TOK_VERTICAL = 290,
00074      TOK_UP = 291,
00075      TOK_DOWN = 292,
00076      TOK_LEFT = 293,
00077      TOK_RIGHT = 294,
00078      TOK_PARENT = 295,
00079      TOK_CHILD = 296,
00080      TOK_APPEND_LAYOUT = 297,
00081      TOK_MARK = 298,
00082      TOK_RESIZE = 299,
00083      TOK_GROW = 300,
00084      TOK_SHRINK = 301,
00085      TOK_PX = 302,
00086      TOK_OR = 303,
00087      TOK_PPT = 304,
00088      TOK_NOP = 305,
00089      TOK_CLASS = 306,
00090      TOK_ID = 307,
00091      TOK_CON_ID = 308,
00092      TOK_TITLE = 309,
00093      STR = 310,
00094      NUMBER = 311
00095    };
00096 #endif
00097 
00098 
00099 
00100 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
00101 typedef union YYSTYPE
00102 {
00103 
00104 /* Line 1685 of yacc.c  */
00105 #line 114 "src/cmdparse.y"
00106 
00107     char *string;
00108     char chr;
00109     int number;
00110 
00111 
00112 
00113 /* Line 1685 of yacc.c  */
00114 #line 115 "src/cmdparse.tab.h"
00115 } YYSTYPE;
00116 # define YYSTYPE_IS_TRIVIAL 1
00117 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
00118 # define YYSTYPE_IS_DECLARED 1
00119 #endif
00120 
00121 extern YYSTYPE cmdyylval;
00122 
00123