Lines Matching defs:dialog

419 /* Convert a dialog resource from binary.  */
432 toosmall (_("dialog header"));
460 toosmall (_("dialog header"));
495 toosmall (_("dialog font point size"));
529 toosmall (_("dialog control"));
547 toosmall (_("dialog control"));
568 toosmall (_("dialog control end"));
580 toosmall (_("dialog control data"));
599 r->u.dialog = d;
1273 return res_to_bin_dialog (wrbfd, off, res->u.dialog);
1441 /* Convert a dialog resource to binary. */
1444 res_to_bin_dialog (windres_bfd *wrbfd, rc_uint_type off, const rc_dialog *dialog)
1456 dialogex = extended_dialog (dialog);
1462 windres_put_32 (wrbfd, bd.style, dialog->style);
1463 windres_put_32 (wrbfd, bd.exstyle, dialog->exstyle);
1464 windres_put_16 (wrbfd, bd.x, dialog->x);
1465 windres_put_16 (wrbfd, bd.y, dialog->y);
1466 windres_put_16 (wrbfd, bd.width, dialog->width);
1467 windres_put_16 (wrbfd, bd.height, dialog->height);
1473 windres_put_32 (wrbfd, bdx.help, (dialog->ex ? dialog->ex->help : 0));
1474 windres_put_32 (wrbfd, bdx.exstyle, dialog->exstyle);
1475 windres_put_32 (wrbfd, bdx.style, dialog->style);
1476 windres_put_16 (wrbfd, bdx.x, dialog->x);
1477 windres_put_16 (wrbfd, bdx.y, dialog->y);
1478 windres_put_16 (wrbfd, bdx.width, dialog->width);
1479 windres_put_16 (wrbfd, bdx.height, dialog->height);
1485 off = resid_to_bin (wrbfd, off, dialog->menu);
1486 off = resid_to_bin (wrbfd, off, dialog->class);
1487 off = unicode_to_bin (wrbfd, off, dialog->caption);
1489 if ((dialog->style & DS_SETFONT) != 0)
1496 windres_put_16 (wrbfd, bdf.pointsize, dialog->pointsize);
1502 windres_put_16 (wrbfd, bdxf.pointsize, dialog->pointsize);
1503 windres_put_16 (wrbfd, bdxf.weight, (dialog->ex == NULL ? 0 : dialog->ex->weight));
1504 windres_put_8 (wrbfd, bdxf.italic, (dialog->ex == NULL ? 0 : dialog->ex->italic));
1505 windres_put_8 (wrbfd, bdxf.charset, (dialog->ex == NULL ? 1 : dialog->ex->charset));
1510 off = unicode_to_bin (wrbfd, off, dialog->font);
1512 for (c = 0, dc = dialog->controls; dc != NULL; dc = dc->next, c++)