Lines Matching refs:style

47 /* This is used when building a style.  It is modified by the
50 static unsigned long style;
358 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
366 style = 0;
383 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
393 style = 0;
410 dialog.style = WS_POPUP | WS_BORDER | WS_SYSMENU;
421 style = 0;
447 dialog.style |= WS_CAPTION;
448 style |= WS_CAPTION;
458 dialog.style = style;
470 dialog.style |= DS_SETFONT;
471 style |= DS_SETFONT;
483 dialog.style |= DS_SETFONT;
484 style |= DS_SETFONT;
498 dialog.style |= DS_SETFONT;
499 style |= DS_SETFONT;
513 dialog.style |= DS_SETFONT;
514 style |= DS_SETFONT;
623 versions of MS rc.exe their is no default style. */
637 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
648 $$ = define_control ($2, $3, $6, $7, $8, $9, $4, style, $10);
731 $$ = define_icon_control ($2, $3, $4, $5, style, $9, 0, $10,
737 $$ = define_icon_control ($2, $3, $4, $5, style, $9, $10, $11,
852 { style = WS_CHILD | WS_VISIBLE; }
859 style, $15);
865 is used. DEFAULT_STYLE is the style to use if no style expression
866 is specified. BASE_STYLE is the base style to use if a style
867 expression is specified; the style expression modifies the base
868 style. CLASS is the class of the control. */
885 $$ = define_control (res_text_field, $1, $2, $3, $4, $5, class, style, $7);
896 $$ = define_control (res_text_field, $1, $2, $3, $4, $5, class, style, $7);
951 { style = WS_CHILD | WS_VISIBLE; }
957 { style = SS_ICON | WS_CHILD | WS_VISIBLE; }
963 { style = base_style | WS_CHILD | WS_VISIBLE; }
1734 /* A style expression. This changes the static variable STYLE. We do
1735 it this way because rc appears to permit a style to be set to
1739 which wants to accept a style must first set STYLE to the default
1747 style |= $1;
1751 style &=~ $2;
1755 style |= $3;
1759 style &=~ $4;