parser.y 72.8 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2
%{
/*
3 4 5
 * Copyright 1994	Martin von Loewis
 * Copyright 1998-2000	Bertho A. Stultiens (BS)
 *           1999	Juergen Schmied (JS)
Alexandre Julliard's avatar
Alexandre Julliard committed
6
 *
7 8 9 10 11 12 13 14 15 16 17 18
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21
 *
 * History:
22 23
 * 24-Jul-2000 BS	- Made a fix for broken Berkeley yacc on
 *			  non-terminals (see cjunk rule).
24 25
 * 21-May-2000 BS	- Partial implementation of font resources.
 *			- Corrected language propagation for binary
Andreas Mohr's avatar
Andreas Mohr committed
26
 *			  resources such as bitmaps, icons, cursors,
27 28 29 30 31 32
 *			  userres and rcdata. The language is now
 *			  correct in .res files.
 *			- Fixed reading the resource name as ident,
 *			  so that it may overlap keywords.
 * 20-May-2000 BS	- Implemented animated cursors and icons
 *			  resource types.
33 34 35 36
 * 30-Apr-2000 BS	- Reintegration into the wine-tree
 * 14-Jan-2000 BS	- Redid the usertype resources so that they
 *			  are compatible.
 * 02-Jan-2000 BS	- Removed the preprocessor from the grammar
37
 *			  except for the # command (line numbers).
38 39
 *
 * 06-Nov-1999 JS	- see CHANGES
40
 *
41
 * 29-Dec-1998 AdH	- Grammar and function extensions.
42
 *			     grammar: TOOLBAR resources, Named ICONs in
43
 *				DIALOGS
44
 *			     functions: semantic actions for the grammar
45 46 47 48
 *				changes, resource files can now be anywhere
 *				on the include path instead of just in the
 *				current directory
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
49 50 51 52 53 54
 * 20-Jun-1998 BS	- Fixed a bug in load_file() where the name was not
 *			  printed out correctly.
 *
 * 17-Jun-1998 BS	- Fixed a bug in CLASS statement parsing which should
 *			  also accept a tSTRING as argument.
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
 * 25-May-1998 BS	- Found out that I need to support language, version
 *			  and characteristics in inline resources (bitmap,
 *			  cursor, etc) but they can also be specified with
 *			  a filename. This renders my filename-scanning scheme
 *			  worthless. Need to build newline parsing to solve
 *			  this one.
 *			  It will come with version 1.1.0 (sigh).
 *
 * 19-May-1998 BS	- Started to build a builtin preprocessor
 *
 * 30-Apr-1998 BS	- Redid the stringtable parsing/handling. My previous
 *			  ideas had some serious flaws.
 *
 * 27-Apr-1998 BS	- Removed a lot of dead comments and put it in a doc
 *			  file.
 *
 * 21-Apr-1998 BS	- Added correct behavior for cursors and icons.
 *			- This file is growing too big. It is time to strip
 *			  things and put it in a support file.
 *
 * 19-Apr-1998 BS	- Tagged the stringtable resource so that only one
 *			  resource will be created. This because the table
 *			  has a different layout than other resources. The
 *			  table has to be sorted, and divided into smaller
 *			  resource entries (see comment in source).
 *
 * 17-Apr-1998 BS	- Almost all strings, including identifiers, are parsed
 *			  as string_t which include unicode strings upon
 *			  input.
 *			- Parser now emits a warning when compiling win32
 *			  extensions in win16 mode.
 *
Francois Gouget's avatar
Francois Gouget committed
87
 * 16-Apr-1998 BS	- Raw data elements are now *optionally* separated
Alexandre Julliard's avatar
Alexandre Julliard committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
 *			  by commas. Read the comments in file sq2dq.l.
 *			- FIXME: there are instances in the source that rely
 *			  on the fact that int==32bit and pointers are int size.
 *			- Fixed the conflict in menuex by changing a rule
 *			  back into right recursion. See note in source.
 *			- UserType resources cannot have an expression as its
 *			  typeclass. See note in source.
 *
 * 15-Apr-1998 BS	- Changed all right recursion into left recursion to
 *			  get reduction of the parsestack.
 *			  This also helps communication between bison and flex.
 *			  Main advantage is that the Empty rule gets reduced
 *			  first, which is used to allocate/link things.
 *			  It also added a shift/reduce conflict in the menuex
 *			  handling, due to expression/option possibility,
 *			  although not serious.
 *
 * 14-Apr-1998 BS	- Redone almost the entire parser. We're not talking
 *			  about making it more efficient, but readable (for me)
 *			  and slightly easier to expand/change.
 *			  This is done primarily by using more reduce states
 *			  with many (intuitive) types for the various resource
 *			  statements.
 *			- Added expression handling for all resources where a
 *			  number is accepted (not only for win32). Also added
 *			  multiply and division (not MS compatible, but handy).
 *			  Unary minus introduced a shift/reduce conflict, but
 *			  it is not serious.
 *
 * 13-Apr-1998 BS	- Reordered a lot of things
 *			- Made the source more readable
 *			- Added Win32 resource definitions
 *			- Corrected syntax problems with an old yacc (;)
 *			- Added extra comment about grammar
 */
123

Patrik Stridvall's avatar
Patrik Stridvall committed
124 125
#include "config.h"

Alexandre Julliard's avatar
Alexandre Julliard committed
126 127 128 129 130
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <assert.h>
#include <ctype.h>
131
#include <string.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
132

133
#include "../tools.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
134 135 136 137
#include "wrc.h"
#include "utils.h"
#include "newstruc.h"
#include "dumpres.h"
138
#include "wpp_private.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
139
#include "parser.h"
140
#include "windef.h"
141
#include "winbase.h"
142
#include "wingdi.h"
143
#include "winuser.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
144

145
int want_nl = 0;	/* Signal flex that we need the next newline */
146
int want_id = 0;	/* Signal flex that we need the next identifier */
147
static stringtable_t *tagstt;	/* Stringtable tag.
Alexandre Julliard's avatar
Alexandre Julliard committed
148 149 150 151
			 * It is set while parsing a stringtable to one of
			 * the stringtables in the sttres list or a new one
			 * if the language was not parsed before.
			 */
152
static stringtable_t *sttres;	/* Stringtable resources. This holds the list of
Alexandre Julliard's avatar
Alexandre Julliard committed
153 154
			 * stringtables with different lanuages
			 */
155 156
static int dont_want_id = 0;	/* See language parsing for details */

Alexandre Julliard's avatar
Alexandre Julliard committed
157 158 159 160 161
/* Set to the current options of the currently scanning stringtable */
static int *tagstt_memopt;
static characts_t *tagstt_characts;
static version_t *tagstt_version;

162 163
static const char riff[4] = "RIFF";	/* RIFF file magic for animated cursor/icon */

Alexandre Julliard's avatar
Alexandre Julliard committed
164
/* Prototypes of here defined functions */
165 166 167 168 169 170 171 172 173 174 175 176 177
static event_t *get_event_head(event_t *p);
static control_t *get_control_head(control_t *p);
static ver_value_t *get_ver_value_head(ver_value_t *p);
static ver_block_t *get_ver_block_head(ver_block_t *p);
static resource_t *get_resource_head(resource_t *p);
static menu_item_t *get_item_head(menu_item_t *p);
static raw_data_t *merge_raw_data_str(raw_data_t *r1, string_t *str);
static raw_data_t *merge_raw_data_int(raw_data_t *r1, int i);
static raw_data_t *merge_raw_data_long(raw_data_t *r1, int i);
static raw_data_t *merge_raw_data(raw_data_t *r1, raw_data_t *r2);
static raw_data_t *str2raw_data(string_t *str);
static raw_data_t *int2raw_data(int i);
static raw_data_t *long2raw_data(int i);
178
static raw_data_t *load_file(string_t *name, language_t *lang);
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
static itemex_opt_t *new_itemex_opt(int id, int type, int state, int helpid);
static event_t *add_string_event(string_t *key, int id, int flags, event_t *prev);
static event_t *add_event(int key, int id, int flags, event_t *prev);
static name_id_t *convert_ctlclass(name_id_t *cls);
static control_t *ins_ctrl(int type, int special_style, control_t *ctrl, control_t *prev);
static dialog_t *dialog_version(version_t *v, dialog_t *dlg);
static dialog_t *dialog_characteristics(characts_t *c, dialog_t *dlg);
static dialog_t *dialog_language(language_t *l, dialog_t *dlg);
static dialog_t *dialog_menu(name_id_t *m, dialog_t *dlg);
static dialog_t *dialog_class(name_id_t *n, dialog_t *dlg);
static dialog_t *dialog_font(font_id_t *f, dialog_t *dlg);
static dialog_t *dialog_caption(string_t *s, dialog_t *dlg);
static dialog_t *dialog_exstyle(style_t * st, dialog_t *dlg);
static dialog_t *dialog_style(style_t * st, dialog_t *dlg);
static resource_t *build_stt_resources(stringtable_t *stthead);
static stringtable_t *find_stringtable(lvc_t *lvc);
static toolbar_item_t *ins_tlbr_button(toolbar_item_t *prev, toolbar_item_t *idrec);
static toolbar_item_t *get_tlbr_buttons_head(toolbar_item_t *p, int *nitems);
static string_t *make_filename(string_t *s);
198 199
static resource_t *build_fontdirs(resource_t *tail);
static resource_t *build_fontdir(resource_t **fnt, int nfnt);
200
static int rsrcid_to_token(int lookahead);
Alexandre Julliard's avatar
Alexandre Julliard committed
201 202 203 204 205 206

%}
%union{
	string_t	*str;
	int		num;
	int		*iptr;
207
	char		*cptr;
Alexandre Julliard's avatar
Alexandre Julliard committed
208 209 210 211 212
	resource_t	*res;
	accelerator_t	*acc;
	bitmap_t	*bmp;
	dialog_t	*dlg;
	font_t		*fnt;
213
	fontdir_t	*fnd;
Alexandre Julliard's avatar
Alexandre Julliard committed
214
	menu_t		*men;
215
	html_t		*html;
Alexandre Julliard's avatar
Alexandre Julliard committed
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	rcdata_t	*rdt;
	stringtable_t	*stt;
	stt_entry_t	*stte;
	user_t		*usr;
	messagetable_t	*msg;
	versioninfo_t	*veri;
	control_t	*ctl;
	name_id_t	*nid;
	font_id_t	*fntid;
	language_t	*lan;
	version_t	*ver;
	characts_t	*chars;
	event_t		*event;
	menu_item_t	*menitm;
	itemex_opt_t	*exopt;
	raw_data_t	*raw;
	lvc_t		*lvc;
	ver_value_t	*val;
	ver_block_t	*blk;
	ver_words_t	*verw;
236 237
	toolbar_t	*tlbar;
	toolbar_item_t	*tlbarItems;
238 239
	dlginit_t       *dginit;
	style_pair_t	*styles;
240
	style_t		*style;
241
	ani_any_t	*ani;
Alexandre Julliard's avatar
Alexandre Julliard committed
242 243
}

244
%token tNL
245
%token <num> tNUMBER tLNUMBER
246
%token <str> tSTRING tIDENT
247 248
%token <raw> tRAWDATA
%token tACCELERATORS tBITMAP tCURSOR tDIALOG tDIALOGEX tMENU tMENUEX tMESSAGETABLE
249
%token tRCDATA tVERSIONINFO tSTRINGTABLE tFONT tFONTDIR tICON tHTML
250 251 252 253 254 255 256 257 258 259 260 261 262
%token tAUTO3STATE tAUTOCHECKBOX tAUTORADIOBUTTON tCHECKBOX tDEFPUSHBUTTON
%token tPUSHBUTTON tRADIOBUTTON tSTATE3 /* PUSHBOX */
%token tGROUPBOX tCOMBOBOX tLISTBOX tSCROLLBAR
%token tCONTROL tEDITTEXT
%token tRTEXT tCTEXT tLTEXT
%token tBLOCK tVALUE
%token tSHIFT tALT tASCII tVIRTKEY tGRAYED tCHECKED tINACTIVE tNOINVERT
%token tPURE tIMPURE tDISCARDABLE tLOADONCALL tPRELOAD tFIXED tMOVEABLE
%token tCLASS tCAPTION tCHARACTERISTICS tEXSTYLE tSTYLE tVERSION tLANGUAGE
%token tFILEVERSION tPRODUCTVERSION tFILEFLAGSMASK tFILEOS tFILETYPE tFILEFLAGS tFILESUBTYPE
%token tMENUBARBREAK tMENUBREAK tMENUITEM tPOPUP tSEPARATOR
%token tHELP
%token tTOOLBAR tBUTTON
Alexandre Julliard's avatar
Alexandre Julliard committed
263
%token tBEGIN tEND
264
%token tDLGINIT
Alexandre Julliard's avatar
Alexandre Julliard committed
265 266 267 268 269
%left '|'
%left '^'
%left '&'
%left '+' '-'
%left '*' '/'
270 271
%right '~' tNOT
%left pUPM
Alexandre Julliard's avatar
Alexandre Julliard committed
272 273 274 275

%type <res> 	resource_file resource resources resource_definition
%type <stt>	stringtable strings
%type <fnt>	font
276
%type <fnd>	fontdir
Alexandre Julliard's avatar
Alexandre Julliard committed
277 278 279
%type <acc> 	accelerators
%type <event> 	events
%type <bmp> 	bitmap
280
%type <ani> 	cursor icon
281
%type <dlg> 	dialog dlg_attributes dialogex dlgex_attribs
Alexandre Julliard's avatar
Alexandre Julliard committed
282
%type <ctl> 	ctrls gen_ctrl lab_ctrl ctrl_desc iconinfo
283
%type <iptr>	helpid
Alexandre Julliard's avatar
Alexandre Julliard committed
284
%type <ctl>	exctrls gen_exctrl lab_exctrl exctrl_desc
285
%type <html>	html
Alexandre Julliard's avatar
Alexandre Julliard committed
286
%type <rdt> 	rcdata
287
%type <raw>	raw_data raw_elements opt_data file_raw
Alexandre Julliard's avatar
Alexandre Julliard committed
288 289 290 291
%type <veri> 	versioninfo fix_version
%type <verw>	ver_words
%type <blk>	ver_blocks ver_block
%type <val>	ver_values ver_value
292
%type <men> 	menu menuex
293
%type <menitm>	item_definitions menu_body itemex_definitions menuex_body
Alexandre Julliard's avatar
Alexandre Julliard committed
294 295 296 297
%type <exopt>	itemex_p_options itemex_options
%type <msg> 	messagetable
%type <usr> 	userres
%type <num> 	item_options
Alexandre Julliard's avatar
Alexandre Julliard committed
298
%type <nid> 	nameid nameid_s ctlclass usertype
299
%type <num> 	acc_opt acc accs
Alexandre Julliard's avatar
Alexandre Julliard committed
300
%type <iptr>	loadmemopts lamo lama
301
%type <fntid>	opt_font opt_exfont opt_expr
Alexandre Julliard's avatar
Alexandre Julliard committed
302 303 304 305
%type <lvc>	opt_lvc
%type <lan>	opt_language
%type <chars>	opt_characts
%type <ver>	opt_version
306
%type <num>	expr xpr
Alexandre Julliard's avatar
Alexandre Julliard committed
307
%type <iptr>	e_expr
308 309
%type <tlbar>	toolbar
%type <tlbarItems>	toolbar_items
310
%type <dginit>  dlginit
311
%type <styles>  optional_style_pair
312
%type <num>	any_num
313
%type <style>   style
314
%type <str>	filename
Alexandre Julliard's avatar
Alexandre Julliard committed
315 316 317 318 319

%%

resource_file
	: resources {
320
		resource_t *rsc, *head;
Alexandre Julliard's avatar
Alexandre Julliard committed
321 322 323 324 325 326 327 328 329
		/* First add stringtables to the resource-list */
		rsc = build_stt_resources(sttres);
		/* 'build_stt_resources' returns a head and $1 is a tail */
		if($1)
		{
			$1->next = rsc;
			if(rsc)
				rsc->prev = $1;
		}
330 331 332 333 334
		else
			$1 = rsc;
		/* Find the tail again */
		while($1 && $1->next)
			$1 = $1->next;
335
		/* Now add any fontdirectory */
336 337 338 339 340 341 342 343
		rsc = build_fontdirs($1);
		/* 'build_fontdir' returns a head and $1 is a tail */
		if($1)
		{
			$1->next = rsc;
			if(rsc)
				rsc->prev = $1;
		}
Alexandre Julliard's avatar
Alexandre Julliard committed
344 345
		else
			$1 = rsc;
346

347
		/* Final statements before we're done */
348
                if ((head = get_resource_head($1)) != NULL)
349
                {
350 351 352 353 354 355 356 357
                    if (resource_top)  /* append to existing resources */
                    {
                        resource_t *tail = resource_top;
                        while (tail->next) tail = tail->next;
                        tail->next = head;
                        head->prev = tail;
                    }
                    else resource_top = head;
358 359
                }
                sttres = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
360 361 362 363 364
		}
	;

/* Resources are put into a linked list */
resources
365
	: /* Empty */		{ $$ = NULL; want_id = 1; }
Alexandre Julliard's avatar
Alexandre Julliard committed
366 367 368 369 370 371 372 373 374 375 376 377 378
	| resources resource	{
		if($2)
		{
			resource_t *tail = $2;
			resource_t *head = $2;
			while(tail->next)
				tail = tail->next;
			while(head->prev)
				head = head->prev;
			head->prev = $1;
			if($1)
				$1->next = head;
			$$ = tail;
379 380 381 382 383 384 385 386 387
			/* Check for duplicate identifiers */
			while($1 && head)
			{
				resource_t *rsc = $1;
				while(rsc)
				{
					if(rsc->type == head->type
					&& rsc->lan->id == head->lan->id
					&& rsc->lan->sub == head->lan->sub
388 389
					&& !compare_name_id(rsc->name, head->name)
					&& (rsc->type != res_usr || !compare_name_id(rsc->res.usr->type,head->res.usr->type)))
390
					{
391
						yyerror("Duplicate resource name '%s'", get_nameid_str(rsc->name));
392 393 394 395 396
					}
					rsc = rsc->prev;
				}
				head = head->next;
			}
Alexandre Julliard's avatar
Alexandre Julliard committed
397 398 399 400 401 402 403 404 405 406 407
		}
		else if($1)
		{
			resource_t *tail = $1;
			while(tail->next)
				tail = tail->next;
			$$ = tail;
		}
		else
			$$ = NULL;

408 409 410
		if(!dont_want_id)	/* See comments in language parsing below */
			want_id = 1;
		dont_want_id = 0;
411
		}
412 413
	/*
	 * The following newline rule will never get reduced because we never
414
	 * get the tNL token, unless we explicitly set the 'want_nl'
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
	 * flag, which we don't.
	 * The *ONLY* reason for this to be here is because Berkeley
	 * yacc (byacc), at least version 1.9, has a bug.
	 * (identified in the generated parser on the second
	 *  line with:
	 *  static char yysccsid[] = "@(#)yaccpar   1.9 (Berkeley) 02/21/93";
	 * )
	 * This extra rule fixes it.
	 * The problem is that the expression handling rule "expr: xpr"
	 * is not reduced on non-terminal tokens, defined above in the
	 * %token declarations. Token tNL is the only non-terminal that
	 * can occur. The error becomes visible in the language parsing
	 * rule below, which looks at the look-ahead token and tests it
	 * for tNL. However, byacc already generates an error upon reading
	 * the token instead of keeping it as a lookahead. The reason
	 * lies in the lack of a $default transition in the "expr : xpr . "
431
	 * state (currently state 25). It is probably omitted because tNL
432 433 434 435 436 437
	 * is a non-terminal and the state contains 2 s/r conflicts. The
	 * state enumerates all possible transitions instead of using a
	 * $default transition.
	 * All in all, it is a bug in byacc. (period)
	 */
	| resources tNL
438 439
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
440 441 442

/* Parse top level resource definitions etc. */
resource
443
	: expr usrcvt resource_definition {
444
		$$ = $3;
Alexandre Julliard's avatar
Alexandre Julliard committed
445 446
		if($$)
		{
447
			if($1 > 65535 || $1 < -32768)
448
				yyerror("Resource's ID out of range (%d)", $1);
449 450 451
			$$->name = new_name_id();
			$$->name->type = name_ord;
			$$->name->name.i_name = $1;
452
			chat("Got %s (%d)\n", get_typename($3), $$->name->name.i_name);
Alexandre Julliard's avatar
Alexandre Julliard committed
453 454
			}
			}
455 456 457 458 459 460 461
	| tIDENT usrcvt resource_definition {
		$$ = $3;
		if($$)
		{
			$$->name = new_name_id();
			$$->name->type = name_str;
			$$->name->name.s_name = $1;
462
			chat("Got %s (%s)\n", get_typename($3), $$->name->name.s_name->str.cstr);
Alexandre Julliard's avatar
Alexandre Julliard committed
463 464 465 466 467 468 469 470
		}
		}
	| stringtable {
		/* Don't do anything, stringtables are converted to
		 * resource_t structures when we are finished parsing and
		 * the final rule of the parser is reduced (see above)
		 */
		$$ = NULL;
471
		chat("Got STRINGTABLE\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
472
		}
473
	| tLANGUAGE {want_nl = 1; } expr ',' expr {
474 475 476
		/* We *NEED* the newline to delimit the expression.
		 * Otherwise, we would not be able to set the next
		 * want_id anymore because of the token-lookahead.
477 478 479 480
		 *
		 * However, we can test the lookahead-token for
		 * being "non-expression" type, in which case we
		 * continue. Fortunately, tNL is the only token that
481
		 * will break expression parsing and is implicitly
482 483 484 485 486 487 488
		 * void, so we just remove it. This scheme makes it
		 * possible to do some (not all) fancy preprocessor
		 * stuff.
		 * BTW, we also need to make sure that the next
		 * reduction of 'resources' above will *not* set
		 * want_id because we already have a lookahead that
		 * cannot be undone.
489
		 */
490 491 492 493
		if(yychar != YYEMPTY && yychar != tNL)
			dont_want_id = 1;

		if(yychar == tNL)
494 495
			yychar = YYEMPTY;	/* Could use 'yyclearin', but we already need the*/
						/* direct access to yychar in rule 'usrcvt' below. */
496
		else if(yychar == tIDENT)
497
			parser_warning("LANGUAGE statement not delimited with newline; next identifier might be wrong\n");
498 499 500

		want_nl = 0;	/* We don't want it anymore if we didn't get it */

Alexandre Julliard's avatar
Alexandre Julliard committed
501
		if(!win32)
502
			parser_warning("LANGUAGE not supported in 16-bit mode\n");
503
		free(currentlanguage);
504
		if (get_language_codepage($3, $5) == -1)
505
			yyerror( "Language %04x is not supported", ($5<<10) + $3);
506
		currentlanguage = new_language($3, $5);
Alexandre Julliard's avatar
Alexandre Julliard committed
507
		$$ = NULL;
508
		chat("Got LANGUAGE %d,%d (0x%04x)\n", $3, $5, ($5<<10) + $3);
Alexandre Julliard's avatar
Alexandre Julliard committed
509 510 511
		}
	;

512 513 514 515 516 517 518
/*
 * Remapping of numerical resource types
 * (see also comment of called function below)
 */
usrcvt	: /* Empty */	{ yychar = rsrcid_to_token(yychar); }
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
519 520
/*
 * Get a valid name/id
Alexandre Julliard's avatar
Alexandre Julliard committed
521 522
 */
nameid	: expr	{
523
		if($1 > 65535 || $1 < -32768)
524
			yyerror("Resource's ID out of range (%d)", $1);
Alexandre Julliard's avatar
Alexandre Julliard committed
525 526 527 528
		$$ = new_name_id();
		$$->type = name_ord;
		$$->name.i_name = $1;
		}
529
	| tIDENT {
Alexandre Julliard's avatar
Alexandre Julliard committed
530 531 532 533 534 535
		$$ = new_name_id();
		$$->type = name_str;
		$$->name.s_name = $1;
		}
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
536 537 538 539 540 541 542 543 544 545 546
/*
 * Extra string recognition for CLASS statement in dialogs
 */
nameid_s: nameid	{ $$ = $1; }
	| tSTRING	{
		$$ = new_name_id();
		$$->type = name_str;
		$$->name.s_name = $1;
		}
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
547 548 549
/* get the value for a single resource*/
resource_definition
	: accelerators	{ $$ = new_resource(res_acc, $1, $1->memopt, $1->lvc.language); }
550
	| bitmap	{ $$ = new_resource(res_bmp, $1, $1->memopt, $1->data->lvc.language); }
Alexandre Julliard's avatar
Alexandre Julliard committed
551 552
	| cursor {
		resource_t *rsc;
553
		if($1->type == res_anicur)
Alexandre Julliard's avatar
Alexandre Julliard committed
554
		{
555 556
			$$ = rsc = new_resource(res_anicur, $1->u.ani, $1->u.ani->memopt, $1->u.ani->data->lvc.language);
		}
557
		else /* res_curg */
558 559 560 561 562 563 564 565 566 567 568 569
		{
			cursor_t *cur;
			$$ = rsc = new_resource(res_curg, $1->u.curg, $1->u.curg->memopt, $1->u.curg->lvc.language);
			for(cur = $1->u.curg->cursorlist; cur; cur = cur->next)
			{
				rsc->prev = new_resource(res_cur, cur, $1->u.curg->memopt, $1->u.curg->lvc.language);
				rsc->prev->next = rsc;
				rsc = rsc->prev;
				rsc->name = new_name_id();
				rsc->name->type = name_ord;
				rsc->name->name.i_name = cur->id;
			}
Alexandre Julliard's avatar
Alexandre Julliard committed
570
		}
571
		free($1);
Alexandre Julliard's avatar
Alexandre Julliard committed
572 573 574 575
		}
	| dialog	{ $$ = new_resource(res_dlg, $1, $1->memopt, $1->lvc.language); }
	| dialogex {
		if(win32)
576
			$$ = new_resource(res_dlg, $1, $1->memopt, $1->lvc.language);
Alexandre Julliard's avatar
Alexandre Julliard committed
577 578 579
		else
			$$ = NULL;
		}
580 581 582
	| dlginit	{ $$ = new_resource(res_dlginit, $1, $1->memopt, $1->data->lvc.language); }
	| font		{ $$ = new_resource(res_fnt, $1, $1->memopt, $1->data->lvc.language); }
	| fontdir	{ $$ = new_resource(res_fntdir, $1, $1->memopt, $1->data->lvc.language); }
Alexandre Julliard's avatar
Alexandre Julliard committed
583 584
	| icon {
		resource_t *rsc;
585
		if($1->type == res_aniico)
Alexandre Julliard's avatar
Alexandre Julliard committed
586
		{
587 588
			$$ = rsc = new_resource(res_aniico, $1->u.ani, $1->u.ani->memopt, $1->u.ani->data->lvc.language);
		}
589
		else /* res_icog */
590 591 592 593 594 595 596 597 598 599 600 601
		{
			icon_t *ico;
			$$ = rsc = new_resource(res_icog, $1->u.icog, $1->u.icog->memopt, $1->u.icog->lvc.language);
			for(ico = $1->u.icog->iconlist; ico; ico = ico->next)
			{
				rsc->prev = new_resource(res_ico, ico, $1->u.icog->memopt, $1->u.icog->lvc.language);
				rsc->prev->next = rsc;
				rsc = rsc->prev;
				rsc->name = new_name_id();
				rsc->name->type = name_ord;
				rsc->name->name.i_name = ico->id;
			}
Alexandre Julliard's avatar
Alexandre Julliard committed
602
		}
603
		free($1);
Alexandre Julliard's avatar
Alexandre Julliard committed
604 605 606 607
		}
	| menu		{ $$ = new_resource(res_men, $1, $1->memopt, $1->lvc.language); }
	| menuex {
		if(win32)
608
			$$ = new_resource(res_men, $1, $1->memopt, $1->lvc.language);
Alexandre Julliard's avatar
Alexandre Julliard committed
609 610 611
		else
			$$ = NULL;
		}
612
	| messagetable	{ $$ = new_resource(res_msg, $1, WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE, $1->data->lvc.language); }
613
	| html		{ $$ = new_resource(res_html, $1, $1->memopt, $1->data->lvc.language); }
614
	| rcdata	{ $$ = new_resource(res_rdt, $1, $1->memopt, $1->data->lvc.language); }
615
	| toolbar	{ $$ = new_resource(res_toolbar, $1, $1->memopt, $1->lvc.language); }
616 617
	| userres	{ $$ = new_resource(res_usr, $1, $1->memopt, $1->data->lvc.language); }
	| versioninfo	{ $$ = new_resource(res_ver, $1, WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE, $1->lvc.language); }
Alexandre Julliard's avatar
Alexandre Julliard committed
618 619
	;

620

621
filename: tIDENT	{ $$ = make_filename($1); }
622 623 624
	| tSTRING	{ $$ = make_filename($1); }
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
625
/* ------------------------------ Bitmap ------------------------------ */
626
bitmap	: tBITMAP loadmemopts file_raw	{ $$ = new_bitmap($3, $2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
627 628 629
	;

/* ------------------------------ Cursor ------------------------------ */
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
cursor	: tCURSOR loadmemopts file_raw	{
		$$ = new_ani_any();
		if($3->size > 4 && !memcmp($3->data, riff, sizeof(riff)))
		{
			$$->type = res_anicur;
			$$->u.ani = new_ani_curico(res_anicur, $3, $2);
		}
		else
		{
			$$->type = res_curg;
			$$->u.curg = new_cursor_group($3, $2);
		}
	}
	;

/* ------------------------------ Icon ------------------------------ */
icon	: tICON loadmemopts file_raw	{
		$$ = new_ani_any();
		if($3->size > 4 && !memcmp($3->data, riff, sizeof(riff)))
		{
			$$->type = res_aniico;
			$$->u.ani = new_ani_curico(res_aniico, $3, $2);
		}
		else
		{
			$$->type = res_icog;
			$$->u.icog = new_icon_group($3, $2);
		}
	}
Alexandre Julliard's avatar
Alexandre Julliard committed
659 660 661
	;

/* ------------------------------ Font ------------------------------ */
662 663 664 665 666 667 668
	/*
	 * The reading of raw_data for fonts is a Borland BRC
	 * extension. MS generates an error. However, it is
	 * most logical to support this, considering how wine
	 * enters things in CVS (ascii).
	 */
font	: tFONT loadmemopts file_raw	{ $$ = new_font($3, $2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
669 670
	;

671 672 673 674 675 676 677
	/*
	 * The fontdir is a Borland BRC extension which only
	 * reads the data as 'raw_data' from the file.
	 * I don't know whether it is interpreted.
	 * The fontdir is generated if it was not present and
	 * fonts are defined in the source.
	 */
678
fontdir	: tFONTDIR loadmemopts file_raw	{ $$ = new_fontdir($3, $2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
679 680 681 682 683 684 685
	;

/* ------------------------------ MessageTable ------------------------------ */
/* It might be interesting to implement the MS Message compiler here as well
 * to get everything in one source. Might be a future project.
 */
messagetable
686
	: tMESSAGETABLE loadmemopts file_raw	{
Alexandre Julliard's avatar
Alexandre Julliard committed
687
		if(!win32)
688
			parser_warning("MESSAGETABLE not supported in 16-bit mode\n");
689
		$$ = new_messagetable($3, $2);
Alexandre Julliard's avatar
Alexandre Julliard committed
690 691 692
		}
	;

693 694 695 696
/* ------------------------------ HTML ------------------------------ */
html	: tHTML loadmemopts file_raw	{ $$ = new_html($3, $2); }
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
697
/* ------------------------------ RCData ------------------------------ */
698
rcdata	: tRCDATA loadmemopts file_raw	{ $$ = new_rcdata($3, $2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
699 700
	;

701
/* ------------------------------ DLGINIT ------------------------------ */
702
dlginit	: tDLGINIT loadmemopts file_raw	{ $$ = new_dlginit($3, $2); }
703
	;
704

Alexandre Julliard's avatar
Alexandre Julliard committed
705
/* ------------------------------ UserType ------------------------------ */
706 707 708
userres	: usertype loadmemopts file_raw		{
			$$ = new_user($1, $3, $2);
		}
Alexandre Julliard's avatar
Alexandre Julliard committed
709 710
	;

711
usertype: tNUMBER {
Alexandre Julliard's avatar
Alexandre Julliard committed
712 713 714 715
		$$ = new_name_id();
		$$->type = name_ord;
		$$->name.i_name = $1;
		}
716
	| tIDENT {
Alexandre Julliard's avatar
Alexandre Julliard committed
717 718 719 720 721 722 723 724
		$$ = new_name_id();
		$$->type = name_str;
		$$->name.s_name = $1;
		}
	;

/* ------------------------------ Accelerator ------------------------------ */
accelerators
725
	: tACCELERATORS loadmemopts opt_lvc tBEGIN events tEND {
Alexandre Julliard's avatar
Alexandre Julliard committed
726 727 728 729 730 731 732 733 734 735 736
		$$ = new_accelerator();
		if($2)
		{
			$$->memopt = *($2);
			free($2);
		}
		else
		{
			$$->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE;
		}
		if(!$5)
737
			yyerror("Accelerator table must have at least one entry");
Alexandre Julliard's avatar
Alexandre Julliard committed
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
		$$->events = get_event_head($5);
		if($3)
		{
			$$->lvc = *($3);
			free($3);
		}
		if(!$$->lvc.language)
			$$->lvc.language = dup_language(currentlanguage);
		}
	;

events	: /* Empty */ 				{ $$=NULL; }
	| events tSTRING ',' expr acc_opt	{ $$=add_string_event($2, $4, $5, $1); }
	| events expr ',' expr acc_opt		{ $$=add_event($2, $4, $5, $1); }
	;

754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
/*
 * The empty rule generates a s/r conflict because of {bi,u}nary expr
 * on - and +. It cannot be solved in any way because it is the same as
 * the if/then/else problem (LALR(1) problem). The conflict is moved
 * away by forcing it to be in the expression handling below.
 */
acc_opt	: /* Empty */	{ $$ = 0; }
	| ',' accs	{ $$ = $2; }
	;

accs	: acc		{ $$ = $1; }
	| accs ',' acc	{ $$ = $1 | $3; }
	;

acc	: tNOINVERT 	{ $$ = WRC_AF_NOINVERT; }
	| tSHIFT	{ $$ = WRC_AF_SHIFT; }
	| tCONTROL	{ $$ = WRC_AF_CONTROL; }
	| tALT		{ $$ = WRC_AF_ALT; }
	| tASCII	{ $$ = WRC_AF_ASCII; }
	| tVIRTKEY	{ $$ = WRC_AF_VIRTKEY; }
Alexandre Julliard's avatar
Alexandre Julliard committed
774 775 776 777
	;

/* ------------------------------ Dialog ------------------------------ */
/* FIXME: Support EXSTYLE in the dialog line itself */
778
dialog	: tDIALOG loadmemopts expr ',' expr ',' expr ',' expr dlg_attributes
Alexandre Julliard's avatar
Alexandre Julliard committed
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
	  tBEGIN  ctrls tEND {
		if($2)
		{
			$10->memopt = *($2);
			free($2);
		}
		else
			$10->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE;
		$10->x = $3;
		$10->y = $5;
		$10->width = $7;
		$10->height = $9;
		$10->controls = get_control_head($12);
		$$ = $10;
		if(!$$->gotstyle)
		{
795
			$$->style = new_style(0,0);
796
			$$->style->or_mask = WS_POPUP;
Alexandre Julliard's avatar
Alexandre Julliard committed
797 798 799
			$$->gotstyle = TRUE;
		}
		if($$->title)
800
			$$->style->or_mask |= WS_CAPTION;
Alexandre Julliard's avatar
Alexandre Julliard committed
801
		if($$->font)
802 803 804 805 806
			$$->style->or_mask |= DS_SETFONT;

		$$->style->or_mask &= ~($$->style->and_mask);
		$$->style->and_mask = 0;

Alexandre Julliard's avatar
Alexandre Julliard committed
807 808 809 810 811 812
		if(!$$->lvc.language)
			$$->lvc.language = dup_language(currentlanguage);
		}
	;

dlg_attributes
813 814 815 816 817 818 819 820 821 822
	: /* Empty */				{ $$=new_dialog(); }
	| dlg_attributes tSTYLE style		{ $$=dialog_style($3,$1); }
	| dlg_attributes tEXSTYLE style		{ $$=dialog_exstyle($3,$1); }
	| dlg_attributes tCAPTION tSTRING	{ $$=dialog_caption($3,$1); }
	| dlg_attributes opt_font		{ $$=dialog_font($2,$1); }
	| dlg_attributes tCLASS nameid_s	{ $$=dialog_class($3,$1); }
	| dlg_attributes tMENU nameid		{ $$=dialog_menu($3,$1); }
	| dlg_attributes opt_language		{ $$=dialog_language($2,$1); }
	| dlg_attributes opt_characts		{ $$=dialog_characteristics($2,$1); }
	| dlg_attributes opt_version		{ $$=dialog_version($2,$1); }
Alexandre Julliard's avatar
Alexandre Julliard committed
823 824 825
	;

ctrls	: /* Empty */				{ $$ = NULL; }
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
	| ctrls tCONTROL	gen_ctrl	{ $$=ins_ctrl(-1, 0, $3, $1); }
	| ctrls tEDITTEXT	ctrl_desc	{ $$=ins_ctrl(CT_EDIT, 0, $3, $1); }
	| ctrls tLISTBOX	ctrl_desc	{ $$=ins_ctrl(CT_LISTBOX, 0, $3, $1); }
	| ctrls tCOMBOBOX	ctrl_desc	{ $$=ins_ctrl(CT_COMBOBOX, 0, $3, $1); }
	| ctrls tSCROLLBAR	ctrl_desc	{ $$=ins_ctrl(CT_SCROLLBAR, 0, $3, $1); }
	| ctrls tCHECKBOX	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_CHECKBOX, $3, $1); }
	| ctrls tDEFPUSHBUTTON	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_DEFPUSHBUTTON, $3, $1); }
	| ctrls tGROUPBOX	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_GROUPBOX, $3, $1);}
	| ctrls tPUSHBUTTON	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_PUSHBUTTON, $3, $1); }
/*	| ctrls tPUSHBOX	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_PUSHBOX, $3, $1); } */
	| ctrls tRADIOBUTTON	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_RADIOBUTTON, $3, $1); }
	| ctrls tAUTO3STATE	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTO3STATE, $3, $1); }
	| ctrls tSTATE3		lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_3STATE, $3, $1); }
	| ctrls tAUTOCHECKBOX	lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTOCHECKBOX, $3, $1); }
	| ctrls tAUTORADIOBUTTON lab_ctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTORADIOBUTTON, $3, $1); }
	| ctrls tLTEXT		lab_ctrl	{ $$=ins_ctrl(CT_STATIC, SS_LEFT, $3, $1); }
	| ctrls tCTEXT		lab_ctrl	{ $$=ins_ctrl(CT_STATIC, SS_CENTER, $3, $1); }
	| ctrls tRTEXT		lab_ctrl	{ $$=ins_ctrl(CT_STATIC, SS_RIGHT, $3, $1); }
Alexandre Julliard's avatar
Alexandre Julliard committed
844
	/* special treatment for icons, as the extent is optional */
845
	| ctrls tICON nameid_s opt_comma expr ',' expr ',' expr iconinfo {
846
		$10->title = $3;
Alexandre Julliard's avatar
Alexandre Julliard committed
847 848 849 850 851 852 853 854
		$10->id = $5;
		$10->x = $7;
		$10->y = $9;
		$$ = ins_ctrl(CT_STATIC, SS_ICON, $10, $1);
		}
	;

lab_ctrl
855
	: nameid_s opt_comma expr ',' expr ',' expr ',' expr ',' expr optional_style_pair {
Alexandre Julliard's avatar
Alexandre Julliard committed
856
		$$=new_control();
857
		$$->title = $1;
Alexandre Julliard's avatar
Alexandre Julliard committed
858 859 860 861 862 863 864
		$$->id = $3;
		$$->x = $5;
		$$->y = $7;
		$$->width = $9;
		$$->height = $11;
		if($12)
		{
865
			$$->style = $12->style;
Alexandre Julliard's avatar
Alexandre Julliard committed
866
			$$->gotstyle = TRUE;
867 868 869 870 871 872
			if ($12->exstyle)
			{
			    $$->exstyle = $12->exstyle;
			    $$->gotexstyle = TRUE;
			}
			free($12);
Alexandre Julliard's avatar
Alexandre Julliard committed
873 874 875 876 877
		}
		}
	;

ctrl_desc
878
	: expr ',' expr ',' expr ',' expr ',' expr optional_style_pair {
Alexandre Julliard's avatar
Alexandre Julliard committed
879 880 881 882 883 884 885 886
		$$ = new_control();
		$$->id = $1;
		$$->x = $3;
		$$->y = $5;
		$$->width = $7;
		$$->height = $9;
		if($10)
		{
887
			$$->style = $10->style;
Alexandre Julliard's avatar
Alexandre Julliard committed
888
			$$->gotstyle = TRUE;
889 890 891 892 893 894
			if ($10->exstyle)
			{
			    $$->exstyle = $10->exstyle;
			    $$->gotexstyle = TRUE;
			}
			free($10);
Alexandre Julliard's avatar
Alexandre Julliard committed
895 896 897 898 899 900 901 902 903 904 905 906
		}
		}
	;

iconinfo: /* Empty */
		{ $$ = new_control(); }

	| ',' expr ',' expr {
		$$ = new_control();
		$$->width = $2;
		$$->height = $4;
		}
907
	| ',' expr ',' expr ',' style {
Alexandre Julliard's avatar
Alexandre Julliard committed
908 909 910 911 912 913
		$$ = new_control();
		$$->width = $2;
		$$->height = $4;
		$$->style = $6;
		$$->gotstyle = TRUE;
		}
914
	| ',' expr ',' expr ',' style ',' style {
Alexandre Julliard's avatar
Alexandre Julliard committed
915 916 917 918 919 920 921 922 923 924
		$$ = new_control();
		$$->width = $2;
		$$->height = $4;
		$$->style = $6;
		$$->gotstyle = TRUE;
		$$->exstyle = $8;
		$$->gotexstyle = TRUE;
		}
	;

925
gen_ctrl: nameid_s opt_comma expr ',' ctlclass ',' style ',' expr ',' expr ',' expr ',' expr ',' style {
Alexandre Julliard's avatar
Alexandre Julliard committed
926 927 928 929 930 931 932 933 934 935 936 937 938
		$$=new_control();
		$$->title = $1;
		$$->id = $3;
		$$->ctlclass = convert_ctlclass($5);
		$$->style = $7;
		$$->gotstyle = TRUE;
		$$->x = $9;
		$$->y = $11;
		$$->width = $13;
		$$->height = $15;
		$$->exstyle = $17;
		$$->gotexstyle = TRUE;
		}
939
	| nameid_s opt_comma expr ',' ctlclass ',' style ',' expr ',' expr ',' expr ',' expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
940 941 942 943 944 945 946 947 948 949 950 951 952 953
		$$=new_control();
		$$->title = $1;
		$$->id = $3;
		$$->ctlclass = convert_ctlclass($5);
		$$->style = $7;
		$$->gotstyle = TRUE;
		$$->x = $9;
		$$->y = $11;
		$$->width = $13;
		$$->height = $15;
		}
	;

opt_font
954
	: tFONT expr ',' tSTRING	{ $$ = new_font_id($2, $4, 0, 0); }
Alexandre Julliard's avatar
Alexandre Julliard committed
955 956
	;

957
/* ------------------------------ style flags ------------------------------ */
958
optional_style_pair
959 960 961
	: /* Empty */		{ $$ = NULL; }
	| ',' style		{ $$ = new_style_pair($2, 0); }
	| ',' style ',' style 	{ $$ = new_style_pair($2, $4); }
962 963
	;

964 965 966 967
style
	: style '|' style	{ $$ = new_style($1->or_mask | $3->or_mask, $1->and_mask | $3->and_mask); free($1); free($3);}
	| '(' style ')'		{ $$ = $2; }
        | any_num       	{ $$ = new_style($1, 0); }
968
        | tNOT any_num		{ $$ = new_style(0, $2); }
969
        ;
970

Alexandre Julliard's avatar
Alexandre Julliard committed
971 972 973 974 975 976 977 978 979 980 981 982 983 984
ctlclass
	: expr	{
		$$ = new_name_id();
		$$->type = name_ord;
		$$->name.i_name = $1;
		}
	| tSTRING {
		$$ = new_name_id();
		$$->type = name_str;
		$$->name.s_name = $1;
		}
	;

/* ------------------------------ DialogEx ------------------------------ */
985
dialogex: tDIALOGEX loadmemopts expr ',' expr ',' expr ',' expr helpid dlgex_attribs
Alexandre Julliard's avatar
Alexandre Julliard committed
986 987
	  tBEGIN  exctrls tEND {
		if(!win32)
988
			parser_warning("DIALOGEX not supported in 16-bit mode\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		if($2)
		{
			$11->memopt = *($2);
			free($2);
		}
		else
			$11->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE;
		$11->x = $3;
		$11->y = $5;
		$11->width = $7;
		$11->height = $9;
		if($10)
		{
			$11->helpid = *($10);
			$11->gothelpid = TRUE;
			free($10);
		}
		$11->controls = get_control_head($13);
		$$ = $11;
1008 1009

		assert($$->style != NULL);
Alexandre Julliard's avatar
Alexandre Julliard committed
1010 1011
		if(!$$->gotstyle)
		{
1012
			$$->style->or_mask = WS_POPUP;
Alexandre Julliard's avatar
Alexandre Julliard committed
1013 1014 1015
			$$->gotstyle = TRUE;
		}
		if($$->title)
1016
			$$->style->or_mask |= WS_CAPTION;
Alexandre Julliard's avatar
Alexandre Julliard committed
1017
		if($$->font)
1018 1019 1020 1021 1022
			$$->style->or_mask |= DS_SETFONT;

		$$->style->or_mask &= ~($$->style->and_mask);
		$$->style->and_mask = 0;

Alexandre Julliard's avatar
Alexandre Julliard committed
1023 1024 1025 1026 1027 1028
		if(!$$->lvc.language)
			$$->lvc.language = dup_language(currentlanguage);
		}
	;

dlgex_attribs
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	: /* Empty */				{ $$=new_dialog(); $$->is_ex = TRUE; }
	| dlgex_attribs tSTYLE style		{ $$=dialog_style($3,$1); }
	| dlgex_attribs tEXSTYLE style		{ $$=dialog_exstyle($3,$1); }
	| dlgex_attribs tCAPTION tSTRING	{ $$=dialog_caption($3,$1); }
	| dlgex_attribs opt_font		{ $$=dialog_font($2,$1); }
	| dlgex_attribs opt_exfont		{ $$=dialog_font($2,$1); }
	| dlgex_attribs tCLASS nameid_s		{ $$=dialog_class($3,$1); }
	| dlgex_attribs tMENU nameid		{ $$=dialog_menu($3,$1); }
	| dlgex_attribs opt_language		{ $$=dialog_language($2,$1); }
	| dlgex_attribs opt_characts		{ $$=dialog_characteristics($2,$1); }
	| dlgex_attribs opt_version		{ $$=dialog_version($2,$1); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1040 1041 1042
	;

exctrls	: /* Empty */				{ $$ = NULL; }
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
	| exctrls tCONTROL	gen_exctrl	{ $$=ins_ctrl(-1, 0, $3, $1); }
	| exctrls tEDITTEXT	exctrl_desc	{ $$=ins_ctrl(CT_EDIT, 0, $3, $1); }
	| exctrls tLISTBOX	exctrl_desc	{ $$=ins_ctrl(CT_LISTBOX, 0, $3, $1); }
	| exctrls tCOMBOBOX	exctrl_desc	{ $$=ins_ctrl(CT_COMBOBOX, 0, $3, $1); }
	| exctrls tSCROLLBAR	exctrl_desc	{ $$=ins_ctrl(CT_SCROLLBAR, 0, $3, $1); }
	| exctrls tCHECKBOX	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_CHECKBOX, $3, $1); }
	| exctrls tDEFPUSHBUTTON lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_DEFPUSHBUTTON, $3, $1); }
	| exctrls tGROUPBOX	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_GROUPBOX, $3, $1);}
	| exctrls tPUSHBUTTON	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_PUSHBUTTON, $3, $1); }
/*	| exctrls tPUSHBOX	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_PUSHBOX, $3, $1); } */
	| exctrls tRADIOBUTTON	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_RADIOBUTTON, $3, $1); }
	| exctrls tAUTO3STATE	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTO3STATE, $3, $1); }
	| exctrls tSTATE3	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_3STATE, $3, $1); }
	| exctrls tAUTOCHECKBOX	lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTOCHECKBOX, $3, $1); }
	| exctrls tAUTORADIOBUTTON lab_exctrl	{ $$=ins_ctrl(CT_BUTTON, BS_AUTORADIOBUTTON, $3, $1); }
	| exctrls tLTEXT	lab_exctrl	{ $$=ins_ctrl(CT_STATIC, SS_LEFT, $3, $1); }
	| exctrls tCTEXT	lab_exctrl	{ $$=ins_ctrl(CT_STATIC, SS_CENTER, $3, $1); }
	| exctrls tRTEXT	lab_exctrl	{ $$=ins_ctrl(CT_STATIC, SS_RIGHT, $3, $1); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1061
	/* special treatment for icons, as the extent is optional */
1062
	| exctrls tICON nameid_s opt_comma expr ',' expr ',' expr iconinfo {
Alexandre Julliard's avatar
Alexandre Julliard committed
1063 1064 1065 1066 1067 1068 1069 1070 1071
		$10->title = $3;
		$10->id = $5;
		$10->x = $7;
		$10->y = $9;
		$$ = ins_ctrl(CT_STATIC, SS_ICON, $10, $1);
		}
	;

gen_exctrl
1072
	: nameid_s opt_comma expr ',' ctlclass ',' style ',' expr ',' expr ',' expr ','
1073
	  expr ',' style helpid opt_data {
Alexandre Julliard's avatar
Alexandre Julliard committed
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
		$$=new_control();
		$$->title = $1;
		$$->id = $3;
		$$->ctlclass = convert_ctlclass($5);
		$$->style = $7;
		$$->gotstyle = TRUE;
		$$->x = $9;
		$$->y = $11;
		$$->width = $13;
		$$->height = $15;
		if($17)
		{
1086
			$$->exstyle = $17;
Alexandre Julliard's avatar
Alexandre Julliard committed
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
			$$->gotexstyle = TRUE;
		}
		if($18)
		{
			$$->helpid = *($18);
			$$->gothelpid = TRUE;
			free($18);
		}
		$$->extra = $19;
		}
1097
	| nameid_s opt_comma expr ',' ctlclass ',' style ',' expr ',' expr ',' expr ',' expr opt_data {
Alexandre Julliard's avatar
Alexandre Julliard committed
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
		$$=new_control();
		$$->title = $1;
		$$->id = $3;
		$$->style = $7;
		$$->gotstyle = TRUE;
		$$->ctlclass = convert_ctlclass($5);
		$$->x = $9;
		$$->y = $11;
		$$->width = $13;
		$$->height = $15;
		$$->extra = $16;
		}
	;

lab_exctrl
1113
	: nameid_s opt_comma expr ',' expr ',' expr ',' expr ',' expr optional_style_pair helpid opt_data {
Alexandre Julliard's avatar
Alexandre Julliard committed
1114
		$$=new_control();
1115
		$$->title = $1;
Alexandre Julliard's avatar
Alexandre Julliard committed
1116 1117 1118 1119 1120 1121 1122
		$$->id = $3;
		$$->x = $5;
		$$->y = $7;
		$$->width = $9;
		$$->height = $11;
		if($12)
		{
1123
			$$->style = $12->style;
Alexandre Julliard's avatar
Alexandre Julliard committed
1124
			$$->gotstyle = TRUE;
1125 1126 1127 1128 1129 1130

			if ($12->exstyle)
			{
			    $$->exstyle = $12->exstyle;
			    $$->gotexstyle = TRUE;
			}
Alexandre Julliard's avatar
Alexandre Julliard committed
1131 1132
			free($12);
		}
1133

1134
		$$->extra = $14;
Alexandre Julliard's avatar
Alexandre Julliard committed
1135 1136 1137 1138
		}
	;

exctrl_desc
1139
	: expr ',' expr ',' expr ',' expr ',' expr optional_style_pair helpid opt_data {
Alexandre Julliard's avatar
Alexandre Julliard committed
1140 1141 1142 1143 1144 1145 1146 1147
		$$ = new_control();
		$$->id = $1;
		$$->x = $3;
		$$->y = $5;
		$$->width = $7;
		$$->height = $9;
		if($10)
		{
1148
			$$->style = $10->style;
Alexandre Julliard's avatar
Alexandre Julliard committed
1149
			$$->gotstyle = TRUE;
1150 1151 1152 1153 1154 1155

			if ($10->exstyle)
			{
			    $$->exstyle = $10->exstyle;
			    $$->gotexstyle = TRUE;
			}
Alexandre Julliard's avatar
Alexandre Julliard committed
1156 1157
			free($10);
		}
1158
		$$->extra = $12;
Alexandre Julliard's avatar
Alexandre Julliard committed
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
		}
	;

opt_data: /* Empty */	{ $$ = NULL; }
	| raw_data	{ $$ = $1; }
	;

helpid	: /* Empty */	{ $$ = NULL; }
	| ',' expr	{ $$ = new_int($2); }
	;

opt_exfont
1171
	: tFONT expr ',' tSTRING ',' expr ',' expr  opt_expr { $$ = new_font_id($2, $4, $6, $8); }
1172 1173 1174
	;

/*
1175
 * FIXME: This odd expression is here to nullify an extra token found
1176 1177 1178 1179
 * in some appstudio produced resources which appear to do nothing.
 */
opt_expr: /* Empty */	{ $$ = NULL; }
	| ',' expr	{ $$ = NULL; }
Alexandre Julliard's avatar
Alexandre Julliard committed
1180 1181 1182
	;

/* ------------------------------ Menu ------------------------------ */
1183
menu	: tMENU loadmemopts opt_lvc menu_body {
Alexandre Julliard's avatar
Alexandre Julliard committed
1184
		if(!$4)
1185
			yyerror("Menu must contain items");
Alexandre Julliard's avatar
Alexandre Julliard committed
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
		$$ = new_menu();
		if($2)
		{
			$$->memopt = *($2);
			free($2);
		}
		else
			$$->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE;
		$$->items = get_item_head($4);
		if($3)
		{
			$$->lvc = *($3);
			free($3);
		}
		if(!$$->lvc.language)
			$$->lvc.language = dup_language(currentlanguage);
		}
	;

menu_body
	: tBEGIN item_definitions tEND	{ $$ = $2; }
	;

item_definitions
	: /* Empty */	{$$ = NULL;}
1211
	| item_definitions tMENUITEM tSTRING opt_comma expr item_options {
Alexandre Julliard's avatar
Alexandre Julliard committed
1212 1213 1214 1215 1216 1217 1218 1219
		$$=new_menu_item();
		$$->prev = $1;
		if($1)
			$1->next = $$;
		$$->id =  $5;
		$$->state = $6;
		$$->name = $3;
		}
1220
	| item_definitions tMENUITEM tSEPARATOR {
Alexandre Julliard's avatar
Alexandre Julliard committed
1221 1222 1223 1224 1225
		$$=new_menu_item();
		$$->prev = $1;
		if($1)
			$1->next = $$;
		}
1226
	| item_definitions tPOPUP tSTRING item_options menu_body {
Alexandre Julliard's avatar
Alexandre Julliard committed
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
		$$ = new_menu_item();
		$$->prev = $1;
		if($1)
			$1->next = $$;
		$$->popup = get_item_head($5);
		$$->name = $3;
		}
	;

/* NOTE: item_options is right recursive because it would introduce
 * a shift/reduce conflict on ',' in itemex_options due to the
 * empty rule here. The parser is now forced to look beyond the ','
 * before reducing (force shift).
 * Right recursion here is not a problem because we cannot expect
 * more than 7 parserstack places to be occupied while parsing this
 * (who would want to specify a MF_x flag twice?).
 */
item_options
1245 1246 1247 1248 1249 1250 1251 1252
	:  /* Empty */			{ $$ = 0; }
	| ','		item_options	{ $$ = $2; }
	| tCHECKED	item_options	{ $$ = $2 | MF_CHECKED; }
	| tGRAYED	item_options	{ $$ = $2 | MF_GRAYED; }
	| tHELP		item_options	{ $$ = $2 | MF_HELP; }
	| tINACTIVE	item_options	{ $$ = $2 | MF_DISABLED; }
	| tMENUBARBREAK	item_options	{ $$ = $2 | MF_MENUBARBREAK; }
	| tMENUBREAK	item_options	{ $$ = $2 | MF_MENUBREAK; }
Alexandre Julliard's avatar
Alexandre Julliard committed
1253 1254 1255
	;

/* ------------------------------ MenuEx ------------------------------ */
1256
menuex	: tMENUEX loadmemopts opt_lvc menuex_body	{
Alexandre Julliard's avatar
Alexandre Julliard committed
1257
		if(!win32)
1258
			parser_warning("MENUEX not supported in 16-bit mode\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1259
		if(!$4)
1260
			yyerror("MenuEx must contain items");
1261 1262
		$$ = new_menu();
		$$->is_ex = TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
1263 1264 1265 1266 1267 1268 1269
		if($2)
		{
			$$->memopt = *($2);
			free($2);
		}
		else
			$$->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE;
1270
		$$->items = get_item_head($4);
Alexandre Julliard's avatar
Alexandre Julliard committed
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
		if($3)
		{
			$$->lvc = *($3);
			free($3);
		}
		if(!$$->lvc.language)
			$$->lvc.language = dup_language(currentlanguage);
		}
	;

menuex_body
	: tBEGIN itemex_definitions tEND { $$ = $2; }
	;

itemex_definitions
	: /* Empty */	{$$ = NULL; }
1287
	| itemex_definitions tMENUITEM tSTRING itemex_options {
1288
		$$ = new_menu_item();
Alexandre Julliard's avatar
Alexandre Julliard committed
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
		$$->prev = $1;
		if($1)
			$1->next = $$;
		$$->name = $3;
		$$->id = $4->id;
		$$->type = $4->type;
		$$->state = $4->state;
		$$->helpid = $4->helpid;
		$$->gotid = $4->gotid;
		$$->gottype = $4->gottype;
		$$->gotstate = $4->gotstate;
		$$->gothelpid = $4->gothelpid;
		free($4);
		}
1303
	| itemex_definitions tMENUITEM tSEPARATOR {
1304
		$$ = new_menu_item();
Alexandre Julliard's avatar
Alexandre Julliard committed
1305 1306 1307 1308
		$$->prev = $1;
		if($1)
			$1->next = $$;
		}
1309
	| itemex_definitions tPOPUP tSTRING itemex_p_options menuex_body {
1310
		$$ = new_menu_item();
Alexandre Julliard's avatar
Alexandre Julliard committed
1311 1312 1313
		$$->prev = $1;
		if($1)
			$1->next = $$;
1314
		$$->popup = get_item_head($5);
Alexandre Julliard's avatar
Alexandre Julliard committed
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
		$$->name = $3;
		$$->id = $4->id;
		$$->type = $4->type;
		$$->state = $4->state;
		$$->helpid = $4->helpid;
		$$->gotid = $4->gotid;
		$$->gottype = $4->gottype;
		$$->gotstate = $4->gotstate;
		$$->gothelpid = $4->gothelpid;
		free($4);
		}
	;

itemex_options
	: /* Empty */			{ $$ = new_itemex_opt(0, 0, 0, 0); }
	| ',' expr {
		$$ = new_itemex_opt($2, 0, 0, 0);
		$$->gotid = TRUE;
		}
	| ',' e_expr ',' e_expr item_options {
		$$ = new_itemex_opt($2 ? *($2) : 0, $4 ? *($4) : 0, $5, 0);
		$$->gotid = TRUE;
		$$->gottype = TRUE;
		$$->gotstate = TRUE;
1339 1340
		free($2);
		free($4);
Alexandre Julliard's avatar
Alexandre Julliard committed
1341 1342 1343 1344 1345 1346
		}
	| ',' e_expr ',' e_expr ',' expr {
		$$ = new_itemex_opt($2 ? *($2) : 0, $4 ? *($4) : 0, $6, 0);
		$$->gotid = TRUE;
		$$->gottype = TRUE;
		$$->gotstate = TRUE;
1347 1348
		free($2);
		free($4);
Alexandre Julliard's avatar
Alexandre Julliard committed
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
		}
	;

itemex_p_options
	: /* Empty */			{ $$ = new_itemex_opt(0, 0, 0, 0); }
	| ',' expr {
		$$ = new_itemex_opt($2, 0, 0, 0);
		$$->gotid = TRUE;
		}
	| ',' e_expr ',' expr {
		$$ = new_itemex_opt($2 ? *($2) : 0, $4, 0, 0);
1360
		free($2);
Alexandre Julliard's avatar
Alexandre Julliard committed
1361 1362 1363 1364 1365
		$$->gotid = TRUE;
		$$->gottype = TRUE;
		}
	| ',' e_expr ',' e_expr ',' expr {
		$$ = new_itemex_opt($2 ? *($2) : 0, $4 ? *($4) : 0, $6, 0);
1366 1367
		free($2);
		free($4);
Alexandre Julliard's avatar
Alexandre Julliard committed
1368 1369 1370 1371 1372 1373
		$$->gotid = TRUE;
		$$->gottype = TRUE;
		$$->gotstate = TRUE;
		}
	| ',' e_expr ',' e_expr ',' e_expr ',' expr {
		$$ = new_itemex_opt($2 ? *($2) : 0, $4 ? *($4) : 0, $6 ? *($6) : 0, $8);
1374 1375 1376
		free($2);
		free($4);
		free($6);
Alexandre Julliard's avatar
Alexandre Julliard committed
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
		$$->gotid = TRUE;
		$$->gottype = TRUE;
		$$->gotstate = TRUE;
		$$->gothelpid = TRUE;
		}
	;

/* ------------------------------ StringTable ------------------------------ */
/* Stringtables are parsed differently than other resources because their
 * layout is substantially different from other resources.
 * The table is parsed through a _global_ variable 'tagstt' which holds the
 * current stringtable descriptor (stringtable_t *) and 'sttres' that holds a
 * list of stringtables of different languages.
 */
stringtable
	: stt_head tBEGIN strings tEND {
		if(!$3)
		{
1395
			yyerror("Stringtable must have at least one entry");
Alexandre Julliard's avatar
Alexandre Julliard committed
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
		}
		else
		{
			stringtable_t *stt;
			/* Check if we added to a language table or created
			 * a new one.
			 */
			 for(stt = sttres; stt; stt = stt->next)
			 {
				if(stt == tagstt)
					break;
			 }
			 if(!stt)
			 {
				/* It is a new one */
				if(sttres)
				{
					sttres->prev = tagstt;
					tagstt->next = sttres;
					sttres = tagstt;
				}
				else
					sttres = tagstt;
			 }
1420
			 /* Else, we're done */
Alexandre Julliard's avatar
Alexandre Julliard committed
1421
		}
1422 1423
		free(tagstt_memopt);
		tagstt_memopt = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
1424 1425 1426 1427 1428 1429

		$$ = tagstt;
		}
	;

/* This is to get the language of the currently parsed stringtable */
1430
stt_head: tSTRINGTABLE loadmemopts opt_lvc {
Alexandre Julliard's avatar
Alexandre Julliard committed
1431 1432 1433 1434 1435
		if((tagstt = find_stringtable($3)) == NULL)
			tagstt = new_stringtable($3);
		tagstt_memopt = $2;
		tagstt_version = $3->version;
		tagstt_characts = $3->characts;
1436
		free($3);
Alexandre Julliard's avatar
Alexandre Julliard committed
1437 1438 1439 1440 1441 1442 1443
		}
	;

strings	: /* Empty */	{ $$ = NULL; }
	| strings expr opt_comma tSTRING {
		int i;
		assert(tagstt != NULL);
1444
		if($2 > 65535 || $2 < -32768)
1445
			yyerror("Stringtable entry's ID out of range (%d)", $2);
Alexandre Julliard's avatar
Alexandre Julliard committed
1446 1447 1448 1449
		/* Search for the ID */
		for(i = 0; i < tagstt->nentries; i++)
		{
			if(tagstt->entries[i].id == $2)
1450
				yyerror("Stringtable ID %d already in use", $2);
Alexandre Julliard's avatar
Alexandre Julliard committed
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
		}
		/* If we get here, then we have a new unique entry */
		tagstt->nentries++;
		tagstt->entries = xrealloc(tagstt->entries, sizeof(tagstt->entries[0]) * tagstt->nentries);
		tagstt->entries[tagstt->nentries-1].id = $2;
		tagstt->entries[tagstt->nentries-1].str = $4;
		if(tagstt_memopt)
			tagstt->entries[tagstt->nentries-1].memopt = *tagstt_memopt;
		else
			tagstt->entries[tagstt->nentries-1].memopt = WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE | WRC_MO_PURE;
		tagstt->entries[tagstt->nentries-1].version = tagstt_version;
		tagstt->entries[tagstt->nentries-1].characts = tagstt_characts;

1464
		if(pedantic && !$4->size)
1465
			parser_warning("Zero length strings make no sense\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1466
		if(!win32 && $4->size > 254)
1467
			yyerror("Stringtable entry more than 254 characters");
Alexandre Julliard's avatar
Alexandre Julliard committed
1468
		if(win32 && $4->size > 65534) /* Hmm..., does this happen? */
1469
			yyerror("Stringtable entry more than 65534 characters (probably something else that went wrong)");
Alexandre Julliard's avatar
Alexandre Julliard committed
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
		$$ = tagstt;
		}
	;

opt_comma	/* There seem to be two ways to specify a stringtable... */
	: /* Empty */
	| ','
	;

/* ------------------------------ VersionInfo ------------------------------ */
versioninfo
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
	: tVERSIONINFO loadmemopts fix_version tBEGIN ver_blocks tEND {
		$$ = $3;
		if($2)
		{
			$$->memopt = *($2);
			free($2);
		}
		else
			$$->memopt = WRC_MO_MOVEABLE | (win32 ? WRC_MO_PURE : 0);
		$$->blocks = get_ver_block_head($5);
		/* Set language; there is no version or characteristics */
		$$->lvc.language = dup_language(currentlanguage);
Alexandre Julliard's avatar
Alexandre Julliard committed
1493 1494 1495 1496 1497
		}
	;

fix_version
	: /* Empty */			{ $$ = new_versioninfo(); }
1498
	| fix_version tFILEVERSION expr ',' expr ',' expr ',' expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1499
		if($1->gotit.fv)
1500
			yyerror("FILEVERSION already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1501 1502 1503 1504 1505 1506 1507
		$$ = $1;
		$$->filever_maj1 = $3;
		$$->filever_maj2 = $5;
		$$->filever_min1 = $7;
		$$->filever_min2 = $9;
		$$->gotit.fv = 1;
		}
1508
	| fix_version tPRODUCTVERSION expr ',' expr ',' expr ',' expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1509
		if($1->gotit.pv)
1510
			yyerror("PRODUCTVERSION already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1511 1512 1513 1514 1515 1516 1517
		$$ = $1;
		$$->prodver_maj1 = $3;
		$$->prodver_maj2 = $5;
		$$->prodver_min1 = $7;
		$$->prodver_min2 = $9;
		$$->gotit.pv = 1;
		}
1518
	| fix_version tFILEFLAGS expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1519
		if($1->gotit.ff)
1520
			yyerror("FILEFLAGS already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1521 1522 1523 1524
		$$ = $1;
		$$->fileflags = $3;
		$$->gotit.ff = 1;
		}
1525
	| fix_version tFILEFLAGSMASK expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1526
		if($1->gotit.ffm)
1527
			yyerror("FILEFLAGSMASK already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1528 1529 1530 1531
		$$ = $1;
		$$->fileflagsmask = $3;
		$$->gotit.ffm = 1;
		}
1532
	| fix_version tFILEOS expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1533
		if($1->gotit.fo)
1534
			yyerror("FILEOS already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1535 1536 1537 1538
		$$ = $1;
		$$->fileos = $3;
		$$->gotit.fo = 1;
		}
1539
	| fix_version tFILETYPE expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1540
		if($1->gotit.ft)
1541
			yyerror("FILETYPE already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1542 1543 1544 1545
		$$ = $1;
		$$->filetype = $3;
		$$->gotit.ft = 1;
		}
1546
	| fix_version tFILESUBTYPE expr {
Alexandre Julliard's avatar
Alexandre Julliard committed
1547
		if($1->gotit.fst)
1548
			yyerror("FILESUBTYPE already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
		$$ = $1;
		$$->filesubtype = $3;
		$$->gotit.fst = 1;
		}
	;

ver_blocks
	: /* Empty */			{ $$ = NULL; }
	| ver_blocks ver_block {
		$$ = $2;
		$$->prev = $1;
		if($1)
			$1->next = $$;
		}
	;

ver_block
1566
	: tBLOCK tSTRING tBEGIN ver_values tEND {
Alexandre Julliard's avatar
Alexandre Julliard committed
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
		$$ = new_ver_block();
		$$->name = $2;
		$$->values = get_ver_value_head($4);
		}
	;

ver_values
	: /* Empty */			{ $$ = NULL; }
	| ver_values ver_value {
		$$ = $2;
		$$->prev = $1;
		if($1)
			$1->next = $$;
		}
	;

ver_value
	: ver_block {
		$$ = new_ver_value();
		$$->type = val_block;
		$$->value.block = $1;
		}
1589
	| tVALUE tSTRING ',' tSTRING {
Alexandre Julliard's avatar
Alexandre Julliard committed
1590 1591 1592 1593 1594
		$$ = new_ver_value();
		$$->type = val_str;
		$$->key = $2;
		$$->value.str = $4;
		}
1595
	| tVALUE tSTRING ',' ver_words {
Alexandre Julliard's avatar
Alexandre Julliard committed
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
		$$ = new_ver_value();
		$$->type = val_words;
		$$->key = $2;
		$$->value.words = $4;
		}
	;

ver_words
	: expr			{ $$ = new_ver_words($1); }
	| ver_words ',' expr	{ $$ = add_ver_words($1, $3); }
	;

1608
/* ------------------------------ Toolbar ------------------------------ */
1609
toolbar: tTOOLBAR loadmemopts expr ',' expr opt_lvc tBEGIN toolbar_items tEND {
1610 1611 1612 1613 1614 1615
		int nitems;
		toolbar_item_t *items = get_tlbr_buttons_head($8, &nitems);
		$$ = new_toolbar($3, $5, items, nitems);
		if($2)
		{
			$$->memopt = *($2);
1616
			free($2);
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
		}
		else
		{
			$$->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE;
		}
		if($6)
		{
			$$->lvc = *($6);
			free($6);
		}
		if(!$$->lvc.language)
		{
			$$->lvc.language = dup_language(currentlanguage);
		}
		}
	;

toolbar_items
	:  /* Empty */			{ $$ = NULL; }
1636
	| toolbar_items tBUTTON expr	{
1637 1638
		toolbar_item_t *idrec = new_toolbar_item();
		idrec->id = $3;
1639
		$$ = ins_tlbr_button($1, idrec);
1640
		}
1641
	| toolbar_items tSEPARATOR	{
1642 1643
		toolbar_item_t *idrec = new_toolbar_item();
		idrec->id = 0;
1644
		$$ = ins_tlbr_button($1, idrec);
1645 1646 1647
	}
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
/* ------------------------------ Memory options ------------------------------ */
loadmemopts
	: /* Empty */		{ $$ = NULL; }
	| loadmemopts lamo {
		if($1)
		{
			*($1) |= *($2);
			$$ = $1;
			free($2);
		}
		else
			$$ = $2;
		}
	| loadmemopts lama {
		if($1)
		{
			*($1) &= *($2);
			$$ = $1;
			free($2);
		}
		else
		{
			*$2 &= WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE | WRC_MO_PURE;
			$$ = $2;
		}
		}
	;

1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
lamo	: tPRELOAD	{ $$ = new_int(WRC_MO_PRELOAD);
			  if (win32 && pedantic) parser_warning("PRELOAD is ignored in 32-bit mode\n"); }
	| tMOVEABLE	{ $$ = new_int(WRC_MO_MOVEABLE);
			  if (win32 && pedantic) parser_warning("MOVEABLE is ignored in 32-bit mode\n"); }
	| tDISCARDABLE	{ $$ = new_int(WRC_MO_DISCARDABLE);
			  if (win32 && pedantic) parser_warning("DISCARDABLE is ignored in 32-bit mode\n"); }
	| tPURE		{ $$ = new_int(WRC_MO_PURE);
			  if (win32 && pedantic) parser_warning("PURE is ignored in 32-bit mode\n"); }
	;

lama	: tLOADONCALL	{ $$ = new_int(~WRC_MO_PRELOAD);
			  if (win32 && pedantic) parser_warning("LOADONCALL is ignored in 32-bit mode\n"); }
	| tFIXED	{ $$ = new_int(~WRC_MO_MOVEABLE);
			  if (win32 && pedantic) parser_warning("FIXED is ignored in 32-bit mode\n"); }
	| tIMPURE	{ $$ = new_int(~WRC_MO_PURE);
			  if (win32 && pedantic) parser_warning("IMPURE is ignored in 32-bit mode\n"); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1692 1693 1694 1695 1696 1697
	;

/* ------------------------------ Win32 options ------------------------------ */
opt_lvc	: /* Empty */		{ $$ = new_lvc(); }
	| opt_lvc opt_language {
		if(!win32)
1698
			parser_warning("LANGUAGE not supported in 16-bit mode\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1699
		if($1->language)
1700
			yyerror("Language already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1701 1702 1703 1704 1705
		$$ = $1;
		$1->language = $2;
		}
	| opt_lvc opt_characts {
		if(!win32)
1706
			parser_warning("CHARACTERISTICS not supported in 16-bit mode\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1707
		if($1->characts)
1708
			yyerror("Characteristics already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1709 1710 1711 1712 1713
		$$ = $1;
		$1->characts = $2;
		}
	| opt_lvc opt_version {
		if(!win32)
1714
			parser_warning("VERSION not supported in 16-bit mode\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1715
		if($1->version)
1716
			yyerror("Version already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1717 1718 1719 1720 1721
		$$ = $1;
		$1->version = $2;
		}
	;

1722 1723 1724 1725 1726 1727 1728
	/*
	 * This here is another s/r conflict on {bi,u}nary + and -.
	 * It is due to the look-ahead which must determine when the
	 * rule opt_language ends. It could be solved with adding a
	 * tNL at the end, but that seems unreasonable to do.
	 * The conflict is now moved to the expression handling below.
	 */
Alexandre Julliard's avatar
Alexandre Julliard committed
1729
opt_language
1730 1731
	: tLANGUAGE expr ',' expr	{ $$ = new_language($2, $4);
					  if (get_language_codepage($2, $4) == -1)
1732
						yyerror( "Language %04x is not supported", ($4<<10) + $2);
1733
					}
Alexandre Julliard's avatar
Alexandre Julliard committed
1734 1735 1736
	;

opt_characts
1737
	: tCHARACTERISTICS expr		{ $$ = new_characts($2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1738 1739 1740
	;

opt_version
1741
	: tVERSION expr			{ $$ = new_version($2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1742 1743
	;

1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
/* ------------------------------ Raw data handling ------------------------------ */
raw_data: opt_lvc tBEGIN raw_elements tEND {
		if($1)
		{
			$3->lvc = *($1);
			free($1);
		}

		if(!$3->lvc.language)
			$3->lvc.language = dup_language(currentlanguage);

		$$ = $3;
		}
Alexandre Julliard's avatar
Alexandre Julliard committed
1757 1758 1759
	;

raw_elements
1760 1761
	: tRAWDATA			{ $$ = $1; }
	| tNUMBER			{ $$ = int2raw_data($1); }
1762
	| '-' tNUMBER	           	{ $$ = int2raw_data(-($2)); }
1763
	| tLNUMBER			{ $$ = long2raw_data($1); }
1764
	| '-' tLNUMBER	           	{ $$ = long2raw_data(-($2)); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1765
	| tSTRING			{ $$ = str2raw_data($1); }
1766 1767
	| raw_elements opt_comma tRAWDATA { $$ = merge_raw_data($1, $3); free($3->data); free($3); }
	| raw_elements opt_comma tNUMBER  { $$ = merge_raw_data_int($1, $3); }
1768
	| raw_elements opt_comma '-' tNUMBER  { $$ = merge_raw_data_int($1, -($4)); }
1769
	| raw_elements opt_comma tLNUMBER { $$ = merge_raw_data_long($1, $3); }
1770
	| raw_elements opt_comma '-' tLNUMBER { $$ = merge_raw_data_long($1, -($4)); }
1771
	| raw_elements opt_comma tSTRING  { $$ = merge_raw_data_str($1, $3); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1772 1773
	;

1774
/* File data or raw data */
1775
file_raw: filename	{ $$ = load_file($1,dup_language(currentlanguage)); }
1776 1777 1778
	| raw_data	{ $$ = $1; }
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
1779
/* ------------------------------ Win32 expressions ------------------------------ */
1780 1781
/* All win16 numbers are also handled here. This is inconsistent with MS
 * resource compiler, but what the heck, it's just handy to have.
Alexandre Julliard's avatar
Alexandre Julliard committed
1782 1783 1784 1785
 */
e_expr	: /* Empty */	{ $$ = 0; }
	| expr		{ $$ = new_int($1); }
	;
1786 1787

/* This rule moves ALL s/r conflicts on {bi,u}nary - and + to here */
Eric Pouech's avatar
Eric Pouech committed
1788
expr	: xpr	{ $$ = ($1); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1789 1790 1791 1792 1793 1794 1795 1796
	;

xpr	: xpr '+' xpr	{ $$ = ($1) + ($3); }
	| xpr '-' xpr	{ $$ = ($1) - ($3); }
	| xpr '|' xpr	{ $$ = ($1) | ($3); }
	| xpr '&' xpr	{ $$ = ($1) & ($3); }
	| xpr '*' xpr	{ $$ = ($1) * ($3); }
	| xpr '/' xpr	{ $$ = ($1) / ($3); }
1797
	| xpr '^' xpr	{ $$ = ($1) ^ ($3); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1798
	| '~' xpr	{ $$ = ~($2); }
1799 1800
	| '-' xpr %prec pUPM	{ $$ = -($2); }
	| '+' xpr %prec pUPM	{ $$ = $2; }
Alexandre Julliard's avatar
Alexandre Julliard committed
1801
	| '(' xpr ')'	{ $$ = $2; }
1802 1803
	| any_num	{ $$ = $1; }
	| tNOT any_num	{ $$ = ~($2); }
Alexandre Julliard's avatar
Alexandre Julliard committed
1804
	;
1805

1806 1807
any_num	: tNUMBER	{ $$ = $1; }
	| tLNUMBER	{ $$ = $1; }
1808 1809
	;

Alexandre Julliard's avatar
Alexandre Julliard committed
1810 1811
%%
/* Dialog specific functions */
1812
static dialog_t *dialog_style(style_t * st, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1813 1814
{
	assert(dlg != NULL);
1815 1816 1817 1818 1819
	if(dlg->style == NULL)
	{
		dlg->style = new_style(0,0);
	}

Alexandre Julliard's avatar
Alexandre Julliard committed
1820 1821
	if(dlg->gotstyle)
	{
1822
		parser_warning("Style already defined, or-ing together\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1823
	}
1824 1825 1826 1827 1828 1829 1830
	else
	{
		dlg->style->or_mask = 0;
		dlg->style->and_mask = 0;
	}
	dlg->style->or_mask |= st->or_mask;
	dlg->style->and_mask |= st->and_mask;
Alexandre Julliard's avatar
Alexandre Julliard committed
1831
	dlg->gotstyle = TRUE;
1832
	free(st);
Alexandre Julliard's avatar
Alexandre Julliard committed
1833 1834 1835
	return dlg;
}

1836
static dialog_t *dialog_exstyle(style_t *st, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1837 1838
{
	assert(dlg != NULL);
1839 1840 1841 1842 1843
	if(dlg->exstyle == NULL)
	{
		dlg->exstyle = new_style(0,0);
	}

Alexandre Julliard's avatar
Alexandre Julliard committed
1844 1845
	if(dlg->gotexstyle)
	{
1846
		parser_warning("ExStyle already defined, or-ing together\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
1847
	}
1848 1849 1850 1851 1852 1853 1854
	else
	{
		dlg->exstyle->or_mask = 0;
		dlg->exstyle->and_mask = 0;
	}
	dlg->exstyle->or_mask |= st->or_mask;
	dlg->exstyle->and_mask |= st->and_mask;
Alexandre Julliard's avatar
Alexandre Julliard committed
1855
	dlg->gotexstyle = TRUE;
1856
	free(st);
Alexandre Julliard's avatar
Alexandre Julliard committed
1857 1858 1859
	return dlg;
}

1860
static dialog_t *dialog_caption(string_t *s, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1861 1862 1863
{
	assert(dlg != NULL);
	if(dlg->title)
1864
		yyerror("Caption already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1865 1866 1867 1868
	dlg->title = s;
	return dlg;
}

1869
static dialog_t *dialog_font(font_id_t *f, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1870 1871 1872
{
	assert(dlg != NULL);
	if(dlg->font)
1873
		yyerror("Font already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1874 1875 1876 1877
	dlg->font = f;
	return dlg;
}

1878
static dialog_t *dialog_class(name_id_t *n, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1879 1880 1881
{
	assert(dlg != NULL);
	if(dlg->dlgclass)
1882
		yyerror("Class already defined");
Alexandre Julliard's avatar
Alexandre Julliard committed
1883 1884 1885 1886
	dlg->dlgclass = n;
	return dlg;
}

1887
static dialog_t *dialog_menu(name_id_t *m, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1888 1889 1890 1891 1892 1893 1894 1895
{
	assert(dlg != NULL);
	if(dlg->menu)
		yyerror("Menu already defined");
	dlg->menu = m;
	return dlg;
}

1896
static dialog_t *dialog_language(language_t *l, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1897 1898 1899 1900 1901 1902 1903 1904
{
	assert(dlg != NULL);
	if(dlg->lvc.language)
		yyerror("Language already defined");
	dlg->lvc.language = l;
	return dlg;
}

1905
static dialog_t *dialog_characteristics(characts_t *c, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1906 1907 1908 1909 1910 1911 1912 1913
{
	assert(dlg != NULL);
	if(dlg->lvc.characts)
		yyerror("Characteristics already defined");
	dlg->lvc.characts = c;
	return dlg;
}

1914
static dialog_t *dialog_version(version_t *v, dialog_t *dlg)
Alexandre Julliard's avatar
Alexandre Julliard committed
1915 1916 1917 1918 1919 1920 1921 1922 1923
{
	assert(dlg != NULL);
	if(dlg->lvc.version)
		yyerror("Version already defined");
	dlg->lvc.version = v;
	return dlg;
}

/* Controls specific functions */
1924
static control_t *ins_ctrl(int type, int special_style, control_t *ctrl, control_t *prev)
Alexandre Julliard's avatar
Alexandre Julliard committed
1925
{
1926 1927 1928
	/* Hm... this seems to be jammed in at all time... */
	int defaultstyle = WS_CHILD | WS_VISIBLE;

Alexandre Julliard's avatar
Alexandre Julliard committed
1929 1930
	assert(ctrl != NULL);
	ctrl->prev = prev;
1931

Alexandre Julliard's avatar
Alexandre Julliard committed
1932 1933
	if(prev)
		prev->next = ctrl;
1934

1935 1936 1937 1938 1939 1940 1941 1942
	/* Check for duplicate identifiers */
	while (prev)
	{
		if (ctrl->id != -1 && ctrl->id == prev->id)
                        parser_warning("Duplicate dialog control id %d\n", ctrl->id);
		prev = prev->prev;
	}

Alexandre Julliard's avatar
Alexandre Julliard committed
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
	if(type != -1)
	{
		ctrl->ctlclass = new_name_id();
		ctrl->ctlclass->type = name_ord;
		ctrl->ctlclass->name.i_name = type;
	}

	switch(type)
	{
	case CT_BUTTON:
1953 1954
		if(special_style != BS_GROUPBOX && special_style != BS_RADIOBUTTON)
			defaultstyle |= WS_TABSTOP;
Alexandre Julliard's avatar
Alexandre Julliard committed
1955 1956
		break;
	case CT_EDIT:
1957
		defaultstyle |= WS_TABSTOP | WS_BORDER;
Alexandre Julliard's avatar
Alexandre Julliard committed
1958 1959
		break;
	case CT_LISTBOX:
1960
		defaultstyle |= LBS_NOTIFY | WS_BORDER;
Alexandre Julliard's avatar
Alexandre Julliard committed
1961 1962
		break;
	case CT_COMBOBOX:
1963
                if (!ctrl->gotstyle || !(ctrl->style->or_mask & (CBS_SIMPLE | CBS_DROPDOWN | CBS_DROPDOWNLIST)))
1964
                    defaultstyle |= CBS_SIMPLE;
Alexandre Julliard's avatar
Alexandre Julliard committed
1965 1966
		break;
	case CT_STATIC:
1967 1968
		if(special_style == SS_CENTER || special_style == SS_LEFT || special_style == SS_RIGHT)
			defaultstyle |= WS_GROUP;
Alexandre Julliard's avatar
Alexandre Julliard committed
1969 1970 1971 1972 1973 1974 1975 1976
		break;
	}

	if(!ctrl->gotstyle)	/* Handle default style setting */
	{
		switch(type)
		{
		case CT_EDIT:
1977
			defaultstyle |= ES_LEFT;
Alexandre Julliard's avatar
Alexandre Julliard committed
1978 1979
			break;
		case CT_LISTBOX:
1980
			defaultstyle |= LBS_NOTIFY;
Alexandre Julliard's avatar
Alexandre Julliard committed
1981 1982
			break;
		case CT_COMBOBOX:
1983
			defaultstyle |= CBS_SIMPLE | WS_TABSTOP;
Alexandre Julliard's avatar
Alexandre Julliard committed
1984 1985
			break;
		case CT_SCROLLBAR:
1986
			defaultstyle |= SBS_HORZ;
Alexandre Julliard's avatar
Alexandre Julliard committed
1987 1988
			break;
		case CT_BUTTON:
1989
			switch(special_style)
Alexandre Julliard's avatar
Alexandre Julliard committed
1990 1991 1992 1993 1994 1995 1996 1997 1998
			{
			case BS_CHECKBOX:
			case BS_DEFPUSHBUTTON:
			case BS_PUSHBUTTON:
/*			case BS_PUSHBOX:	*/
			case BS_AUTORADIOBUTTON:
			case BS_AUTO3STATE:
			case BS_3STATE:
			case BS_AUTOCHECKBOX:
1999
				defaultstyle |= WS_TABSTOP;
Alexandre Julliard's avatar
Alexandre Julliard committed
2000 2001
				break;
			default:
2002
				parser_warning("Unknown default button control-style 0x%08x\n", special_style);
2003
			case BS_GROUPBOX:
Alexandre Julliard's avatar
Alexandre Julliard committed
2004 2005 2006 2007 2008 2009
			case BS_RADIOBUTTON:
				break;
			}
			break;

		case CT_STATIC:
2010
			switch(special_style)
Alexandre Julliard's avatar
Alexandre Julliard committed
2011 2012 2013 2014
			{
			case SS_LEFT:
			case SS_RIGHT:
			case SS_CENTER:
2015
				defaultstyle |= WS_GROUP;
Alexandre Julliard's avatar
Alexandre Julliard committed
2016 2017 2018 2019
				break;
			case SS_ICON:	/* Special case */
				break;
			default:
2020
				parser_warning("Unknown default static control-style 0x%08x\n", special_style);
Alexandre Julliard's avatar
Alexandre Julliard committed
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
				break;
			}
			break;
		case -1:	/* Generic control */
			goto byebye;

		default:
			yyerror("Internal error (report this): Got weird control type 0x%08x", type);
		}
	}

	/* The SS_ICON flag is always forced in for icon controls */
2033 2034
	if(type == CT_STATIC && special_style == SS_ICON)
		defaultstyle |= SS_ICON;
Alexandre Julliard's avatar
Alexandre Julliard committed
2035

2036 2037 2038 2039 2040
	if (!ctrl->gotstyle)
		ctrl->style = new_style(0,0);

	/* combine all styles */
	ctrl->style->or_mask = ctrl->style->or_mask | defaultstyle | special_style;
Alexandre Julliard's avatar
Alexandre Julliard committed
2041 2042
	ctrl->gotstyle = TRUE;
byebye:
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
	/* combine with NOT mask */
	if (ctrl->gotstyle)
	{
		ctrl->style->or_mask &= ~(ctrl->style->and_mask);
		ctrl->style->and_mask = 0;
	}
	if (ctrl->gotexstyle)
	{
		ctrl->exstyle->or_mask &= ~(ctrl->exstyle->and_mask);
		ctrl->exstyle->and_mask = 0;
	}
Alexandre Julliard's avatar
Alexandre Julliard committed
2054 2055 2056
	return ctrl;
}

2057 2058 2059 2060 2061 2062 2063 2064 2065
static int get_class_idW(const WCHAR *cc)
{
        static const WCHAR szBUTTON[]    = {'B','U','T','T','O','N',0};
        static const WCHAR szCOMBOBOX[]  = {'C','O','M','B','O','B','O','X',0};
        static const WCHAR szLISTBOX[]   = {'L','I','S','T','B','O','X',0};
        static const WCHAR szEDIT[]      = {'E','D','I','T',0};
        static const WCHAR szSTATIC[]    = {'S','T','A','T','I','C',0};
        static const WCHAR szSCROLLBAR[] = {'S','C','R','O','L','L','B','A','R',0};

2066 2067 2068 2069 2070 2071
        if(!compare_striW(szBUTTON, cc)) return CT_BUTTON;
        if(!compare_striW(szCOMBOBOX, cc)) return CT_COMBOBOX;
        if(!compare_striW(szLISTBOX, cc)) return CT_LISTBOX;
        if(!compare_striW(szEDIT, cc)) return CT_EDIT;
        if(!compare_striW(szSTATIC, cc)) return CT_STATIC;
        if(!compare_striW(szSCROLLBAR, cc)) return CT_SCROLLBAR;
2072 2073 2074 2075 2076
        return -1;
}

static int get_class_idA(const char *cc)
{
2077 2078 2079 2080 2081 2082
        if(!compare_striA("BUTTON", cc)) return CT_BUTTON;
        if(!compare_striA("COMBOBOX", cc)) return CT_COMBOBOX;
        if(!compare_striA("LISTBOX", cc)) return CT_LISTBOX;
        if(!compare_striA("EDIT", cc)) return CT_EDIT;
        if(!compare_striA("STATIC", cc)) return CT_STATIC;
        if(!compare_striA("SCROLLBAR", cc)) return CT_SCROLLBAR;
2083 2084 2085 2086
        return -1;
}


2087
static name_id_t *convert_ctlclass(name_id_t *cls)
Alexandre Julliard's avatar
Alexandre Julliard committed
2088 2089 2090 2091 2092 2093
{
	int iclass;

	if(cls->type == name_ord)
		return cls;
	assert(cls->type == name_str);
2094 2095 2096 2097 2098 2099
        if(cls->name.s_name->type == str_unicode)
                iclass = get_class_idW(cls->name.s_name->str.wstr);
        else
                iclass = get_class_idA(cls->name.s_name->str.cstr);

        if (iclass == -1)
Alexandre Julliard's avatar
Alexandre Julliard committed
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
		return cls;	/* No default, return user controlclass */

	free(cls->name.s_name->str.cstr);
	free(cls->name.s_name);
	cls->type = name_ord;
	cls->name.i_name = iclass;
	return cls;
}

/* Accelerator specific functions */
2110
static event_t *add_event(int key, int id, int flags, event_t *prev)
Alexandre Julliard's avatar
Alexandre Julliard committed
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125
{
	event_t *ev = new_event();

	if((flags & (WRC_AF_VIRTKEY | WRC_AF_ASCII)) == (WRC_AF_VIRTKEY | WRC_AF_ASCII))
		yyerror("Cannot use both ASCII and VIRTKEY");

	ev->key = key;
	ev->id = id;
	ev->flags = flags & ~WRC_AF_ASCII;
	ev->prev = prev;
	if(prev)
		prev->next = ev;
	return ev;
}

2126
static event_t *add_string_event(string_t *key, int id, int flags, event_t *prev)
Alexandre Julliard's avatar
Alexandre Julliard committed
2127
{
2128
    event_t *ev = new_event();
Alexandre Julliard's avatar
Alexandre Julliard committed
2129

2130
    ev->str = key;
2131 2132 2133 2134 2135 2136
    ev->id = id;
    ev->flags = flags & ~WRC_AF_ASCII;
    ev->prev = prev;
    if(prev)
        prev->next = ev;
    return ev;
Alexandre Julliard's avatar
Alexandre Julliard committed
2137 2138 2139
}

/* MenuEx specific functions */
2140
static itemex_opt_t *new_itemex_opt(int id, int type, int state, int helpid)
Alexandre Julliard's avatar
Alexandre Julliard committed
2141
{
2142
	itemex_opt_t *opt = xmalloc(sizeof(itemex_opt_t));
2143
	memset( opt, 0, sizeof(*opt) );
Alexandre Julliard's avatar
Alexandre Julliard committed
2144 2145 2146 2147 2148 2149 2150 2151
	opt->id = id;
	opt->type = type;
	opt->state = state;
	opt->helpid = helpid;
	return opt;
}

/* Raw data functions */
2152
static raw_data_t *load_file(string_t *filename, language_t *lang)
Alexandre Julliard's avatar
Alexandre Julliard committed
2153
{
2154
	FILE *fp = NULL;
2155
	char *path, *name;
Alexandre Julliard's avatar
Alexandre Julliard committed
2156
	raw_data_t *rd;
2157 2158 2159 2160 2161 2162 2163

	if (filename->type == str_unicode)
		name = convert_string_utf8( filename, 0 );
        else
		name = xstrdup( filename->str.cstr );
	if (!(path = wpp_find_include(name, input_name)))
		yyerror("Cannot open file %s", name);
2164
	if (!(fp = fopen( path, "rb" )))
2165
		yyerror("Cannot open file %s", name);
2166
	free( path );
Alexandre Julliard's avatar
Alexandre Julliard committed
2167 2168 2169 2170
	rd = new_raw_data();
	fseek(fp, 0, SEEK_END);
	rd->size = ftell(fp);
	fseek(fp, 0, SEEK_SET);
2171 2172
	if (rd->size)
	{
2173
		rd->data = xmalloc(rd->size);
2174 2175 2176
		fread(rd->data, rd->size, 1, fp);
	}
	else rd->data = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
2177
	fclose(fp);
2178
	rd->lvc.language = lang;
2179
	free(name);
Alexandre Julliard's avatar
Alexandre Julliard committed
2180 2181 2182
	return rd;
}

2183
static raw_data_t *int2raw_data(int i)
Alexandre Julliard's avatar
Alexandre Julliard committed
2184 2185
{
	raw_data_t *rd;
2186

2187 2188
	if( ( i >= 0 && (int)((unsigned short)i) != i) ||
            ( i < 0  && (int)((short)i) != i) )
2189
		parser_warning("Integer constant out of 16bit range (%d), truncated to %d\n", i, (short)i);
2190

Alexandre Julliard's avatar
Alexandre Julliard committed
2191 2192
	rd = new_raw_data();
	rd->size = sizeof(short);
2193
	rd->data = xmalloc(rd->size);
2194 2195
        rd->data[0] = i;
        rd->data[1] = i >> 8;
Alexandre Julliard's avatar
Alexandre Julliard committed
2196 2197 2198
	return rd;
}

2199
static raw_data_t *long2raw_data(int i)
2200 2201 2202 2203
{
	raw_data_t *rd;
	rd = new_raw_data();
	rd->size = sizeof(int);
2204
	rd->data = xmalloc(rd->size);
2205 2206 2207 2208
        rd->data[0] = i;
        rd->data[1] = i >> 8;
        rd->data[2] = i >> 16;
        rd->data[3] = i >> 24;
2209 2210 2211
	return rd;
}

2212
static raw_data_t *str2raw_data(string_t *str)
Alexandre Julliard's avatar
Alexandre Julliard committed
2213 2214 2215 2216
{
	raw_data_t *rd;
	rd = new_raw_data();
	rd->size = str->size * (str->type == str_char ? 1 : 2);
2217
	rd->data = xmalloc(rd->size);
2218
	switch (str->type)
2219
	{
2220 2221 2222 2223 2224
	case str_char:
		memcpy(rd->data, str->str.cstr, rd->size);
		break;
	case str_unicode:
            {
2225
		int i;
2226
		for(i = 0; i < str->size; i++)
2227
		{
2228 2229
			rd->data[2*i + 0] = str->str.wstr[i];
			rd->data[2*i + 1] = str->str.wstr[i] >> 8;
2230
		}
2231
            }
2232
	}
Alexandre Julliard's avatar
Alexandre Julliard committed
2233 2234 2235
	return rd;
}

2236
static raw_data_t *merge_raw_data(raw_data_t *r1, raw_data_t *r2)
Alexandre Julliard's avatar
Alexandre Julliard committed
2237 2238 2239 2240 2241 2242 2243
{
	r1->data = xrealloc(r1->data, r1->size + r2->size);
	memcpy(r1->data + r1->size, r2->data, r2->size);
	r1->size += r2->size;
	return r1;
}

2244
static raw_data_t *merge_raw_data_int(raw_data_t *r1, int i)
Alexandre Julliard's avatar
Alexandre Julliard committed
2245 2246 2247 2248 2249 2250 2251 2252
{
	raw_data_t *t = int2raw_data(i);
	merge_raw_data(r1, t);
	free(t->data);
	free(t);
	return r1;
}

2253
static raw_data_t *merge_raw_data_long(raw_data_t *r1, int i)
2254 2255 2256 2257 2258 2259 2260 2261
{
	raw_data_t *t = long2raw_data(i);
	merge_raw_data(r1, t);
	free(t->data);
	free(t);
	return r1;
}

2262
static raw_data_t *merge_raw_data_str(raw_data_t *r1, string_t *str)
Alexandre Julliard's avatar
Alexandre Julliard committed
2263 2264 2265 2266 2267 2268 2269 2270 2271
{
	raw_data_t *t = str2raw_data(str);
	merge_raw_data(r1, t);
	free(t->data);
	free(t);
	return r1;
}

/* Function the go back in a list to get the head */
2272
static menu_item_t *get_item_head(menu_item_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2273 2274 2275 2276 2277 2278 2279 2280
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

2281
static resource_t *get_resource_head(resource_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2282 2283 2284 2285 2286 2287 2288 2289
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

2290
static ver_block_t *get_ver_block_head(ver_block_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2291 2292 2293 2294 2295 2296 2297 2298
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

2299
static ver_value_t *get_ver_value_head(ver_value_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2300 2301 2302 2303 2304 2305 2306 2307
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

2308
static control_t *get_control_head(control_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2309 2310 2311 2312 2313 2314 2315 2316
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

2317
static event_t *get_event_head(event_t *p)
Alexandre Julliard's avatar
Alexandre Julliard committed
2318 2319 2320 2321 2322 2323 2324 2325 2326
{
	if(!p)
		return NULL;
	while(p->prev)
		p = p->prev;
	return p;
}

/* Find a stringtable with given language */
2327
static stringtable_t *find_stringtable(lvc_t *lvc)
Alexandre Julliard's avatar
Alexandre Julliard committed
2328 2329 2330 2331 2332 2333
{
	stringtable_t *stt;

	assert(lvc != NULL);

	if(!lvc->language)
2334
		lvc->language = dup_language(currentlanguage);
Alexandre Julliard's avatar
Alexandre Julliard committed
2335 2336 2337 2338

	for(stt = sttres; stt; stt = stt->next)
	{
		if(stt->lvc.language->id == lvc->language->id
2339
		&& stt->lvc.language->sub == lvc->language->sub)
Alexandre Julliard's avatar
Alexandre Julliard committed
2340 2341 2342 2343 2344 2345 2346 2347
		{
			/* Found a table with the same language */
			/* The version and characteristics are now handled
			 * in the generation of the individual stringtables.
			 * This enables localized analysis.
			if((stt->lvc.version && lvc->version && *(stt->lvc.version) != *(lvc->version))
			|| (!stt->lvc.version && lvc->version)
			|| (stt->lvc.version && !lvc->version))
2348
				parser_warning("Stringtable's versions are not the same, using first definition\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
2349 2350 2351 2352

			if((stt->lvc.characts && lvc->characts && *(stt->lvc.characts) != *(lvc->characts))
			|| (!stt->lvc.characts && lvc->characts)
			|| (stt->lvc.characts && !lvc->characts))
2353
				parser_warning("Stringtable's characteristics are not the same, using first definition\n");
Alexandre Julliard's avatar
Alexandre Julliard committed
2354 2355 2356 2357 2358 2359 2360 2361
			*/
			return stt;
		}
	}
	return NULL;
}

/* qsort sorting function for string table entries */
Eric Pouech's avatar
Eric Pouech committed
2362
#define STE(p)	((const stt_entry_t *)(p))
2363
static int sort_stt_entry(const void *e1, const void *e2)
Alexandre Julliard's avatar
Alexandre Julliard committed
2364 2365 2366 2367 2368
{
	return STE(e1)->id - STE(e2)->id;
}
#undef STE

2369
static resource_t *build_stt_resources(stringtable_t *stthead)
Alexandre Julliard's avatar
Alexandre Julliard committed
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
{
	stringtable_t *stt;
	stringtable_t *newstt;
	resource_t *rsc;
	resource_t *rsclist = NULL;
	resource_t *rsctail = NULL;
	int i;
	int j;
	DWORD andsum;
	DWORD orsum;
	characts_t *characts;
	version_t *version;

	if(!stthead)
		return NULL;

	/* For all languages defined */
	for(stt = stthead; stt; stt = stt->next)
	{
		assert(stt->nentries > 0);

		/* Sort the entries */
		if(stt->nentries > 1)
			qsort(stt->entries, stt->nentries, sizeof(stt->entries[0]), sort_stt_entry);

		for(i = 0; i < stt->nentries; )
		{
			newstt = new_stringtable(&stt->lvc);
2398
			newstt->entries = xmalloc(16 * sizeof(stt_entry_t));
2399
			memset( newstt->entries, 0, 16 * sizeof(stt_entry_t) );
Alexandre Julliard's avatar
Alexandre Julliard committed
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
			newstt->nentries = 16;
			newstt->idbase = stt->entries[i].id & ~0xf;
			for(j = 0; j < 16 && i < stt->nentries; j++)
			{
				if(stt->entries[i].id - newstt->idbase == j)
				{
					newstt->entries[j] = stt->entries[i];
					i++;
				}
			}
			andsum = ~0;
			orsum = 0;
			characts = NULL;
			version = NULL;
			/* Check individual memory options and get
			 * the first characteristics/version
			 */
			for(j = 0; j < 16; j++)
			{
				if(!newstt->entries[j].str)
					continue;
				andsum &= newstt->entries[j].memopt;
				orsum |= newstt->entries[j].memopt;
				if(!characts)
					characts = newstt->entries[j].characts;
				if(!version)
					version = newstt->entries[j].version;
			}
			if(andsum != orsum)
			{
2430
				warning("Stringtable's memory options are not equal (idbase: %d)\n", newstt->idbase);
Alexandre Julliard's avatar
Alexandre Julliard committed
2431 2432 2433 2434 2435 2436 2437
			}
			/* Check version and characteristics */
			for(j = 0; j < 16; j++)
			{
				if(characts
				&& newstt->entries[j].characts
				&& *newstt->entries[j].characts != *characts)
2438
					warning("Stringtable's characteristics are not the same (idbase: %d)\n", newstt->idbase);
Alexandre Julliard's avatar
Alexandre Julliard committed
2439 2440 2441
				if(version
				&& newstt->entries[j].version
				&& *newstt->entries[j].version != *version)
2442
					warning("Stringtable's versions are not the same (idbase: %d)\n", newstt->idbase);
Alexandre Julliard's avatar
Alexandre Julliard committed
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468
			}
			rsc = new_resource(res_stt, newstt, newstt->memopt, newstt->lvc.language);
			rsc->name = new_name_id();
			rsc->name->type = name_ord;
			rsc->name->name.i_name = (newstt->idbase >> 4) + 1;
			rsc->memopt = andsum; /* Set to least common denominator */
			newstt->memopt = andsum;
			newstt->lvc.characts = characts;
			newstt->lvc.version = version;
			if(!rsclist)
			{
				rsclist = rsc;
				rsctail = rsc;
			}
			else
			{
				rsctail->next = rsc;
				rsc->prev = rsctail;
				rsctail = rsc;
			}
		}
	}
	return rsclist;
}


2469
static toolbar_item_t *ins_tlbr_button(toolbar_item_t *prev, toolbar_item_t *idrec)
2470 2471 2472 2473 2474 2475 2476 2477
{
	idrec->prev = prev;
	if(prev)
		prev->next = idrec;

	return idrec;
}

2478
static toolbar_item_t *get_tlbr_buttons_head(toolbar_item_t *p, int *nitems)
2479 2480 2481 2482 2483
{
	if(!p)
	{
		*nitems = 0;
		return NULL;
2484
	}
2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496

	*nitems = 1;

	while(p->prev)
	{
		(*nitems)++;
		p = p->prev;
	}

	return p;
}

2497 2498
static string_t *make_filename(string_t *str)
{
2499 2500
    int i;

2501 2502
    if(str->type == str_char)
    {
2503
	char *dst = str->str.cstr;
2504 2505

	/* Remove escaped backslash and convert to forward */
2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
        for (i = 0; i < str->size; i++)
        {
            if (str->str.cstr[i] == '\\')
            {
                if (i < str->size - 1 && str->str.cstr[i + 1] == '\\') i++;
                *dst++ = '/';
            }
            else *dst++ = str->str.cstr[i];
        }
        *dst = 0;
        str->size = dst - str->str.cstr;
2517 2518 2519
    }
    else
    {
2520
	WCHAR *dst = str->str.wstr;
2521

2522
	/* Remove escaped backslash and convert to forward */
2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
        for (i = 0; i < str->size; i++)
        {
            if (str->str.wstr[i] == '\\')
            {
                if (i < str->size - 1 && str->str.wstr[i + 1] == '\\') i++;
                *dst++ = '/';
            }
            else *dst++ = str->str.wstr[i];
        }
        *dst = 0;
        str->size = dst - str->str.wstr;
2534 2535
    }
    return str;
2536 2537
}

2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561
/*
 * Process all resources to extract fonts and build
 * a fontdir resource.
 *
 * Note: MS' resource compiler (build 1472) does not
 * handle font resources with different languages.
 * The fontdir is generated in the last active language
 * and font identifiers must be unique across the entire
 * source.
 * This is not logical considering the localization
 * constraints of all other resource types. MS has,
 * most probably, never testet localized fonts. However,
 * using fontresources is rare, so it might not occur
 * in normal applications.
 * Wine does require better localization because a lot
 * of languages are coded into the same executable.
 * Therefore, I will generate fontdirs for *each*
 * localized set of fonts.
 */
static resource_t *build_fontdir(resource_t **fnt, int nfnt)
{
	static int once = 0;
	if(!once)
	{
2562
		warning("Need to parse fonts, not yet implemented (fnt: %p, nfnt: %d)\n", fnt, nfnt);
2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585
		once++;
	}
	return NULL;
}

static resource_t *build_fontdirs(resource_t *tail)
{
	resource_t *rsc;
	resource_t *lst = NULL;
	resource_t **fnt = NULL;	/* List of all fonts */
	int nfnt = 0;
	resource_t **fnd = NULL;	/* List of all fontdirs */
	int nfnd = 0;
	resource_t **lanfnt = NULL;
	int nlanfnt = 0;
	int i;
	name_id_t nid;
	string_t str;
	int fntleft;

	nid.type = name_str;
	nid.name.s_name = &str;
	str.type = str_char;
2586
	str.str.cstr = xstrdup("FONTDIR");
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610
	str.size = 7;

	/* Extract all fonts and fontdirs */
	for(rsc = tail; rsc; rsc = rsc->prev)
	{
		if(rsc->type == res_fnt)
		{
			nfnt++;
			fnt = xrealloc(fnt, nfnt * sizeof(*fnt));
			fnt[nfnt-1] = rsc;
		}
		else if(rsc->type == res_fntdir)
		{
			nfnd++;
			fnd = xrealloc(fnd, nfnd * sizeof(*fnd));
			fnd[nfnd-1] = rsc;
		}
	}

	/* Verify the name of the present fontdirs */
	for(i = 0; i < nfnd; i++)
	{
		if(compare_name_id(&nid, fnd[i]->name))
		{
2611
			warning("User supplied FONTDIR entry has an invalid name '%s', ignored\n",
2612 2613 2614 2615 2616 2617 2618 2619 2620
				get_nameid_str(fnd[i]->name));
			fnd[i] = NULL;
		}
	}

	/* Sanity check */
	if(nfnt == 0)
	{
		if(nfnd != 0)
2621
			warning("Found %d FONTDIR entries without any fonts present\n", nfnd);
2622 2623 2624 2625 2626
		goto clean;
	}

	/* Copy space */
	lanfnt = xmalloc(nfnt * sizeof(*lanfnt));
2627
	memset( lanfnt, 0, nfnt * sizeof(*lanfnt));
2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688

	/* Get all fonts covered by fontdirs */
	for(i = 0; i < nfnd; i++)
	{
		int j;

		if(!fnd[i])
			continue;
		for(j = 0; j < nfnt; j++)
		{
			if(!fnt[j])
				continue;
			if(fnt[j]->lan->id == fnd[i]->lan->id && fnt[j]->lan->sub == fnd[i]->lan->sub)
			{
				lanfnt[nlanfnt] = fnt[j];
				nlanfnt++;
				fnt[j] = NULL;
			}
		}
	}

	/* We now have fonts left where we need to make a fontdir resource */
	for(i = fntleft = 0; i < nfnt; i++)
	{
		if(fnt[i])
			fntleft++;
	}
	while(fntleft)
	{
		/* Get fonts of same language in lanfnt[] */
		for(i = nlanfnt = 0; i < nfnt; i++)
		{
			if(fnt[i])
			{
				if(!nlanfnt)
				{
			addlanfnt:
					lanfnt[nlanfnt] = fnt[i];
					nlanfnt++;
					fnt[i] = NULL;
					fntleft--;
				}
				else if(fnt[i]->lan->id == lanfnt[0]->lan->id && fnt[i]->lan->sub == lanfnt[0]->lan->sub)
					goto addlanfnt;
			}
		}
		/* and build a fontdir */
		rsc = build_fontdir(lanfnt, nlanfnt);
		if(rsc)
		{
			if(lst)
			{
				lst->next = rsc;
				rsc->prev = lst;
			}
			lst = rsc;
		}
	}

	free(lanfnt);
clean:
2689 2690
	free(fnt);
	free(fnd);
2691
	free(str.str.cstr);
2692 2693 2694
	return lst;
}

2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725
/*
 * This gets invoked to determine whether the next resource
 * is to be of a standard-type (e.g. bitmaps etc.), or should
 * be a user-type resource. This function is required because
 * there is the _possibility_ of a lookahead token in the
 * parser, which is generated from the "expr" state in the
 * "nameid" parsing.
 *
 * The general resource format is:
 * <identifier> <type> <flags> <resourcebody>
 *
 * The <identifier> can either be tIDENT or "expr". The latter
 * will always generate a lookahead, which is the <type> of the
 * resource to parse. Otherwise, we need to get a new token from
 * the scanner to determine the next step.
 *
 * The problem arrises when <type> is numerical. This case should
 * map onto default resource-types and be parsed as such instead
 * of being mapped onto user-type resources.
 *
 * The trick lies in the fact that yacc (bison) doesn't care about
 * intermediate changes of the lookahead while reducing a rule. We
 * simply replace the lookahead with a token that will result in
 * a shift to the appropriate rule for the specific resource-type.
 */
static int rsrcid_to_token(int lookahead)
{
	int token;

	/* Get a token if we don't have one yet */
	if(lookahead == YYEMPTY)
2726
		lookahead = yylex();
2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780

	/* Only numbers are possibly interesting */
	switch(lookahead)
	{
	case tNUMBER:
	case tLNUMBER:
		break;
	default:
		return lookahead;
	}

	token = lookahead;

	switch(yylval.num)
	{
	case WRC_RT_CURSOR:
		token = tCURSOR;
		break;
	case WRC_RT_ICON:
		token = tICON;
		break;
	case WRC_RT_BITMAP:
		token = tBITMAP;
		break;
	case WRC_RT_FONT:
		token = tFONT;
		break;
	case WRC_RT_FONTDIR:
		token = tFONTDIR;
		break;
	case WRC_RT_RCDATA:
		token = tRCDATA;
		break;
	case WRC_RT_MESSAGETABLE:
		token = tMESSAGETABLE;
		break;
	case WRC_RT_DLGINIT:
		token = tDLGINIT;
		break;
	case WRC_RT_ACCELERATOR:
		token = tACCELERATORS;
		break;
	case WRC_RT_MENU:
		token = tMENU;
		break;
	case WRC_RT_DIALOG:
		token = tDIALOG;
		break;
	case WRC_RT_VERSION:
		token = tVERSIONINFO;
		break;
	case WRC_RT_TOOLBAR:
		token = tTOOLBAR;
		break;
2781 2782 2783
	case WRC_RT_HTML:
		token = tHTML;
		break;
2784 2785 2786 2787 2788 2789 2790 2791

	case WRC_RT_STRING:
		break;

	case WRC_RT_ANICURSOR:
	case WRC_RT_ANIICON:
	case WRC_RT_GROUP_CURSOR:
	case WRC_RT_GROUP_ICON:
2792
		parser_warning("Usertype uses reserved type ID %d, which is auto-generated\n", yylval.num);
2793 2794 2795 2796 2797
		return lookahead;

	case WRC_RT_DLGINCLUDE:
	case WRC_RT_PLUGPLAY:
	case WRC_RT_VXD:
2798
		parser_warning("Usertype uses reserved type ID %d, which is not supported by wrc yet\n", yylval.num);
2799 2800 2801 2802
	default:
		return lookahead;
	}

2803
	return token;
2804
}