From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- kdeprint/ppdscanner.l | 141 -------------------------------------------------- 1 file changed, 141 deletions(-) delete mode 100644 kdeprint/ppdscanner.l (limited to 'kdeprint/ppdscanner.l') diff --git a/kdeprint/ppdscanner.l b/kdeprint/ppdscanner.l deleted file mode 100644 index ba60ee2f6..000000000 --- a/kdeprint/ppdscanner.l +++ /dev/null @@ -1,141 +0,0 @@ -%{ -/* - * This file is part of the KDE libraries - * Copyright (c) 2001-2003 Michael Goffioul - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License version 2 as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - **/ - -#include -#include -#define YYSTYPE TQStringList -#include "ppdparser.cpp.h" - -#define yylval tdeprint_ppdlval - -QIODevice *tdeprint_ppdscanner_device = NULL; -#define YY_INPUT(buf,result,max_size) \ - { \ - if (tdeprint_ppdscanner_device) \ - { \ - result = tdeprint_ppdscanner_device->readBlock(buf,max_size); \ - if (result < 0) \ - result = 0; \ - } \ - else \ - result = 0; \ - } -int tdeprint_ppdscanner_lno = 0; - -#if 0 -#define QDEBUG0(s) qDebug(s) -#define QDEBUG1(s,a) qDebug(s,a) -#else -#define QDEBUG0(s) -#define QDEBUG1(s,a) -#endif -%} - -%x option value translation_1 translation_2 constr -%option noyywrap - -WORD [^:/\x00-\x20\x7F-\xFF]+ -WORD2 [^:/\x00-\x20\x7F-\xFF\*]+ -WORD3 [^:/\x00-\x20\x7F-\xFF][^:/\x00-\x1F\x7F-\xFF]* -L [[:alnum:]] - -%% - - /** - * Initial state - */ -\*"JCLOpenUI" | -\*"OpenUI"{L}* { QDEBUG0("Open UI"); BEGIN(option); return OPENUI; } -\*"JCLCloseUI" | -\*"CloseUI"{L}* { QDEBUG0("Close UI"); BEGIN(value); return CLOSEUI; } -\*"OpenGroup" { QDEBUG0("Open group"); BEGIN(option); return OPENGROUP; } -\*"CloseGroup" { QDEBUG0("Close group"); BEGIN(option); return CLOSEGROUP; } -\*"Default"\*{WORD} { yylval = yytext+9; BEGIN(option); return DEFAULT; } -\*"Default"{WORD} { yylval = yytext+8; BEGIN(option); return DEFAULT; } -\*"UIConstraints" | -\*"NonUIConstraints" { BEGIN(constr); return CONSTRAINT; } -\*"PaperDimension" { BEGIN(option); return PAPERDIM; } -\*"ImageableArea" { BEGIN(option); return IMGAREA; } -\*"End" { /* eat up */ } - -"*% COMDATA #".*$ { yylval = yytext+12; return FOODATA; } -\*%.* { QDEBUG0("Comment"); return COMMENT; } -\*{WORD} { yylval = yytext+1; QDEBUG1("Main keyword: %s",yytext+1); BEGIN(option); return KEYWORD; } - - /** - * Option state - */ -