* elf64-alpha.c (elf64_alpha_relocate_section): Force relative relocs
[binutils.git] / binutils / rcparse.y
blob5b3ffe3ae1c13428eb8d750b4304868fd06d4e91
1 %{ /* rcparse.y -- parser for Windows rc files
2 Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Cygnus Support.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is a parser for Windows rc files. It is based on the parser
23 by Gunther Ebert <gunther.ebert@ixos-leipzig.de>. */
25 #include "bfd.h"
26 #include "bucomm.h"
27 #include "libiberty.h"
28 #include "windres.h"
29 #include "safe-ctype.h"
31 /* The current language. */
33 static unsigned short language;
35 /* The resource information during a sub statement. */
37 static struct res_res_info sub_res_info;
39 /* Dialog information. This is built by the nonterminals styles and
40 controls. */
42 static struct dialog dialog;
44 /* This is used when building a style. It is modified by the
45 nonterminal styleexpr. */
47 static unsigned long style;
49 /* These are used when building a control. They are set before using
50 control_params. */
52 static unsigned long base_style;
53 static unsigned long default_style;
54 static unsigned long class;
58 %union
60 struct accelerator acc;
61 struct accelerator *pacc;
62 struct dialog_control *dialog_control;
63 struct menuitem *menuitem;
64 struct
66 struct rcdata_item *first;
67 struct rcdata_item *last;
68 } rcdata;
69 struct rcdata_item *rcdata_item;
70 struct stringtable_data *stringtable;
71 struct fixed_versioninfo *fixver;
72 struct ver_info *verinfo;
73 struct ver_stringinfo *verstring;
74 struct ver_varinfo *vervar;
75 struct res_id id;
76 struct res_res_info res_info;
77 struct
79 unsigned short on;
80 unsigned short off;
81 } memflags;
82 struct
84 unsigned long val;
85 /* Nonzero if this number was explicitly specified as long. */
86 int dword;
87 } i;
88 unsigned long il;
89 unsigned short is;
90 const char *s;
91 struct
93 unsigned long length;
94 const char *s;
95 } ss;
98 %token BEG END
99 %token ACCELERATORS VIRTKEY ASCII NOINVERT SHIFT CONTROL ALT
100 %token BITMAP
101 %token CURSOR
102 %token DIALOG DIALOGEX EXSTYLE CAPTION CLASS STYLE
103 %token AUTO3STATE AUTOCHECKBOX AUTORADIOBUTTON CHECKBOX COMBOBOX CTEXT
104 %token DEFPUSHBUTTON EDITTEXT GROUPBOX LISTBOX LTEXT PUSHBOX PUSHBUTTON
105 %token RADIOBUTTON RTEXT SCROLLBAR STATE3 USERBUTTON
106 %token BEDIT HEDIT IEDIT
107 %token FONT
108 %token ICON
109 %token LANGUAGE CHARACTERISTICS VERSIONK
110 %token MENU MENUEX MENUITEM SEPARATOR POPUP CHECKED GRAYED HELP INACTIVE
111 %token MENUBARBREAK MENUBREAK
112 %token MESSAGETABLE
113 %token RCDATA
114 %token STRINGTABLE
115 %token VERSIONINFO FILEVERSION PRODUCTVERSION FILEFLAGSMASK FILEFLAGS
116 %token FILEOS FILETYPE FILESUBTYPE BLOCKSTRINGFILEINFO BLOCKVARFILEINFO
117 %token VALUE
118 %token <s> BLOCK
119 %token MOVEABLE FIXED PURE IMPURE PRELOAD LOADONCALL DISCARDABLE
120 %token NOT
121 %token <s> QUOTEDSTRING STRING
122 %token <i> NUMBER
123 %token <ss> SIZEDSTRING
124 %token IGNORED_TOKEN
126 %type <pacc> acc_entries
127 %type <acc> acc_entry acc_event
128 %type <dialog_control> control control_params
129 %type <menuitem> menuitems menuitem menuexitems menuexitem
130 %type <rcdata> optrcdata_data optrcdata_data_int rcdata_data
131 %type <rcdata_item> opt_control_data
132 %type <fixver> fixedverinfo
133 %type <verinfo> verblocks
134 %type <verstring> vervals
135 %type <vervar> vertrans
136 %type <res_info> suboptions memflags_move_discard memflags_move
137 %type <memflags> memflag
138 %type <id> id resref
139 %type <il> exstyle parennumber
140 %type <il> numexpr posnumexpr cnumexpr optcnumexpr cposnumexpr
141 %type <is> acc_options acc_option menuitem_flags menuitem_flag
142 %type <s> optstringc file_name resname
143 %type <i> sizednumexpr sizedposnumexpr
145 %left '|'
146 %left '^'
147 %left '&'
148 %left '+' '-'
149 %left '*' '/' '%'
150 %right '~' NEG
154 input:
155 /* empty */
156 | input newcmd accelerator
157 | input newcmd bitmap
158 | input newcmd cursor
159 | input newcmd dialog
160 | input newcmd font
161 | input newcmd icon
162 | input newcmd language
163 | input newcmd menu
164 | input newcmd menuex
165 | input newcmd messagetable
166 | input newcmd rcdata
167 | input newcmd stringtable
168 | input newcmd user
169 | input newcmd versioninfo
170 | input newcmd IGNORED_TOKEN
173 newcmd:
174 /* empty */
176 rcparse_discard_strings ();
180 /* Accelerator resources. */
182 accelerator:
183 id ACCELERATORS suboptions BEG acc_entries END
185 define_accelerator ($1, &$3, $5);
189 acc_entries:
190 /* empty */
192 $$ = NULL;
194 | acc_entries acc_entry
196 struct accelerator *a;
198 a = (struct accelerator *) res_alloc (sizeof *a);
199 *a = $2;
200 if ($1 == NULL)
201 $$ = a;
202 else
204 struct accelerator **pp;
206 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
208 *pp = a;
209 $$ = $1;
214 acc_entry:
215 acc_event cposnumexpr
217 $$ = $1;
218 $$.id = $2;
220 | acc_event cposnumexpr ',' acc_options
222 $$ = $1;
223 $$.id = $2;
224 $$.flags |= $4;
225 if (($$.flags & ACC_VIRTKEY) == 0
226 && ($$.flags & (ACC_SHIFT | ACC_CONTROL | ACC_ALT)) != 0)
227 rcparse_warning (_("inappropriate modifiers for non-VIRTKEY"));
231 acc_event:
232 QUOTEDSTRING
234 const char *s = $1;
235 char ch;
237 $$.next = NULL;
238 $$.id = 0;
239 ch = *s;
240 if (ch != '^')
241 $$.flags = 0;
242 else
244 $$.flags = ACC_CONTROL | ACC_VIRTKEY;
245 ++s;
246 ch = *s;
247 ch = TOUPPER (ch);
249 $$.key = ch;
250 if (s[1] != '\0')
251 rcparse_warning (_("accelerator should only be one character"));
253 | posnumexpr
255 $$.next = NULL;
256 $$.flags = 0;
257 $$.id = 0;
258 $$.key = $1;
262 acc_options:
263 acc_option
265 $$ = $1;
267 | acc_options ',' acc_option
269 $$ = $1 | $3;
271 /* I've had one report that the comma is optional. */
272 | acc_options acc_option
274 $$ = $1 | $2;
278 acc_option:
279 VIRTKEY
281 $$ = ACC_VIRTKEY;
283 | ASCII
285 /* This is just the absence of VIRTKEY. */
286 $$ = 0;
288 | NOINVERT
290 $$ = ACC_NOINVERT;
292 | SHIFT
294 $$ = ACC_SHIFT;
296 | CONTROL
298 $$ = ACC_CONTROL;
300 | ALT
302 $$ = ACC_ALT;
306 /* Bitmap resources. */
308 bitmap:
309 id BITMAP memflags_move file_name
311 define_bitmap ($1, &$3, $4);
315 /* Cursor resources. */
317 cursor:
318 id CURSOR memflags_move_discard file_name
320 define_cursor ($1, &$3, $4);
324 /* Dialog resources. */
326 dialog:
327 id DIALOG memflags_move exstyle posnumexpr cnumexpr cnumexpr
328 cnumexpr
330 memset (&dialog, 0, sizeof dialog);
331 dialog.x = $5;
332 dialog.y = $6;
333 dialog.width = $7;
334 dialog.height = $8;
335 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
336 dialog.exstyle = $4;
337 dialog.menu.named = 1;
338 dialog.class.named = 1;
339 dialog.font = NULL;
340 dialog.ex = NULL;
341 dialog.controls = NULL;
342 sub_res_info = $3;
343 style = 0;
345 styles BEG controls END
347 define_dialog ($1, &sub_res_info, &dialog);
349 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
350 cnumexpr
352 memset (&dialog, 0, sizeof dialog);
353 dialog.x = $5;
354 dialog.y = $6;
355 dialog.width = $7;
356 dialog.height = $8;
357 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
358 dialog.exstyle = $4;
359 dialog.menu.named = 1;
360 dialog.class.named = 1;
361 dialog.font = NULL;
362 dialog.ex = ((struct dialog_ex *)
363 res_alloc (sizeof (struct dialog_ex)));
364 memset (dialog.ex, 0, sizeof (struct dialog_ex));
365 dialog.controls = NULL;
366 sub_res_info = $3;
367 style = 0;
369 styles BEG controls END
371 define_dialog ($1, &sub_res_info, &dialog);
373 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
374 cnumexpr cnumexpr
376 memset (&dialog, 0, sizeof dialog);
377 dialog.x = $5;
378 dialog.y = $6;
379 dialog.width = $7;
380 dialog.height = $8;
381 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
382 dialog.exstyle = $4;
383 dialog.menu.named = 1;
384 dialog.class.named = 1;
385 dialog.font = NULL;
386 dialog.ex = ((struct dialog_ex *)
387 res_alloc (sizeof (struct dialog_ex)));
388 memset (dialog.ex, 0, sizeof (struct dialog_ex));
389 dialog.ex->help = $9;
390 dialog.controls = NULL;
391 sub_res_info = $3;
392 style = 0;
394 styles BEG controls END
396 define_dialog ($1, &sub_res_info, &dialog);
400 exstyle:
401 /* empty */
403 $$ = 0;
405 | EXSTYLE '=' numexpr
407 $$ = $3;
411 styles:
412 /* empty */
413 | styles CAPTION QUOTEDSTRING
415 dialog.style |= WS_CAPTION;
416 style |= WS_CAPTION;
417 unicode_from_ascii ((int *) NULL, &dialog.caption, $3);
419 | styles CLASS id
421 dialog.class = $3;
423 | styles STYLE
424 styleexpr
426 dialog.style = style;
428 | styles EXSTYLE numexpr
430 dialog.exstyle = $3;
432 | styles CLASS QUOTEDSTRING
434 res_string_to_id (& dialog.class, $3);
436 | styles FONT numexpr ',' QUOTEDSTRING
438 dialog.style |= DS_SETFONT;
439 style |= DS_SETFONT;
440 dialog.pointsize = $3;
441 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
442 if (dialog.ex != NULL)
444 dialog.ex->weight = 0;
445 dialog.ex->italic = 0;
446 dialog.ex->charset = 1;
449 | styles FONT numexpr ',' QUOTEDSTRING cnumexpr
451 dialog.style |= DS_SETFONT;
452 style |= DS_SETFONT;
453 dialog.pointsize = $3;
454 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
455 if (dialog.ex == NULL)
456 rcparse_warning (_("extended FONT requires DIALOGEX"));
457 else
459 dialog.ex->weight = $6;
460 dialog.ex->italic = 0;
461 dialog.ex->charset = 1;
464 | styles FONT numexpr ',' QUOTEDSTRING cnumexpr cnumexpr
466 dialog.style |= DS_SETFONT;
467 style |= DS_SETFONT;
468 dialog.pointsize = $3;
469 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
470 if (dialog.ex == NULL)
471 rcparse_warning (_("extended FONT requires DIALOGEX"));
472 else
474 dialog.ex->weight = $6;
475 dialog.ex->italic = $7;
476 dialog.ex->charset = 1;
479 | styles FONT numexpr ',' QUOTEDSTRING cnumexpr cnumexpr cnumexpr
481 dialog.style |= DS_SETFONT;
482 style |= DS_SETFONT;
483 dialog.pointsize = $3;
484 unicode_from_ascii ((int *) NULL, &dialog.font, $5);
485 if (dialog.ex == NULL)
486 rcparse_warning (_("extended FONT requires DIALOGEX"));
487 else
489 dialog.ex->weight = $6;
490 dialog.ex->italic = $7;
491 dialog.ex->charset = $8;
494 | styles MENU id
496 dialog.menu = $3;
498 | styles CHARACTERISTICS numexpr
500 sub_res_info.characteristics = $3;
502 | styles LANGUAGE numexpr cnumexpr
504 sub_res_info.language = $3 | ($4 << SUBLANG_SHIFT);
506 | styles VERSIONK numexpr
508 sub_res_info.version = $3;
512 controls:
513 /* empty */
514 | controls control
516 struct dialog_control **pp;
518 for (pp = &dialog.controls; *pp != NULL; pp = &(*pp)->next)
520 *pp = $2;
524 control:
525 AUTO3STATE
527 default_style = BS_AUTO3STATE | WS_TABSTOP;
528 base_style = BS_AUTO3STATE;
529 class = CTL_BUTTON;
531 control_params
533 $$ = $3;
535 | AUTOCHECKBOX
537 default_style = BS_AUTOCHECKBOX | WS_TABSTOP;
538 base_style = BS_AUTOCHECKBOX;
539 class = CTL_BUTTON;
541 control_params
543 $$ = $3;
545 | AUTORADIOBUTTON
547 default_style = BS_AUTORADIOBUTTON | WS_TABSTOP;
548 base_style = BS_AUTORADIOBUTTON;
549 class = CTL_BUTTON;
551 control_params
553 $$ = $3;
555 | BEDIT
557 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
558 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
559 class = CTL_EDIT;
561 control_params
563 $$ = $3;
564 if (dialog.ex == NULL)
565 rcparse_warning (_("BEDIT requires DIALOGEX"));
566 res_string_to_id (&$$->class, "BEDIT");
568 | CHECKBOX
570 default_style = BS_CHECKBOX | WS_TABSTOP;
571 base_style = BS_CHECKBOX | WS_TABSTOP;
572 class = CTL_BUTTON;
574 control_params
576 $$ = $3;
578 | COMBOBOX
580 default_style = CBS_SIMPLE | WS_TABSTOP;
581 base_style = 0;
582 class = CTL_COMBOBOX;
584 control_params
586 $$ = $3;
588 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
589 cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
591 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
592 if ($11 != NULL)
594 if (dialog.ex == NULL)
595 rcparse_warning (_("control data requires DIALOGEX"));
596 $$->data = $11;
599 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
600 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
602 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
603 if (dialog.ex == NULL)
604 rcparse_warning (_("help ID requires DIALOGEX"));
605 $$->help = $11;
606 $$->data = $12;
608 | CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
609 cnumexpr cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
611 $$ = define_control ($2, $3, $7, $8, $9, $10, 0, style, $11);
612 if ($12 != NULL)
614 if (dialog.ex == NULL)
615 rcparse_warning ("control data requires DIALOGEX");
616 $$->data = $12;
618 $$->class.named = 1;
619 unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
621 | CONTROL optstringc numexpr ',' QUOTEDSTRING control_styleexpr
622 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
624 $$ = define_control ($2, $3, $7, $8, $9, $10, 0, style, $11);
625 if (dialog.ex == NULL)
626 rcparse_warning ("help ID requires DIALOGEX");
627 $$->help = $12;
628 $$->data = $13;
629 $$->class.named = 1;
630 unicode_from_ascii (&$$->class.u.n.length, &$$->class.u.n.name, $5);
632 | CTEXT
634 default_style = SS_CENTER | WS_GROUP;
635 base_style = SS_CENTER;
636 class = CTL_STATIC;
638 control_params
640 $$ = $3;
642 | DEFPUSHBUTTON
644 default_style = BS_DEFPUSHBUTTON | WS_TABSTOP;
645 base_style = BS_DEFPUSHBUTTON | WS_TABSTOP;
646 class = CTL_BUTTON;
648 control_params
650 $$ = $3;
652 | EDITTEXT
654 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
655 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
656 class = CTL_EDIT;
658 control_params
660 $$ = $3;
662 | GROUPBOX
664 default_style = BS_GROUPBOX;
665 base_style = BS_GROUPBOX;
666 class = CTL_BUTTON;
668 control_params
670 $$ = $3;
672 | HEDIT
674 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
675 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
676 class = CTL_EDIT;
678 control_params
680 $$ = $3;
681 if (dialog.ex == NULL)
682 rcparse_warning (_("IEDIT requires DIALOGEX"));
683 res_string_to_id (&$$->class, "HEDIT");
685 | ICON resref numexpr cnumexpr cnumexpr opt_control_data
687 $$ = define_icon_control ($2, $3, $4, $5, 0, 0, 0, $6,
688 dialog.ex);
690 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
691 opt_control_data
693 $$ = define_icon_control ($2, $3, $4, $5, 0, 0, 0, $8,
694 dialog.ex);
696 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
697 icon_styleexpr optcnumexpr opt_control_data
699 $$ = define_icon_control ($2, $3, $4, $5, style, $9, 0, $10,
700 dialog.ex);
702 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
703 icon_styleexpr cnumexpr cnumexpr opt_control_data
705 $$ = define_icon_control ($2, $3, $4, $5, style, $9, $10, $11,
706 dialog.ex);
708 | IEDIT
710 default_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
711 base_style = ES_LEFT | WS_BORDER | WS_TABSTOP;
712 class = CTL_EDIT;
714 control_params
716 $$ = $3;
717 if (dialog.ex == NULL)
718 rcparse_warning (_("IEDIT requires DIALOGEX"));
719 res_string_to_id (&$$->class, "IEDIT");
721 | LISTBOX
723 default_style = LBS_NOTIFY | WS_BORDER;
724 base_style = LBS_NOTIFY | WS_BORDER;
725 class = CTL_LISTBOX;
727 control_params
729 $$ = $3;
731 | LTEXT
733 default_style = SS_LEFT | WS_GROUP;
734 base_style = SS_LEFT;
735 class = CTL_STATIC;
737 control_params
739 $$ = $3;
741 | PUSHBOX
743 default_style = BS_PUSHBOX | WS_TABSTOP;
744 base_style = BS_PUSHBOX;
745 class = CTL_BUTTON;
747 control_params
749 $$ = $3;
751 | PUSHBUTTON
753 default_style = BS_PUSHBUTTON | WS_TABSTOP;
754 base_style = BS_PUSHBUTTON | WS_TABSTOP;
755 class = CTL_BUTTON;
757 control_params
759 $$ = $3;
761 | RADIOBUTTON
763 default_style = BS_RADIOBUTTON | WS_TABSTOP;
764 base_style = BS_RADIOBUTTON;
765 class = CTL_BUTTON;
767 control_params
769 $$ = $3;
771 | RTEXT
773 default_style = SS_RIGHT | WS_GROUP;
774 base_style = SS_RIGHT;
775 class = CTL_STATIC;
777 control_params
779 $$ = $3;
781 | SCROLLBAR
783 default_style = SBS_HORZ;
784 base_style = 0;
785 class = CTL_SCROLLBAR;
787 control_params
789 $$ = $3;
791 | STATE3
793 default_style = BS_3STATE | WS_TABSTOP;
794 base_style = BS_3STATE;
795 class = CTL_BUTTON;
797 control_params
799 $$ = $3;
801 | USERBUTTON QUOTEDSTRING ',' numexpr ',' numexpr ',' numexpr ','
802 numexpr ',' numexpr ','
803 { style = WS_CHILD | WS_VISIBLE; }
804 styleexpr optcnumexpr
806 $$ = define_control ($2, $4, $6, $8, $10, $12, CTL_BUTTON,
807 style, $16);
811 /* Parameters for a control. The static variables DEFAULT_STYLE,
812 BASE_STYLE, and CLASS must be initialized before this nonterminal
813 is used. DEFAULT_STYLE is the style to use if no style expression
814 is specified. BASE_STYLE is the base style to use if a style
815 expression is specified; the style expression modifies the base
816 style. CLASS is the class of the control. */
818 control_params:
819 optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
820 opt_control_data
822 $$ = define_control ($1, $2, $3, $4, $5, $6, class,
823 default_style | WS_CHILD | WS_VISIBLE, 0);
824 if ($7 != NULL)
826 if (dialog.ex == NULL)
827 rcparse_warning (_("control data requires DIALOGEX"));
828 $$->data = $7;
831 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
832 control_params_styleexpr optcnumexpr opt_control_data
834 $$ = define_control ($1, $2, $3, $4, $5, $6, class, style, $8);
835 if ($9 != NULL)
837 if (dialog.ex == NULL)
838 rcparse_warning (_("control data requires DIALOGEX"));
839 $$->data = $9;
842 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
843 control_params_styleexpr cnumexpr cnumexpr opt_control_data
845 $$ = define_control ($1, $2, $3, $4, $5, $6, class, style, $8);
846 if (dialog.ex == NULL)
847 rcparse_warning (_("help ID requires DIALOGEX"));
848 $$->help = $9;
849 $$->data = $10;
853 optstringc:
854 /* empty */
856 $$ = NULL;
858 | QUOTEDSTRING
860 $$ = $1;
862 | QUOTEDSTRING ','
864 $$ = $1;
868 opt_control_data:
869 /* empty */
871 $$ = NULL;
873 | BEG optrcdata_data END
875 $$ = $2.first;
879 /* These only exist to parse a reduction out of a common case. */
881 control_styleexpr:
883 { style = WS_CHILD | WS_VISIBLE; }
884 styleexpr
887 icon_styleexpr:
889 { style = SS_ICON | WS_CHILD | WS_VISIBLE; }
890 styleexpr
893 control_params_styleexpr:
895 { style = base_style | WS_CHILD | WS_VISIBLE; }
896 styleexpr
899 /* Font resources. */
901 font:
902 id FONT memflags_move_discard file_name
904 define_font ($1, &$3, $4);
908 /* Icon resources. */
910 icon:
911 id ICON memflags_move_discard file_name
913 define_icon ($1, &$3, $4);
917 /* Language command. This changes the static variable language, which
918 affects all subsequent resources. */
920 language:
921 LANGUAGE numexpr cnumexpr
923 language = $2 | ($3 << SUBLANG_SHIFT);
927 /* Menu resources. */
929 menu:
930 id MENU suboptions BEG menuitems END
932 define_menu ($1, &$3, $5);
936 menuitems:
937 /* empty */
939 $$ = NULL;
941 | menuitems menuitem
943 if ($1 == NULL)
944 $$ = $2;
945 else
947 struct menuitem **pp;
949 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
951 *pp = $2;
952 $$ = $1;
957 menuitem:
958 MENUITEM QUOTEDSTRING cnumexpr menuitem_flags
960 $$ = define_menuitem ($2, $3, $4, 0, 0, NULL);
962 | MENUITEM SEPARATOR
964 $$ = define_menuitem (NULL, 0, 0, 0, 0, NULL);
966 | POPUP QUOTEDSTRING menuitem_flags BEG menuitems END
968 $$ = define_menuitem ($2, 0, $3, 0, 0, $5);
972 menuitem_flags:
973 /* empty */
975 $$ = 0;
977 | menuitem_flags ',' menuitem_flag
979 $$ = $1 | $3;
981 | menuitem_flags menuitem_flag
983 $$ = $1 | $2;
987 menuitem_flag:
988 CHECKED
990 $$ = MENUITEM_CHECKED;
992 | GRAYED
994 $$ = MENUITEM_GRAYED;
996 | HELP
998 $$ = MENUITEM_HELP;
1000 | INACTIVE
1002 $$ = MENUITEM_INACTIVE;
1004 | MENUBARBREAK
1006 $$ = MENUITEM_MENUBARBREAK;
1008 | MENUBREAK
1010 $$ = MENUITEM_MENUBREAK;
1014 /* Menuex resources. */
1016 menuex:
1017 id MENUEX suboptions BEG menuexitems END
1019 define_menu ($1, &$3, $5);
1023 menuexitems:
1024 /* empty */
1026 $$ = NULL;
1028 | menuexitems menuexitem
1030 if ($1 == NULL)
1031 $$ = $2;
1032 else
1034 struct menuitem **pp;
1036 for (pp = &$1->next; *pp != NULL; pp = &(*pp)->next)
1038 *pp = $2;
1039 $$ = $1;
1044 menuexitem:
1045 MENUITEM QUOTEDSTRING
1047 $$ = define_menuitem ($2, 0, 0, 0, 0, NULL);
1049 | MENUITEM QUOTEDSTRING cnumexpr
1051 $$ = define_menuitem ($2, $3, 0, 0, 0, NULL);
1053 | MENUITEM QUOTEDSTRING cnumexpr cnumexpr optcnumexpr
1055 $$ = define_menuitem ($2, $3, $4, $5, 0, NULL);
1057 | MENUITEM SEPARATOR
1059 $$ = define_menuitem (NULL, 0, 0, 0, 0, NULL);
1061 | POPUP QUOTEDSTRING BEG menuexitems END
1063 $$ = define_menuitem ($2, 0, 0, 0, 0, $4);
1065 | POPUP QUOTEDSTRING cnumexpr BEG menuexitems END
1067 $$ = define_menuitem ($2, $3, 0, 0, 0, $5);
1069 | POPUP QUOTEDSTRING cnumexpr cnumexpr BEG menuexitems END
1071 $$ = define_menuitem ($2, $3, $4, 0, 0, $6);
1073 | POPUP QUOTEDSTRING cnumexpr cnumexpr cnumexpr optcnumexpr
1074 BEG menuexitems END
1076 $$ = define_menuitem ($2, $3, $4, $5, $6, $8);
1080 /* Messagetable resources. */
1082 messagetable:
1083 id MESSAGETABLE memflags_move file_name
1085 define_messagetable ($1, &$3, $4);
1089 /* Rcdata resources. */
1091 rcdata:
1092 id RCDATA suboptions BEG optrcdata_data END
1094 define_rcdata ($1, &$3, $5.first);
1098 /* We use a different lexing algorithm, because rcdata strings may
1099 contain embedded null bytes, and we need to know the length to use. */
1101 optrcdata_data:
1103 rcparse_rcdata ();
1105 optrcdata_data_int
1107 rcparse_normal ();
1108 $$ = $2;
1112 optrcdata_data_int:
1113 /* empty */
1115 $$.first = NULL;
1116 $$.last = NULL;
1118 | rcdata_data
1120 $$ = $1;
1124 rcdata_data:
1125 SIZEDSTRING
1127 struct rcdata_item *ri;
1129 ri = define_rcdata_string ($1.s, $1.length);
1130 $$.first = ri;
1131 $$.last = ri;
1133 | sizednumexpr
1135 struct rcdata_item *ri;
1137 ri = define_rcdata_number ($1.val, $1.dword);
1138 $$.first = ri;
1139 $$.last = ri;
1141 | rcdata_data ',' SIZEDSTRING
1143 struct rcdata_item *ri;
1145 ri = define_rcdata_string ($3.s, $3.length);
1146 $$.first = $1.first;
1147 $1.last->next = ri;
1148 $$.last = ri;
1150 | rcdata_data ',' sizednumexpr
1152 struct rcdata_item *ri;
1154 ri = define_rcdata_number ($3.val, $3.dword);
1155 $$.first = $1.first;
1156 $1.last->next = ri;
1157 $$.last = ri;
1161 /* Stringtable resources. */
1163 stringtable:
1164 STRINGTABLE suboptions BEG
1165 { sub_res_info = $2; }
1166 string_data END
1169 string_data:
1170 /* empty */
1171 | string_data numexpr QUOTEDSTRING
1173 define_stringtable (&sub_res_info, $2, $3);
1175 | string_data numexpr ',' QUOTEDSTRING
1177 define_stringtable (&sub_res_info, $2, $4);
1181 /* User defined resources. We accept general suboptions in the
1182 file_name case to keep the parser happy. */
1184 user:
1185 id id suboptions BEG optrcdata_data END
1187 define_user_data ($1, $2, &$3, $5.first);
1189 | id id suboptions file_name
1191 define_user_file ($1, $2, &$3, $4);
1195 /* Versioninfo resources. */
1197 versioninfo:
1198 id VERSIONINFO fixedverinfo BEG verblocks END
1200 define_versioninfo ($1, language, $3, $5);
1204 fixedverinfo:
1205 /* empty */
1207 $$ = ((struct fixed_versioninfo *)
1208 res_alloc (sizeof (struct fixed_versioninfo)));
1209 memset ($$, 0, sizeof (struct fixed_versioninfo));
1211 | fixedverinfo FILEVERSION numexpr cnumexpr cnumexpr cnumexpr
1213 $1->file_version_ms = ($3 << 16) | $4;
1214 $1->file_version_ls = ($5 << 16) | $6;
1215 $$ = $1;
1217 | fixedverinfo PRODUCTVERSION numexpr cnumexpr cnumexpr cnumexpr
1219 $1->product_version_ms = ($3 << 16) | $4;
1220 $1->product_version_ls = ($5 << 16) | $6;
1221 $$ = $1;
1223 | fixedverinfo FILEFLAGSMASK numexpr
1225 $1->file_flags_mask = $3;
1226 $$ = $1;
1228 | fixedverinfo FILEFLAGS numexpr
1230 $1->file_flags = $3;
1231 $$ = $1;
1233 | fixedverinfo FILEOS numexpr
1235 $1->file_os = $3;
1236 $$ = $1;
1238 | fixedverinfo FILETYPE numexpr
1240 $1->file_type = $3;
1241 $$ = $1;
1243 | fixedverinfo FILESUBTYPE numexpr
1245 $1->file_subtype = $3;
1246 $$ = $1;
1250 /* To handle verblocks successfully, the lexer handles BLOCK
1251 specially. A BLOCK "StringFileInfo" is returned as
1252 BLOCKSTRINGFILEINFO. A BLOCK "VarFileInfo" is returned as
1253 BLOCKVARFILEINFO. A BLOCK with some other string returns BLOCK
1254 with the string as the value. */
1256 verblocks:
1257 /* empty */
1259 $$ = NULL;
1261 | verblocks BLOCKSTRINGFILEINFO BEG BLOCK BEG vervals END END
1263 $$ = append_ver_stringfileinfo ($1, $4, $6);
1265 | verblocks BLOCKVARFILEINFO BEG VALUE QUOTEDSTRING vertrans END
1267 $$ = append_ver_varfileinfo ($1, $5, $6);
1271 vervals:
1272 /* empty */
1274 $$ = NULL;
1276 | vervals VALUE QUOTEDSTRING ',' QUOTEDSTRING
1278 $$ = append_verval ($1, $3, $5);
1282 vertrans:
1283 /* empty */
1285 $$ = NULL;
1287 | vertrans cnumexpr cnumexpr
1289 $$ = append_vertrans ($1, $2, $3);
1293 /* A resource ID. */
1296 posnumexpr
1298 $$.named = 0;
1299 $$.u.id = $1;
1301 | STRING
1303 char *copy, *s;
1305 /* It seems that resource ID's are forced to upper case. */
1306 copy = xstrdup ($1);
1307 for (s = copy; *s != '\0'; s++)
1308 *s = TOUPPER (*s);
1309 res_string_to_id (&$$, copy);
1310 free (copy);
1314 /* A resource reference. */
1316 resname:
1317 QUOTEDSTRING
1319 $$ = $1;
1321 | QUOTEDSTRING ','
1323 $$ = $1;
1325 | STRING ','
1327 $$ = $1;
1332 resref:
1333 posnumexpr ','
1335 $$.named = 0;
1336 $$.u.id = $1;
1338 | resname
1340 char *copy, *s;
1342 /* It seems that resource ID's are forced to upper case. */
1343 copy = xstrdup ($1);
1344 for (s = copy; *s != '\0'; s++)
1345 *s = TOUPPER (*s);
1346 res_string_to_id (&$$, copy);
1347 free (copy);
1351 /* Generic suboptions. These may appear before the BEGIN in any
1352 multiline statement. */
1354 suboptions:
1355 /* empty */
1357 memset (&$$, 0, sizeof (struct res_res_info));
1358 $$.language = language;
1359 /* FIXME: Is this the right default? */
1360 $$.memflags = MEMFLAG_MOVEABLE | MEMFLAG_PURE | MEMFLAG_DISCARDABLE;
1362 | suboptions memflag
1364 $$ = $1;
1365 $$.memflags |= $2.on;
1366 $$.memflags &=~ $2.off;
1368 | suboptions CHARACTERISTICS numexpr
1370 $$ = $1;
1371 $$.characteristics = $3;
1373 | suboptions LANGUAGE numexpr cnumexpr
1375 $$ = $1;
1376 $$.language = $3 | ($4 << SUBLANG_SHIFT);
1378 | suboptions VERSIONK numexpr
1380 $$ = $1;
1381 $$.version = $3;
1385 /* Memory flags which default to MOVEABLE and DISCARDABLE. */
1387 memflags_move_discard:
1388 /* empty */
1390 memset (&$$, 0, sizeof (struct res_res_info));
1391 $$.language = language;
1392 $$.memflags = MEMFLAG_MOVEABLE | MEMFLAG_DISCARDABLE;
1394 | memflags_move_discard memflag
1396 $$ = $1;
1397 $$.memflags |= $2.on;
1398 $$.memflags &=~ $2.off;
1402 /* Memory flags which default to MOVEABLE. */
1404 memflags_move:
1405 /* empty */
1407 memset (&$$, 0, sizeof (struct res_res_info));
1408 $$.language = language;
1409 $$.memflags = MEMFLAG_MOVEABLE | MEMFLAG_PURE | MEMFLAG_DISCARDABLE;
1411 | memflags_move memflag
1413 $$ = $1;
1414 $$.memflags |= $2.on;
1415 $$.memflags &=~ $2.off;
1419 /* Memory flags. This returns a struct with two integers, because we
1420 sometimes want to set bits and we sometimes want to clear them. */
1422 memflag:
1423 MOVEABLE
1425 $$.on = MEMFLAG_MOVEABLE;
1426 $$.off = 0;
1428 | FIXED
1430 $$.on = 0;
1431 $$.off = MEMFLAG_MOVEABLE;
1433 | PURE
1435 $$.on = MEMFLAG_PURE;
1436 $$.off = 0;
1438 | IMPURE
1440 $$.on = 0;
1441 $$.off = MEMFLAG_PURE;
1443 | PRELOAD
1445 $$.on = MEMFLAG_PRELOAD;
1446 $$.off = 0;
1448 | LOADONCALL
1450 $$.on = 0;
1451 $$.off = MEMFLAG_PRELOAD;
1453 | DISCARDABLE
1455 $$.on = MEMFLAG_DISCARDABLE;
1456 $$.off = 0;
1460 /* A file name. */
1462 file_name:
1463 QUOTEDSTRING
1465 $$ = $1;
1467 | STRING
1469 $$ = $1;
1473 /* A style expression. This changes the static variable STYLE. We do
1474 it this way because rc appears to permit a style to be set to
1475 something like
1476 WS_GROUP | NOT WS_TABSTOP
1477 to mean that a default of WS_TABSTOP should be removed. Anything
1478 which wants to accept a style must first set STYLE to the default
1479 value. The styleexpr nonterminal will change STYLE as specified by
1480 the user. Note that we do not accept arbitrary expressions here,
1481 just numbers separated by '|'. */
1483 styleexpr:
1484 parennumber
1486 style |= $1;
1488 | NOT parennumber
1490 style &=~ $2;
1492 | styleexpr '|' parennumber
1494 style |= $3;
1496 | styleexpr '|' NOT parennumber
1498 style &=~ $4;
1502 parennumber:
1503 NUMBER
1505 $$ = $1.val;
1507 | '(' numexpr ')'
1509 $$ = $2;
1513 /* An optional expression with a leading comma. */
1515 optcnumexpr:
1516 /* empty */
1518 $$ = 0;
1520 | cnumexpr
1522 $$ = $1;
1526 /* An expression with a leading comma. */
1528 cnumexpr:
1529 ',' numexpr
1531 $$ = $2;
1535 /* A possibly negated numeric expression. */
1537 numexpr:
1538 sizednumexpr
1540 $$ = $1.val;
1544 /* A possibly negated expression with a size. */
1546 sizednumexpr:
1547 NUMBER
1549 $$ = $1;
1551 | '(' sizednumexpr ')'
1553 $$ = $2;
1555 | '~' sizednumexpr %prec '~'
1557 $$.val = ~ $2.val;
1558 $$.dword = $2.dword;
1560 | '-' sizednumexpr %prec NEG
1562 $$.val = - $2.val;
1563 $$.dword = $2.dword;
1565 | sizednumexpr '*' sizednumexpr
1567 $$.val = $1.val * $3.val;
1568 $$.dword = $1.dword || $3.dword;
1570 | sizednumexpr '/' sizednumexpr
1572 $$.val = $1.val / $3.val;
1573 $$.dword = $1.dword || $3.dword;
1575 | sizednumexpr '%' sizednumexpr
1577 $$.val = $1.val % $3.val;
1578 $$.dword = $1.dword || $3.dword;
1580 | sizednumexpr '+' sizednumexpr
1582 $$.val = $1.val + $3.val;
1583 $$.dword = $1.dword || $3.dword;
1585 | sizednumexpr '-' sizednumexpr
1587 $$.val = $1.val - $3.val;
1588 $$.dword = $1.dword || $3.dword;
1590 | sizednumexpr '&' sizednumexpr
1592 $$.val = $1.val & $3.val;
1593 $$.dword = $1.dword || $3.dword;
1595 | sizednumexpr '^' sizednumexpr
1597 $$.val = $1.val ^ $3.val;
1598 $$.dword = $1.dword || $3.dword;
1600 | sizednumexpr '|' sizednumexpr
1602 $$.val = $1.val | $3.val;
1603 $$.dword = $1.dword || $3.dword;
1607 /* An expression with a leading comma which does not use unary
1608 negation. */
1610 cposnumexpr:
1611 ',' posnumexpr
1613 $$ = $2;
1617 /* An expression which does not use unary negation. */
1619 posnumexpr:
1620 sizedposnumexpr
1622 $$ = $1.val;
1626 /* An expression which does not use unary negation. We separate unary
1627 negation to avoid parsing conflicts when two numeric expressions
1628 appear consecutively. */
1630 sizedposnumexpr:
1631 NUMBER
1633 $$ = $1;
1635 | '(' sizednumexpr ')'
1637 $$ = $2;
1639 | '~' sizednumexpr %prec '~'
1641 $$.val = ~ $2.val;
1642 $$.dword = $2.dword;
1644 | sizedposnumexpr '*' sizednumexpr
1646 $$.val = $1.val * $3.val;
1647 $$.dword = $1.dword || $3.dword;
1649 | sizedposnumexpr '/' sizednumexpr
1651 $$.val = $1.val / $3.val;
1652 $$.dword = $1.dword || $3.dword;
1654 | sizedposnumexpr '%' sizednumexpr
1656 $$.val = $1.val % $3.val;
1657 $$.dword = $1.dword || $3.dword;
1659 | sizedposnumexpr '+' sizednumexpr
1661 $$.val = $1.val + $3.val;
1662 $$.dword = $1.dword || $3.dword;
1664 | sizedposnumexpr '-' sizednumexpr
1666 $$.val = $1.val - $3.val;
1667 $$.dword = $1.dword || $3.dword;
1669 | sizedposnumexpr '&' sizednumexpr
1671 $$.val = $1.val & $3.val;
1672 $$.dword = $1.dword || $3.dword;
1674 | sizedposnumexpr '^' sizednumexpr
1676 $$.val = $1.val ^ $3.val;
1677 $$.dword = $1.dword || $3.dword;
1679 | sizedposnumexpr '|' sizednumexpr
1681 $$.val = $1.val | $3.val;
1682 $$.dword = $1.dword || $3.dword;
1688 /* Set the language from the command line. */
1690 void
1691 rcparse_set_language (lang)
1692 int lang;
1694 language = lang;