1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00
rofi/lexer/theme-lexer.l

42 lines
1.2 KiB
Text
Raw Normal View History

2016-12-09 13:49:49 -05:00
%option noyywrap
%{
#include <stdio.h>
2016-12-09 14:04:50 -05:00
#include "lexer/theme-parser.h"
2016-12-09 13:49:49 -05:00
int yylex(void);
#define YY_DECL int yylex()
%}
%%
"@" { return CLASS;}
"\{" { return BOPEN;}
"\}" { return BCLOSE;}
":" { return PSEP; }
";" { return PCLOSE;}
"." { return NSEP; }
[ \t] ; // ignore all whitespace
2016-12-09 16:16:31 -05:00
[0-9]+\.[0-9]+ { yylval.fval = g_ascii_strtod(yytext, NULL); return T_DOUBLE;}
2016-12-09 13:49:49 -05:00
[0-9]+ { yylval.ival = (int)g_ascii_strtoll(yytext, NULL, 10); return T_INT;}
(true|false) { yylval.bval= g_strcmp0(yytext, "true") == 0; return T_BOOLEAN;}
2016-12-09 16:16:31 -05:00
[_\-a-zA-Z0-9]+ { yylval.sval = g_strdup(yytext); return N_STRING;}
\"[_\-a-zA-Z0-9 \t]+\" { yytext[yyleng-1] = '\0'; yylval.sval = g_strdup(&yytext[1]); return T_STRING;}
2016-12-10 13:48:44 -05:00
#[0-9A-Fa-f]+ {
union { unsigned int val; struct { unsigned char a,r,g,b;};} val;
val.val = (unsigned int)strtoull ( &yytext[1], NULL, 16);
yylval.colorval.alpha = val.a/255.0;
yylval.colorval.red = val.r/255.0;
yylval.colorval.green = val.g/255.0;
yylval.colorval.blue = val.b/255.0;
return T_COLOR;
}
[\r\n]+ ;
2016-12-09 13:49:49 -05:00
<*><<EOF>> {
yyterminate();
}
%%