mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 21:30:37 +00:00
RTF Parser
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5543 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ac6f996208
commit
16eefe44b2
18 changed files with 3132 additions and 7 deletions
44
Source/Parsers/rtfGrammer.tab.h
Normal file
44
Source/Parsers/rtfGrammer.tab.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
typedef union {
|
||||
int number;
|
||||
const char *text;
|
||||
RTFcmd cmd;
|
||||
} YYSTYPE;
|
||||
|
||||
#ifndef YYLTYPE
|
||||
typedef
|
||||
struct yyltype
|
||||
{
|
||||
int timestamp;
|
||||
int first_line;
|
||||
int first_column;
|
||||
int last_line;
|
||||
int last_column;
|
||||
char *text;
|
||||
}
|
||||
yyltype;
|
||||
|
||||
#define YYLTYPE yyltype
|
||||
#endif
|
||||
|
||||
#define RTFtext 257
|
||||
#define RTFstart 258
|
||||
#define RTFfont 259
|
||||
#define RTFfontSize 260
|
||||
#define RTFpaperWidth 261
|
||||
#define RTFpaperHeight 262
|
||||
#define RTFmarginLeft 263
|
||||
#define RTFmarginRight 264
|
||||
#define RTFbold 265
|
||||
#define RTFitalic 266
|
||||
#define RTFunderline 267
|
||||
#define RTFunderlineStop 268
|
||||
#define RTFOtherStatement 269
|
||||
#define RTFfontListStart 270
|
||||
#define RTFfamilyNil 271
|
||||
#define RTFfamilyRoman 272
|
||||
#define RTFfamilySwiss 273
|
||||
#define RTFfamilyModern 274
|
||||
#define RTFfamilyScript 275
|
||||
#define RTFfamilyDecor 276
|
||||
#define RTFfamilyTech 277
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue