Files
gimp/plug-ins/imagemap/imap_csim_parse.h
Sven Neumann 614bc34d59 plug-ins/imagemap/Makefile.am plug-ins/imagemap/imap_cern_parse.[ch]
2000-08-20  Sven Neumann  <sven@gimp.org>

* plug-ins/imagemap/Makefile.am
* plug-ins/imagemap/imap_cern_parse.[ch]
* plug-ins/imagemap/imap_csim_parse.[ch]
* plug-ins/imagemap/imap_ncsa_parse.[ch]: recreated from yacc
files and added those files to the distribution. Supposed to
close bugs #8076, #9212 and #10090.

* plug-ins/imagemap/imap_default_dialog.c
* plug-ins/imagemap/imap_file.c
* plug-ins/imagemap/imap_main.c: set help accelerator and window icon.
2000-08-20 18:05:04 +00:00

35 lines
608 B
C

typedef union {
int val;
double value;
char id[256];
} YYSTYPE;
#define IMG 257
#define SRC 258
#define WIDTH 259
#define HEIGHT 260
#define BORDER 261
#define USEMAP 262
#define START_MAP 263
#define END_MAP 264
#define NAME 265
#define AREA 266
#define SHAPE 267
#define COORDS 268
#define ALT 269
#define HREF 270
#define NOHREF 271
#define TARGET 272
#define ONMOUSEOVER 273
#define ONMOUSEOUT 274
#define ONFOCUS 275
#define ONBLUR 276
#define AUTHOR 277
#define DESCRIPTION 278
#define BEGIN_COMMENT 279
#define END_COMMENT 280
#define FLOAT 281
#define STRING 282
extern YYSTYPE csim_lval;