home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 v2.4 Fix / W95-v2.4fix.iso / ACADWIN / SUPPORT / ACAD.DCL < prev    next >
Encoding:
Text File  |  1995-02-08  |  111.1 KB  |  4,286 lines

  1. // Next available MSG number is   494 
  2. // MODULE_ID ACAD_DCL_
  3.  
  4. /* Next available MSG number is 574 */
  5.  
  6. //     ACAD.DCL      Version 13.0
  7. //
  8. //     Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  9. //
  10. //     Permission to use, copy, modify, and distribute this software
  11. //     for any purpose and without fee is hereby granted, provided
  12. //     that the above copyright notice appears in all copies and
  13. //     that both that copyright notice and the limited warranty and
  14. //     restricted rights notice below appear in all supporting
  15. //     documentation.
  16. //
  17. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  18. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  19. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  20. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  21. //     UNINTERRUPTED OR ERROR FREE.
  22. //
  23. //     Use, duplication, or disclosure by the U.S. Government is subject to
  24. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  25. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  26. //     (Rights in Technical Data and Computer Software), as applicable.
  27. //
  28. //.
  29. // AutoCAD DCL (Dialog Control Language)
  30. // Define AutoCAD dialogs
  31.  
  32. // This file should not be modified when used with AutoCAD.
  33. // Modification to the dialogue definitions can have serious adverse
  34. // effects on the use of the product.  Since no modifications to this
  35. // file are allowed, there should be no need for any internal error
  36. // checking on the contents of this file, hence we disable audit checks
  37. // by default.
  38.  
  39. acad_snap : dialog {
  40.         label = "Ayudas al dibujo";
  41.         : row {
  42.             : column {
  43.                 : boxed_column {
  44.                     label = "Modos";
  45.                     : toggle {
  46.                         label = "&Orto";
  47.                         key = "ortho";
  48.                     }
  49.                     : toggle {
  50.                         label = "&Rell. s≤lidos";
  51.                         key = "fill";
  52.                     }
  53.                     : toggle {
  54.                         label = "&Texto rßpido";
  55.                         key = "qtext";
  56.                     }
  57.                     : toggle {
  58.                         label = "&Marca aux.";
  59.                         key = "blips";
  60.                     }
  61.                     : toggle {
  62.                         label = "R&esaltar";
  63.                         key = "hilite";
  64.                     }
  65.                     : toggle {
  66.                         label = "Gru&pos";
  67.                         key = "group";
  68.                     }
  69.                 }
  70.             }
  71.             : boxed_column {
  72.                 label = "&Forzar cursor";
  73.                 : toggle {
  74.                     label = "ACT";
  75.                     key = "snap";
  76.                 }
  77.                 : edit12_box {
  78.                     label = "Intervalo &X";
  79.                     key = "s_xsp";
  80.                     errmsg = "Intervalo X malla de resoluci≤n";
  81.                 }
  82.                 : edit12_box {
  83.                     label = "Intervalo &Y";
  84.                     key = "s_ysp";
  85.                     errmsg = "Intervalo Y malla de resoluci≤n";
  86.                 }
  87.                 : edit12_box {
  88.                     label = "An&gulo";
  89.                     key = "s_ang";
  90.                 }
  91.                 : edit12_box {
  92.                     label = "&Base X";
  93.                     key = "xbase";
  94.                     errmsg = "Base X malla de resoluci≤n";
  95.                 }
  96.                 : edit12_box {
  97.                     label = "Ba&se Y";
  98.                     key = "ybase";
  99.                     errmsg = "Base Y malla de resoluci≤n";
  100.                 }
  101.             }
  102.             : column {
  103.                 : boxed_column {
  104.                     label = "Re&jilla";
  105.                     fixed_height = true;
  106.                     : toggle {
  107.                         label = "ACT";
  108.                         key = "grid";
  109.                     }
  110.                     : edit12_box {
  111.                         label = "Inter&valo X";
  112.                         key = "g_xsp";
  113.                         errmsg = "Intervalo X rejilla";
  114.                     }
  115.                     : edit12_box {
  116.                         label = "I&ntervalo Y";
  117.                         key = "g_ysp";
  118.                         errmsg = "Intervalo Y rejilla";
  119.                     }
  120.                 }
  121.                 : boxed_column {
  122.                     label = "Malla Res./Rej. isomΘtri&cas";
  123.                     : toggle {
  124.                         label = "ACT";
  125.                         key = "iso";
  126.                     }
  127.                     : radio_row {
  128.                         key = "isorad";
  129.                         : radio_button {
  130.                             label = "I&zq.";
  131.                             key = "ileft";
  132.                         }
  133.                         : radio_button {
  134.                             label = "&Arriba";
  135.                             key = "itop";
  136.                         }
  137.                         : radio_button {
  138.                             label = "&Der.";
  139.                             key = "iright";
  140.                         }
  141.                     }
  142.                 }
  143.             }
  144.        }
  145.        ok_cancel_help_errtile;
  146. }
  147.  
  148. acad_ent_create : dialog {
  149.     label = "Modos de creaci≤n de objetos";
  150.     : row {
  151.         : button {
  152.             label = "&Color...";
  153.             key = "b_color";
  154.         }
  155.         : swatch {
  156.             key = "show_image";
  157.         }
  158.         : text {
  159.             key = "l_color";
  160.             width = 18;
  161.             fixed_width = true;
  162.         }
  163.     }
  164.     : row {
  165.         : button {
  166.             label = "C&apa...";
  167.             key = "b_name";
  168.         }
  169.         : text {
  170.             key = "l_name";
  171.             width = 18;
  172.             fixed_width = true;
  173.         }
  174.     }
  175.     : row {
  176.       : button {
  177.         label = "Tipo de &lφnea...";
  178.         key = "b_line";
  179.       }
  180.       : text {
  181.         key = "l_line";
  182.         width = 18;
  183.         fixed_width = true;
  184.       } 
  185.     }
  186.  
  187.     : row {
  188.         : button {
  189.             label = "Estilo de &texto...";
  190.             key = "b_text";
  191.         }
  192.         : text {
  193.             key = "l_text";
  194.             width = 18;
  195.             fixed_width = true;
  196.         }
  197.     }
  198.     : edit_box {
  199.         key = "ltscal";
  200.         errmsg = "escala tipo de lφnea";
  201.         label = "&Escala tipo de lφnea:";
  202.         edit_width = 18;
  203.     }
  204.     : edit_box {
  205.         key = "elev";
  206.         errmsg = "elevaci≤n";
  207.         label = "Ele&vaci≤n:";
  208.         edit_width = 18;
  209.     }
  210.     : edit_box {
  211.         key = "thick";
  212.         errmsg = "altura de objeto";
  213.         label = "Altura de &objeto:";
  214.         edit_width = 18;
  215.     }
  216.     ok_cancel_help_errtile;
  217. }
  218.  
  219. rq_chroma :dialog {
  220.     label = "Seleccionar color";
  221.     key = "chroma";                   // used by Help button to obtain label
  222.     std_rq_color;
  223. }
  224.  
  225. lt_text: text {
  226.     width = 25;
  227. }
  228.  
  229. lt_image: image_button {
  230.     height = 1;
  231.     width = 15;
  232.     allow_accept = true;
  233. }
  234.  
  235. acad_ltype : dialog {
  236.     key = "ltype";
  237.     label = "Seleccionar tipo de lφnea";
  238.     fg_color = black;                 // Image foreground & background colors
  239.     bg_color = white;                 //   are reversed for the selected item
  240.     empty_color = dialog_background;  // Fill color for extra/unused images
  241.     num_items = 8;                    // Customizable
  242.     //  The number of image/text pairs should match the "num_items" setting.
  243.     : boxed_row {
  244.         label = "Tipos de lφnea cargados";
  245.         horizontal_margin = none;
  246.         vertical_margin = none;
  247.         : column {
  248.             : row {
  249.                 : lt_image { key = "image_1"; }
  250.                 : text_35  { key = "ltype_1"; }
  251.             }
  252.             : row {
  253.                 : lt_image { key = "image_2"; }
  254.                 : text_35  { key = "ltype_2"; }
  255.             }
  256.             : row {
  257.                 : lt_image { key = "image_3"; }
  258.                 : text_35  { key = "ltype_3"; }
  259.             }
  260.             : row {
  261.                 : lt_image { key = "image_4"; }
  262.                 : text_35  { key = "ltype_4"; }
  263.             }
  264.             : row {
  265.                 : lt_image { key = "image_5"; }
  266.                 : text_35  { key = "ltype_5"; }
  267.             }
  268.             : row {
  269.                 : lt_image { key = "image_6"; }
  270.                 : text_35  { key = "ltype_6"; }
  271.             }
  272.             : row {
  273.                 : lt_image { key = "image_7"; }
  274.                 : text_35  { key = "ltype_7"; }
  275.             }
  276.             : row {
  277.                 : lt_image { key = "image_8"; }
  278.                 : text_35  { key = "ltype_8"; }
  279.             }
  280.         }
  281.         : slider {
  282.             key = "slider";
  283.             layout = vertical;
  284.             horizontal_margin = none;
  285.             vertical_margin = none;
  286.             max_value = 0;            // top of slider
  287.             min_value = 32767;        // bottom of slider
  288.             small_increment = 1;
  289.             big_increment = 8;        // must match "num_items" value above
  290.             width = 1;
  291.             fixed_width = true;
  292.             fixed_height = false;     // expands to height of image/text column
  293.         }
  294.     }
  295.     : boxed_column {
  296.       key = "isobox";
  297.       : row {
  298.         isopwidth;
  299.         : edit_box {
  300.           key = "ltscale";
  301.           errmsg = "escala tipo de lφnea";
  302.           label = "&Escala tipo de lφnea:";
  303.           edit_width = 10;
  304.           edit_limit = 10;
  305.         }
  306.       } 
  307.     }
  308.     spacer;
  309.     : edit_box {
  310.         key = "edit";
  311.         label = "&Tipo de lφnea:";
  312.         errmsg = "ninguno";
  313.         allow_accept = true;
  314.         edit_limit = 217;
  315.     }
  316.     spacer;
  317.     : row {
  318.         fixed_width = true;
  319.         alignment = centered;
  320.         ok_button;
  321.         : spacer { width = 2; }
  322.         cancel_button;
  323.         : spacer { width = 2; }
  324.         : button {
  325.             key = "load";
  326.             label = "&Cargar...";
  327.             fixed_width = true;
  328.             alignment = centered;
  329.         }
  330.         : spacer { width = 2; }
  331.         help_button;
  332.     }
  333.     errtile;
  334. }
  335.  
  336.  
  337. acad_ltype_load : dialog {
  338.     label = "Cargar o volver a cargar tipos de lφnea";
  339.     : row {
  340.         : button {
  341.             key = "get_file";
  342.             label = "&Archivo...";
  343.         }
  344.         : edit32_box {
  345.             key = "file_edit";
  346.         }
  347.     }
  348.     spacer;
  349.     : list_box {
  350.         key = "ltype_list";
  351.         label = "Tipos de lφnea disponibles";
  352.         tabs = "20";
  353.         width = 35;
  354.         height = 12;
  355.         multiple_select = true;
  356.     }
  357.     : row {
  358.         : button {
  359.             key = "all";
  360.             label = "&Seleccionar todo";
  361.         }
  362.         : button {
  363.             key = "clear";
  364.             label = "&Borrar todo";
  365.         }
  366.     }
  367.     spacer;
  368.     ok_cancel_help_errtile;
  369. }
  370.  
  371. acad_tstyle : dialog {
  372.     label = "Seleccionar estilo de texto";
  373.     : row {
  374.         : column {
  375.             : list_box {
  376.                 key = "style_list";
  377.                 width = 16;
  378.                 height = 8;
  379.                 allow_accept = true;
  380.             }
  381.             : button {
  382.                 label = "&Mostrar todos...";
  383.                 key = "showall";
  384.             }
  385.         }
  386.         : column {
  387.             : image {
  388.                 key = "style_image";
  389.                 height = 7;
  390.                 width = 20;
  391.             }
  392.             : edit_box {
  393.                 key = "style_sample";
  394.                 label = "&Texto de ejemplo:";
  395.                 edit_width = 6;
  396.                 fixed_width = true;
  397.                 alignment = centered;
  398.             }
  399.         }
  400.     }
  401.     spacer;
  402.     : edit_box {
  403.         key = "style_edit";
  404.         label = "&Nombre del estilo:";
  405.         edit_width = 31;
  406.         edit_limit = 217;
  407.         fixed_width = true;
  408.         allow_accept = true;
  409.     }
  410.     : row {
  411.         : paragraph {
  412.             : text_part {
  413.                 label = "Tipo de letra:";
  414.             }
  415.             : text_part {
  416.                 label = "Altura:";
  417.             }
  418.             : text_part {
  419.                 label = "Anchura:";
  420.             }
  421.             : text_part {
  422.                 label = "Oblicuidad:";
  423.             }
  424.             : text_part {
  425.                 label = "Generaci≤n:";
  426.             }
  427.         }
  428.         : paragraph {
  429.             : text_part {
  430.                 key = "font";
  431.                 width = 32;
  432.             }
  433.             : text_part {
  434.                 key = "height";
  435.                 width = 32;
  436.             }
  437.             : text_part {
  438.                 key = "width";
  439.                 width = 32;
  440.             }
  441.             : text_part {
  442.                 key = "oblique";
  443.                 width = 32;
  444.             }
  445.             : text_part {
  446.                 key = "gen";
  447.                 width = 32;
  448.             }
  449.         }
  450.     }
  451.     ok_cancel_err;
  452. }
  453.  
  454. acad_tstyle_sym : dialog {
  455.     key = "acad_tstyle_sym";
  456.     label = "Sφmbolos";
  457.     : text {
  458.         key = "page";
  459.         width = 10;
  460.     }
  461.     : image {
  462.         key = "showall";
  463.         color = graphics_background;
  464.         height = 16;
  465.         width = 70;
  466.     }
  467.     : row {
  468.         : ok_button {
  469.             is_cancel = true;
  470.         }
  471.     : button {
  472.         label = "&Previo";
  473.         key = "pagedown";
  474.         width = 10;
  475.         }
  476.         : button {
  477.             label = "&Siguiente";
  478.             key = "pageup";
  479.             width = 10;
  480.         }
  481.     }
  482. }
  483.  
  484. acad_icon: dialog {
  485.         key = "label";
  486.         initial_focus               = "listbox";
  487.         : row {
  488.             : list_box {
  489.                 width               = 20;
  490.                 height              = 20;
  491.                 fixed_height        = true;
  492.                 key                 = "listbox";
  493.                 allow_accept        = true;
  494.             }
  495.             : column {
  496.                 : row {
  497.                     : icon_image {
  498.                         key         = "icon1";
  499.                     }
  500.                     : icon_image {
  501.                         key         = "icon2";
  502.                     }
  503.                     : icon_image {
  504.                         key         = "icon3";
  505.                     }
  506.                     : icon_image {
  507.                         key         = "icon4";
  508.                     }
  509.                 }
  510.                 : row {
  511.                     : icon_image {
  512.                         key         = "icon5";
  513.                     }
  514.                     : icon_image {
  515.                         key         = "icon6";
  516.                     }
  517.                     : icon_image {
  518.                         key         = "icon7";
  519.                     }
  520.                     : icon_image {
  521.                         key         = "icon8";
  522.                     }
  523.                 }
  524.                 : row {
  525.                     : icon_image {
  526.                         key         = "icon9";
  527.                     }
  528.                     : icon_image {
  529.                         key         = "icon10";
  530.                     }
  531.                     : icon_image {
  532.                         key         = "icon11";
  533.                     }
  534.                     : icon_image {
  535.                         key         = "icon12";
  536.                     }
  537.                 }
  538.                 : row {
  539.                     : icon_image {
  540.                         key         = "icon13";
  541.                     }
  542.                     : icon_image {
  543.                         key         = "icon14";
  544.                     }
  545.                     : icon_image {
  546.                         key         = "icon15";
  547.                     }
  548.                     : icon_image {
  549.                         key         = "icon16";
  550.                     }
  551.                 }
  552.                 : row {
  553.                     : icon_image {
  554.                         key         = "icon17";
  555.                     }
  556.                     : icon_image {
  557.                         key         = "icon18";
  558.                     }
  559.                     : icon_image {
  560.                         key         = "icon19";
  561.                     }
  562.                     : icon_image {
  563.                         key         = "icon20";
  564.                     }
  565.                 }
  566. /*
  567.  *              : row {
  568.  *                  : icon_image {
  569.  *                      key         = "icon21";
  570.  *                  }
  571.  *                  : icon_image {
  572.  *                      key         = "icon22";
  573.  *                  }
  574.  *                  : icon_image {
  575.  *                      key         = "icon23";
  576.  *                  }
  577.  *                  : icon_image {
  578.  *                      key         = "icon24";
  579.  *                  }
  580.  *              }
  581.  */
  582.             }
  583.         }
  584.         : row {
  585.             : row {
  586.                 spacer_0;
  587.                 : row {
  588.                     fixed_width = true;
  589.                     : button {
  590.                         label = "&Previo";
  591.                         key = "prev";
  592.                         width = 8;
  593.                     }
  594.                     :spacer {
  595.                         width = 2;
  596.                     }
  597.                     :button {
  598.                         label = "&Siguiente";
  599.                         key = "next";
  600.                         width = 8;
  601.                     }
  602.                 }
  603.                 spacer_0;
  604.             }
  605.             spacer;
  606.             ok_cancel;
  607.         }
  608. }
  609.  
  610. acad_mlayer : dialog {
  611.     label = "Control de capas";
  612.     initial_focus = "layer_name_box";
  613.     : row {
  614.         : column {
  615.             : concatenation {
  616.                 : text_part {
  617.                     label = "Capa actual: ";
  618.                 }
  619.                 : text_part {
  620.                     label = "";
  621.                     key = "cur_layer";
  622.                     width = 32;
  623.                 }
  624.             }
  625.             : concatenation {
  626.                 : text_part {
  627.                     label = "&Nombre capa";
  628.                     width = 23;
  629.                 }
  630.                 : text_part {
  631.                     label = "Estado";
  632.                     width = 10;
  633.                 }
  634.                 : text_part {
  635.                     label = "Color";
  636.                     width = 9;
  637.                 }
  638.                 : text_part {
  639.                     label = "Tlφnea";
  640.                 }
  641.             }
  642.             : list_box {
  643.                 tabs = "22 25 27 29 33 41";
  644.                 width = 55;
  645.                 height = 12;
  646.                 key = "layers";
  647.                 fixed_width = true;
  648.                 multiple_select = true;
  649.                 tab_truncate = true;
  650.             }
  651.         }
  652.         : column {
  653.             children_alignment = centered;
  654.             : row {
  655.                 key = "actions_1";
  656.                 : column {
  657.                     children_alignment = centered;
  658.                     : button {
  659.                         label = "A&CT";
  660.                         key = "on";
  661.                         value = "1";
  662.                     }
  663.                     : button {
  664.                         label = "&Reut.";
  665.                         key = "thaw";
  666.                     }
  667.                     : button {
  668.                         label = "D&esbl.";
  669.                         key = "unlock";
  670.                     }
  671.                 }
  672.                 : column {
  673.                     children_alignment = centered;
  674.                     : button {
  675.                         label = "&DES";
  676.                         key = "off";
  677.                     }
  678.                     : button {
  679.                         label = "&Inut.";
  680.                         key = "freeze";
  681.                     }
  682.                     : button {
  683.                         label = "Blo&quea";
  684.                         key = "lock";
  685.                     }
  686.                 }
  687.             }
  688.             spacer_0;
  689.             : column {
  690.                 key = "vp_actions";
  691.                 children_alignment = centered;
  692.                 : row {
  693.                     : text {
  694.                         label = "VG actual:";
  695.                         fixed_width = true;
  696.                         width = 10.2;
  697.                     }
  698.                     : button {
  699.                         label = "&R";
  700.                         key = "curvp_thw";
  701.                     }
  702.                     : button {
  703.                         label = "&I";
  704.                         key = "curvp_frz";
  705.                     }
  706.                 }
  707.                 : row {
  708.                     : text {
  709.                         label = "VG nueva:";
  710.                         fixed_width = true;
  711.                         width = 10.2;
  712.  
  713.                     }
  714.                     : button {
  715.                         label = "&R";
  716.                         key = "newvp_thw";
  717.                     }
  718.                     : button {
  719.                         label = "&I";
  720.                         key = "newvp_frz";
  721.                     }
  722.                 }
  723.             }
  724.             spacer_0;
  725.             : column {
  726.                 key = "actions_2";
  727.                 children_alignment = centered;
  728.                 : button {
  729.                     label = "Definir C&olor...";
  730.                     key = "color";
  731.                 }
  732.                 : button {
  733.                   label = "Definir T&lφnea...";
  734.                   key = "linetype";
  735.                 }
  736.             }
  737.             spacer_0;
  738.         }
  739.     }
  740.     : row {
  741.         : column {
  742.             fixed_width = true;
  743.             : button {
  744.                 label = "&Seleccionar todo";
  745.                 key = "all";
  746.             }
  747.             : button {
  748.                 label = "&Borrar todo";
  749.                 key = "clear";
  750.             }
  751.         }
  752.         : column {
  753.             fixed_width = true;
  754.             : row {
  755.                 children_fixed_width = true;
  756.                 : button {
  757.                     label = "Nue&va";
  758.                     key = "add_new";
  759.                 }
  760.                 : button {
  761.                     label = "&Actual";
  762.                     key = "set_current";
  763.                 }
  764.                 : button {
  765.                     label = "Reno&mbrar";
  766.                     key = "rename";
  767.                 }
  768.             }
  769.             : edit_box {
  770.                 key = "layer_name_box";
  771.                 width = 32;
  772.                 edit_width = 32;
  773.                 edit_limit = 256;
  774.             }
  775.         }
  776.         : boxed_row {
  777.             label = "Filtros";
  778.             : toggle {
  779.                 label = "AC&T";
  780.                 key = "use_filters";
  781.             }
  782.             : button {
  783.                 label = "De&f...";
  784.                 key = "do_filters";
  785.             }
  786.         }
  787.     }
  788.     ok_cancel_help_errtile;
  789. }
  790.  
  791. acad_mlfilts : dialog {
  792.     label = "Definir filtros de capas";
  793.     : column {
  794.         width = 35;
  795.         : popup_list {
  796.             label = "A&ctivar/Desactivar:";
  797.             list = "Ambos\nACT\nDES\n";
  798.             key = "flt_on";
  799.             edit_width = 12;
  800.             popup_height = 3;
  801.         }
  802.         : popup_list {
  803.             label = "&Inutilizar/Reutilizar:";
  804.             list = "Ambos\nInut.\nReut.";
  805.             key = "flt_freeze";
  806.             edit_width = 12;
  807.             popup_height = 3;
  808.         }
  809.         : popup_list {
  810.             label = "&Bloquear/Desbloquear:";
  811.             list = "Ambos\nBloq.\nDesbl.";
  812.             key = "flt_lock";
  813.             edit_width = 12;
  814.             popup_height = 3;
  815.         }
  816.         : popup_list {
  817.             label = "&VG actual:";
  818.             list = "Ambos\nInut.\nReut.";
  819.             key = "flt_curvp_frz";
  820.             edit_width = 12;
  821.             popup_height = 3;
  822.         }
  823.         : popup_list {
  824.             label = "V&G nuevas:";
  825.             list = "Ambos\nInut.\nReut.";
  826.             key = "flt_newvp_frz";
  827.             edit_width = 12;
  828.             popup_height = 3;
  829.         }
  830.         : edit_box {
  831.             label = "&Nombres de capa:";
  832.             key = "flt_names";
  833.             edit_width = 15;
  834.         }
  835.         : edit_box {
  836.             label = "C&olores:";
  837.             key = "flt_colors";
  838.             edit_width = 15;
  839.         }
  840.         : edit_box {
  841.             label = "Tipos de &lφnea:";
  842.             key = "flt_ltypes";
  843.             edit_width = 15;
  844.         }
  845.         : button {
  846.             label = "&Redefinir";
  847.             key = "reset";
  848.         }
  849.     }
  850.     ok_cancel_help_errtile;
  851. }
  852.  
  853. acad_mtprop_edit_box : edit_box {
  854.     edit_width = 20;
  855.     edit_limit = 30;
  856. }
  857.  
  858. acad_mtprop_popup_list : popup_list {
  859.     edit_width = 24;
  860. }
  861.  
  862. acad_mtprop : dialog {
  863.     label = "Propiedades TextoM";
  864.     :boxed_column {
  865.         label = "Contenido";
  866.         :acad_mtprop_popup_list {
  867.             label = "&Estilo texto:";
  868.             key = "sty";
  869.         }
  870.         :acad_mtprop_edit_box {
  871.             label = "&Altura texto:";
  872.             key = "hgt";
  873.         }
  874.         :acad_mtprop_popup_list {
  875.             label = "&Direcci≤n:";
  876.             list = "De izquierda a derecha\nDe arriba a abajo";
  877.             key = "dir";
  878.         }
  879.     }
  880.     :boxed_column {
  881.         label = "Objeto";
  882.         :acad_mtprop_popup_list {
  883.             label = "&Justificar:";
  884.             list = "SIzquierda\nSCentro\nSDerecha\nMIzquierda\nMCentro\nMDerecha\nIIzquierda\nICentro\nIDerecha";
  885.             key = "att";
  886.         }
  887.         :acad_mtprop_edit_box {
  888.             label = "An&chura:";
  889.             key = "wid";
  890.         }
  891.         :acad_mtprop_edit_box {
  892.             label = "&Rotaci≤n:";
  893.             key = "rot";
  894.         }
  895.     }
  896.     ok_cancel_help_errtile;
  897. }
  898.  
  899. acad_plan6 : dialog {
  900.     label = "SCP";
  901.     : concatenation {
  902.         : text_part {
  903.             label = "Nombre: ";
  904.         }
  905.         : text_part {
  906.             label = "*Universal*";
  907.             key = "name";
  908.             width = 40;
  909.         }
  910.     }
  911.     : row {
  912.         : boxed_column {
  913.             label = "Origen";
  914.             : concatenation {
  915.                 : text_part {
  916.                     label = "X=";
  917.                 }
  918.                 : text_part {
  919.                     key = "00";
  920.                     width = 12;
  921.                 }
  922.             }
  923.             : concatenation {
  924.                 : text_part {
  925.                     label = "Y=";
  926.                 }
  927.                 : text_part {
  928.                     key = "10";
  929.                     width = 12;
  930.                 }
  931.             }
  932.             : concatenation {
  933.                 : text_part {
  934.                     label = "Z=";
  935.                 }
  936.                 : text_part {
  937.                     key = "20";
  938.                     width = 12;
  939.                 }
  940.             }
  941.         }
  942.         : boxed_column {
  943.             label = "Eje X";
  944.             : concatenation {
  945.                 : text_part {
  946.                     label = "X=";
  947.                 }
  948.                 : text_part {
  949.                     key = "01";
  950.                     width = 12;
  951.                 }
  952.             }
  953.             : concatenation {
  954.                 : text_part {
  955.                     label = "Y=";
  956.                 }
  957.                 : text_part {
  958.                     key = "11";
  959.                     width = 12;
  960.                 }
  961.             }
  962.             : concatenation {
  963.                 : text_part {
  964.                     label = "Z=";
  965.                 }
  966.                 : text_part {
  967.                     key = "21";
  968.                     width = 12;
  969.                 }
  970.             }
  971.         }
  972.         : boxed_column {
  973.             label = "Eje Y";
  974.             : concatenation {
  975.                 : text_part {
  976.                     label = "X=";
  977.                 }
  978.                 : text_part {
  979.                     key = "02";
  980.                     width = 12;
  981.                 }
  982.             }
  983.             : concatenation {
  984.                 : text_part {
  985.                     label = "Y=";
  986.                 }
  987.                 : text_part {
  988.                     key = "12";
  989.                     width = 12;
  990.                 }
  991.             }
  992.             : concatenation {
  993.                 : text_part {
  994.                     label = "Z=";
  995.                 }
  996.                 : text_part {
  997.                     key = "22";
  998.                     width = 12;
  999.                 }
  1000.             }
  1001.         }
  1002.         : boxed_column {
  1003.             label = "Eje Z";
  1004.             : concatenation {
  1005.                 : text_part {
  1006.                     label = "X=";
  1007.                 }
  1008.                 : text_part {
  1009.                     key = "03";
  1010.                     width = 12;
  1011.                 }
  1012.             }
  1013.             : concatenation {
  1014.                 : text_part {
  1015.                     label = "Y=";
  1016.                 }
  1017.                 : text_part {
  1018.                     key = "13";
  1019.                     width = 12;
  1020.                 }
  1021.             }
  1022.             : concatenation {
  1023.                 : text_part {
  1024.                     label = "Z=";
  1025.                 }
  1026.                 : text_part {
  1027.                     key = "23";
  1028.                     width = 12;
  1029.                 }
  1030.             }
  1031.         }
  1032.     }
  1033.     : ok_button {
  1034.         is_cancel = true;
  1035.     }
  1036. }
  1037.  
  1038. acad_plan : dialog {
  1039.     label = "Control del SCP";
  1040.     initial_focus = "listbox";
  1041.     spacer;
  1042.     : list_box {
  1043.         label = "&Nombres de SCP";
  1044.         tabs = "34";
  1045.         key = "listbox";
  1046.         width = 44;
  1047.         tab_truncate = true;
  1048.     }
  1049.     : row {
  1050.         : button {
  1051.             label = "&Actual";
  1052.             key = "cur";
  1053.         }
  1054.         : button {
  1055.             label = "&Suprimir";
  1056.             key = "delete";
  1057.         }
  1058.         : button {
  1059.             label = "&Lista...";
  1060.             key = "list";
  1061.         }
  1062.     }
  1063.     : row {
  1064.         : button {
  1065.             label = "Nu&evo nombre:";
  1066.             key = "rename";
  1067.             fixed_width = true;
  1068.         }
  1069.         : edit_box {
  1070.             key = "rename_edit_box";
  1071.             edit_width = 28;
  1072.             edit_limit = 217;
  1073.         }
  1074.     }
  1075.     ok_cancel_help_errtile;
  1076. }
  1077.  
  1078. acad_txtedit : dialog {
  1079.     label = "Editar texto";
  1080.     initial_focus = "text_edit";
  1081.     : edit_box {
  1082.         label = "Texto:";
  1083.         key = "text_edit";
  1084.         edit_width = 40;
  1085.         edit_limit = 2048;
  1086.         allow_accept = true;
  1087.     }
  1088.     ok_cancel;
  1089. }
  1090.  
  1091. acad_attedit : dialog {
  1092.     label = "Editar definici≤n de atributos";
  1093.     initial_focus = "tag_edit";
  1094.     : edit_box {
  1095.         key = "tag_edit";
  1096.         label = "Identificador:";
  1097.         edit_width = 40;
  1098.     edit_limit = 2048;
  1099.     }
  1100.     : edit_box {
  1101.         key = "prompt_edit";
  1102.         label = "Solicitud:";
  1103.         edit_width = 40;
  1104.     edit_limit = 2048;
  1105.     }
  1106.     : edit_box {
  1107.         key = "default_edit";
  1108.         label = "Por defecto:";
  1109.         edit_width = 40;
  1110.     edit_limit = 2048;
  1111.     }
  1112.     ok_cancel;
  1113.     : errtile { width = 45; }
  1114. }
  1115.  
  1116.  
  1117. //  "Edit Attributes" / "Enter Attributes"  dialogue.
  1118. //
  1119. //  This is user-customizable, in that the "num_items" parameter specifies
  1120. //  the number of prompt/value fields to be displayed at once.  The number
  1121. //  of corresponding text and edit_box widgets should match this number,
  1122. //  with keys of "prompt_1" and "edit_1" through "prompt_n" and "edit_n".
  1123. //
  1124. //  The widths of the prompt and value fields can also be customized.
  1125. //  Up to 80 characters of text can be displayed per prompt.  The value
  1126. //  edit boxes scroll, so they can accommodate 255-character values.
  1127.  
  1128. acad_ddatte : dialog {
  1129.     key = "ddatte";
  1130.     label = "Editar atributos";  // Changes to "Enter Attributes" for
  1131.                                           // INSERT with ATTDIA set.
  1132.     initial_focus = "edit_1";
  1133.     : concatenation {
  1134.         : text_part {
  1135.             label = "Nombre de bloque: ";
  1136.         }
  1137.         : text_part {
  1138.             key = "block";
  1139.             width = 31;
  1140.         }
  1141.     }
  1142.     spacer_1;
  1143.     num_items = 8;                    // Customizable
  1144.     //  The number of prompt/edit pairs should match the "num_items" setting.
  1145.     : row {
  1146.         : text_25    { key = "prompt_1"; }
  1147.         : edit32_box { key = "edit_1"; }
  1148.     }
  1149.     : row {
  1150.         : text_25    { key = "prompt_2"; }
  1151.         : edit32_box { key = "edit_2"; }
  1152.     }
  1153.     : row {
  1154.         : text_25    { key = "prompt_3"; }
  1155.         : edit32_box { key = "edit_3"; }
  1156.     }
  1157.     : row {
  1158.         : text_25    { key = "prompt_4"; }
  1159.         : edit32_box { key = "edit_4"; }
  1160.     }
  1161.     : row {
  1162.         : text_25    { key = "prompt_5"; }
  1163.         : edit32_box { key = "edit_5"; }
  1164.     }
  1165.     : row {
  1166.         : text_25    { key = "prompt_6"; }
  1167.         : edit32_box { key = "edit_6"; }
  1168.     }
  1169.     : row {
  1170.         : text_25    { key = "prompt_7"; }
  1171.         : edit32_box { key = "edit_7"; }
  1172.     }
  1173.     : row {
  1174.         : text_25    { key = "prompt_8"; }
  1175.         : edit32_box { key = "edit_8"; }
  1176.     }
  1177.     : row {
  1178.         fixed_width = true;
  1179.         alignment = centered;
  1180.         ok_button;
  1181.         cancel_button;
  1182.         : retirement_button {
  1183.             key = "prev";
  1184.             label = "&Previo";
  1185.         }
  1186.         : retirement_button {
  1187.             key = "next";
  1188.             label = " &Siguiente ";
  1189.         }
  1190.         help_button;
  1191.     }
  1192.     errtile;
  1193. }
  1194.  
  1195.  
  1196. acad_person : dialog {
  1197.     label = "Entrar en AutoCAD";
  1198.     initial_focus = "edit";
  1199.     : edit_box {
  1200.         key = "edit";
  1201.         edit_width = 30;
  1202.         edit_limit = 30;
  1203.         label = "Nombre:";
  1204.         allow_accept = true;
  1205.     }
  1206.     : toggle {
  1207.         label = "Guardar como valor por defecto";
  1208.         key = "toggle";
  1209.     }
  1210.     ok_cancel_err;
  1211. }
  1212.  
  1213. acad_dlfname : dialog {               // Single-file dialog
  1214.     initial_focus = "fedit";
  1215.     key = "dlfname";
  1216.     files_topdf;
  1217.     : row {
  1218.         : list_box {
  1219.             label = "&Directorios:";
  1220.             key = "dirbox";
  1221.             width = 15;
  1222.         }
  1223.         : list_box {
  1224.             label = "&Archivos:";
  1225.             key = "filebox";
  1226.             width = 15;
  1227.             allow_accept = true;
  1228.         }
  1229.         : column {
  1230.             : image {          // Drawing icon image will go here
  1231.                 key = "icon";
  1232.                 color = dialog_background;    // Invisible
  1233.                 height = 4;
  1234.                 aspect_ratio = 1.4;
  1235.                 fixed_height = true;
  1236.                 fixed_width = true;
  1237.             }
  1238.             : button {
  1239.                 label = "&Teclearlo";
  1240.                 key = "typeit";
  1241.             }
  1242.             : button {
  1243.                 label = "Por de&fecto";
  1244.                 key = "default";
  1245.             }
  1246.         }
  1247.     }
  1248.     files_bottomdf;
  1249. }
  1250.  
  1251. //  acad_dlfmulti is used by the FILES command's Delete and Unlock
  1252. //  options.  It is similar to acad_dlfname (above), except that:
  1253. //
  1254. //    - its file listbox has the "multiple_select" attribute,
  1255. //    - its file listbox does not have the "allow_accept" attribute,
  1256. //    - it has additional "Select all" and "Clear all" buttons, and
  1257. //    - its title bar label is slightly different.
  1258. //
  1259. //  Modifications to either dialog should be examined for their relevance
  1260. //  to the other.
  1261.  
  1262. acad_dlfmulti : dialog {              // Multiple-file dialog
  1263.     initial_focus = "fedit";
  1264.     key = "dlfname";
  1265.     files_topdf;
  1266.     : row {
  1267.         : list_box {
  1268.             label = "&Directorios:";
  1269.             key = "dirbox";
  1270.             width = 15;
  1271.         }
  1272.         : list_box {
  1273.             label = "&Archivos:";
  1274.             key = "filebox";
  1275.             width = 15;
  1276.             multiple_select = true;
  1277.         }
  1278.         : column {
  1279.             : image {          // Drawing icon image will go here
  1280.                 key = "icon";
  1281.                 color = dialog_background;    // Invisible
  1282.                 alignment = centered;
  1283.                 height = 4;
  1284.                 aspect_ratio = 1.4;
  1285.                 fixed_height = true;
  1286.                 fixed_width = true;
  1287.             }
  1288.             spacer_1;
  1289.             : button {
  1290.                 label = "S&eleccionar todo";
  1291.                 key = "all";
  1292.             }
  1293.             : button {
  1294.                 label = "&Borrar todo";
  1295.                 key = "clear";
  1296.                 is_enabled = false;
  1297.             }
  1298.             spacer_1;
  1299.             : button {
  1300.                 label = "&Teclearlo";
  1301.                 key = "typeit";
  1302.             }
  1303.             : button {
  1304.                 label = "Por de&fecto";
  1305.                 key = "default";
  1306.             }
  1307.         }
  1308.     }
  1309.     files_bottomdf;
  1310. }
  1311.  
  1312. acad_files : dialog {
  1313.     label = "Utiles archivo";
  1314.     initial_focus = "exit";
  1315.     : row {
  1316.         : column {
  1317.             : button {
  1318.                 label = "&Lista archivos... ";
  1319.                 key = "list";
  1320.             }
  1321.             : button {
  1322.                 label = "Su&primir archivo...";
  1323.                 key = "delete";
  1324.             }
  1325.         }
  1326.         : column {
  1327.             : button {
  1328.                 label = " &Copiar archivo... ";
  1329.                 key = "copy";
  1330.             }
  1331.             : button {
  1332.                 label = "Desblo&quear archivo...";
  1333.                 key = "unlock";
  1334.             }
  1335.         }
  1336.         : column {
  1337.             : button {
  1338.                 label = "Cambiar &nombre...";
  1339.                 key = "rename";
  1340.             }
  1341.             : help_button {
  1342.                 fixed_width = false;
  1343.             }
  1344.         }
  1345.     }
  1346.     errtile;
  1347.     : button {
  1348.         label = "     &Salir     ";
  1349.         key = "cancel";
  1350.         fixed_width = true;
  1351.         alignment = centered;
  1352.         is_cancel = true;
  1353.         is_default = true;
  1354.     }
  1355. }
  1356.  
  1357. acad_info : dialog {
  1358.     label = "Informaci≤n sobre el programa";    // Overridden by caller
  1359.     key = "acad_info";
  1360.     : row {
  1361.         : image {
  1362.             key = "logo";
  1363.             width = 8;
  1364.             aspect_ratio = 1.0;
  1365.             fixed_height = true;
  1366.             alignment = top;
  1367.             color = dialog_background;
  1368.         }
  1369.         : paragraph {
  1370.             : text_part {
  1371.                 key = "text1";
  1372.                 width = 63;
  1373.             }
  1374.             : text_part {
  1375.                 key = "text2";
  1376.                 width = 63;
  1377.             }
  1378.             : text_part {
  1379.                 key = "text3";
  1380.                 width = 63;
  1381.             }
  1382.             : text_part {
  1383.                 key = "text4";
  1384.                 width = 63;
  1385.             }
  1386.             : text_part {
  1387.                 key = "text5";
  1388.                 width = 63;
  1389.             }
  1390.             : text_part {
  1391.                 key = "text6";
  1392.                 width = 63;
  1393.             }
  1394.             : text_part {
  1395.                 key = "text7";
  1396.                 width = 63;
  1397.             }
  1398.             : text_part {
  1399.                 key = "text8";
  1400.                 width = 63;
  1401.             }
  1402.         }
  1403.     }
  1404.     spacer;
  1405.     : list_box {
  1406.         width = 63;
  1407.         key = "listbox";
  1408.     }
  1409.     : ok_button {                     // Permit exit via either ENTER
  1410.         is_cancel = true;             //   or CTRL-C.
  1411.     }
  1412. }
  1413.  
  1414. init_view : dialog {
  1415.  
  1416.     key = "title";
  1417.     initial_focus = "listbox";
  1418.     : list_box {
  1419.         tabs = "33";
  1420.         width = 40;
  1421.         key = "listbox";
  1422.         allow_accept = true;
  1423.     }
  1424.     ok_cancel_err;
  1425. }
  1426.  
  1427. //  The following are for the Tarnhelm DLGCOLOR command.
  1428.  
  1429. tarn_colors : dialog {
  1430.     label = "Colores de los cuadros de dißlogo";
  1431.     initial_focus = "item_list";
  1432.     children_alignment = centered;
  1433.     children_fixed_width = true;
  1434.  
  1435.     : row {
  1436.         : popup_list {
  1437.             key = "item_list";
  1438.             label = "&Elemento:";
  1439.             edit_width = 23;
  1440.         }
  1441.         : edit_box {
  1442.             key = "color_edit";
  1443.             label = "&Color:";
  1444.             edit_width = 10;
  1445.         }
  1446.         : image {
  1447.             key = "color_image";
  1448.             height = 1.5;
  1449.             width = 3;
  1450.             fixed_width = true;
  1451.         }
  1452.     }
  1453.     : errtile {
  1454.         alignment = right; 
  1455.         width = 21;
  1456.     }
  1457.     : row {
  1458.         : button {
  1459.             label = "&Mostrar...";
  1460.             key = "show";
  1461.             fixed_width = true;
  1462.         }
  1463.         : button {
  1464.             label = "Por de&fecto";
  1465.             key = "defaults";
  1466.             fixed_width = true;
  1467.         }
  1468.         : button {
  1469.             label = "&Leer archivo...";
  1470.             key = "read";
  1471.             fixed_width = true;
  1472.         }
  1473.         : button {
  1474.             label = "E&scribir archivo...";
  1475.             key = "write";
  1476.             fixed_width = true;
  1477.         }
  1478.     }
  1479.     : row {
  1480.         : boxed_row {
  1481.             label = "";
  1482.             color_palette_0_9;        // Standard colors, plus 0, 8, and 9
  1483.         }
  1484.         : boxed_row {
  1485.             label = "";
  1486.             color_palette_250_255;    // Grey shades 250-255
  1487.         }
  1488.     }
  1489.     : column {
  1490.         : image_button {
  1491.             key = "hiside";
  1492.             width = 50;
  1493.             height = 5;
  1494.         }
  1495.         : image_button {
  1496.             key = "loside";
  1497.             width = 50;
  1498.             height = 5;
  1499.         }
  1500.     }
  1501.     ok_cancel_help;
  1502. }
  1503.  
  1504. tarn_sample : dialog {
  1505.     label = "Ejemplo de cuadro de dißlogo";
  1506.     : row {
  1507.         : button {
  1508.             key = "sample_button";
  1509.             label = "&Bot≤n de ejemplo";
  1510.             fixed_width = true;
  1511.         }
  1512.         : text {
  1513.             label = "Texto estßtico";
  1514.         }
  1515.     }
  1516.     : edit_box {
  1517.         key = "sample_editbox";
  1518.         label = "C&asilla de edici≤n de ejemplo:";
  1519.         edit_width = 18;
  1520.         value = "Edφteme";
  1521.     }
  1522.     : popup_list {
  1523.         key = "sample_popup";
  1524.         label = "&Lista desplegable de ejemplo:";
  1525.         list = "Este\nes un\nejemplo\nde lista\nque\nincluye\nvarios\nelementos.";
  1526.         edit_width = 18;
  1527.         value = "1";
  1528.     }
  1529.     spacer_1;
  1530.     : row {
  1531.         : list_box {
  1532.             key = "sample_listbox";
  1533.             label = "L&ista de ejemplo";
  1534.             list = "Este es \nun ejemplo\nde lista\ncon varios\ndatos para\nprobar\nc≤mo\nresaltar\nlos distintos\nelementos";
  1535.             width = 20;
  1536.             height = 7;
  1537.         }
  1538.         : column {
  1539.             width = 20;
  1540.             : boxed_radio_column {
  1541.                 label = "Botones de &radio";
  1542.                 : radio_button {
  1543.                     key = "rad_1";
  1544.                     label = "&Chocolate";
  1545.                     value = "1";
  1546.                 }
  1547.                 : radio_button {
  1548.                     key = "rad_2";
  1549.                     label = "&Fresa";
  1550.                 }
  1551.                 : radio_button {
  1552.                     key = "rad_3";
  1553.                     label = "&Vainilla";
  1554.                 }
  1555.             }
  1556.             spacer;
  1557.             : boxed_column {
  1558.                 label = "C&onmutadores";
  1559.                 : toggle {
  1560.                     key = "tog_1";
  1561.                     label = "&Nata";
  1562.                     value = "1";
  1563.                 }
  1564.                 : toggle {
  1565.                     key = "tog_2";
  1566.                     label = "Nu&eces";
  1567.                 }
  1568.             }
  1569.         }
  1570.     }
  1571.     : ok_button {
  1572.         is_cancel = true;
  1573.     }
  1574. }
  1575.  
  1576. //  The preceding are for the Tarnhelm DLGCOLOR command.
  1577.  
  1578.  
  1579. acad_plot : dialog {
  1580.     label = "Configurar trazado";
  1581.     : row {
  1582.         : column {
  1583.             : boxed_column {
  1584.                 label = "Dispositivo y valores por defecto";
  1585.                 : text {
  1586.                     key = "userid";
  1587.                     width = 35;
  1588.                 }
  1589.                 : button {
  1590.                     label = "Selecci≤n valores por de&fecto...";
  1591.                     fixed_width = true;
  1592.                     key = "devsel";
  1593.                     alignment = centered;
  1594.                 }
  1595.             }
  1596.             : boxed_row {
  1597.                 label = "Parßmetros plumillas";
  1598.                 children_fixed_width = true;
  1599.                 : button {
  1600.                     label = "Asi&gnaci≤n...";
  1601.                     key = "assign";
  1602.                 }
  1603.                 : button {
  1604.                     label = "&Optimizaci≤n...";
  1605.                     key = "optimize";
  1606.                 }
  1607.             }
  1608.             : boxed_column {
  1609.                 label = "Parßmetros adicionales";
  1610.                 : row {
  1611.                     : radio_column {
  1612.                         fixed_width = true;
  1613.                         : radio_button {
  1614.                             label = "&Pantalla";
  1615.                             key = "D";
  1616.                         }
  1617.                         : radio_button {
  1618.                             label = "E&xtensi≤n";
  1619.                             key = "E";
  1620.                         }
  1621.                         : radio_button {
  1622.                             label = "&Lφmites";
  1623.                             key = "L";
  1624.                         }
  1625.                         : radio_button {
  1626.                             label = "&Vista";
  1627.                             key = "V";
  1628.                         }
  1629.                         : radio_button {
  1630.                             label = "V&entana";
  1631.                             key = "W";
  1632.                         }
  1633.                     }
  1634.                     : column {
  1635.                         : toggle {
  1636.                             label = "O&cultar lφneas";
  1637.                             key = "hide";
  1638.                         }
  1639.                         : toggle {
  1640.                             label = "A&justar ßrea relleno";
  1641.                             key = "plfill";
  1642.                         }
  1643.                         : toggle {
  1644.                             label = "Tra&zar a archivo";
  1645.                             key = "file";
  1646.                         }
  1647.                     }
  1648.                 }
  1649.                 : row {
  1650.                     alignment = centered;
  1651.                     : button {
  1652.                         label = "V&ista...";
  1653.                         key = "view";
  1654.                         fixed_width = true;
  1655.                     }
  1656.                     : button {
  1657.                         label = "Ve&ntana...";
  1658.                         key = "selwind";
  1659.                         fixed_width = true;
  1660.                     }
  1661.                     : button {
  1662.                         label = "Nom&bre arch...";
  1663.                         key = "sfile";
  1664.                         fixed_width = true;
  1665.                     }
  1666.                 }
  1667.             }
  1668.         }
  1669.         : column {
  1670.                 : boxed_column {
  1671.                     label = "Tama±o y orientaci≤n del papel";
  1672.                     : row {
  1673.                         : radio_column {
  1674.                             fixed_width = true;
  1675.                             vertical_margin = tiny;
  1676.                             : radio_button {
  1677.                                 label = "Pulg&adas";
  1678.                                 key = "I";
  1679.                             }
  1680.                             : radio_button {
  1681.                                 label = "&mm";
  1682.                                 key = "M";
  1683.                             }
  1684.                         }
  1685.                         : row {
  1686.                             fixed_width = true;
  1687.                             : button {
  1688.                                 label = "Tama&±o...";
  1689.                                 key = "sizbuttn";
  1690.                                 fixed_width = true;
  1691.                             }
  1692.                             : text {
  1693.                                 key = "size";
  1694.                                 width = 6;
  1695.                             }
  1696.                             : column {
  1697.                                 spacer;
  1698.                                 : image {
  1699.                                     key = "vec_image";
  1700.                                     width = 4.0;
  1701.                                     fixed_width = true;
  1702.                                     aspect_ratio = 1.0;
  1703.                                     color = dialog_background;
  1704.                                 }
  1705.                                 spacer;
  1706.                             }
  1707.                         }
  1708.                     }
  1709.                     : text {
  1710.                         key = "area";
  1711.                         width = 25;
  1712.                     }
  1713.                 }
  1714.                 : boxed_column {
  1715.                     label = "Escala, rotaci≤n y origen";
  1716.                     : button {
  1717.                         label = "Rotaci≤n &y origen...";
  1718.                         key = "rot&or";
  1719.                         alignment = centered;
  1720.                         fixed_width = true;
  1721.                     }
  1722.                     : row {
  1723.                         : column {
  1724.                             children_fixed_width = true;
  1725.                             : text {
  1726.                                 key = "pu";
  1727.                                 width = 14;
  1728.                                 alignment = right;
  1729.                             }
  1730.                             : edit_box {
  1731.                                 edit_width = 10;
  1732.                                 key = "punit";
  1733.                                 alignment = centered;
  1734.                             }
  1735.                         }
  1736.                         : column {
  1737.                             children_fixed_width = true;
  1738.                             children_alignment = centered;
  1739.                             : text {
  1740.                                 label = "=";
  1741.                             }
  1742.                             : text {
  1743.                                 label = "=";
  1744.                             }
  1745.                         }
  1746.                         : column {
  1747.                             children_fixed_width = true;
  1748.                             : text {
  1749.                                 label = "Unidades dibujo";
  1750.                             }
  1751.                             : edit_box {
  1752.                                 edit_width = 10;
  1753.                                 key = "dunit";
  1754.                                 alignment = centered;
  1755.                             }
  1756.                         }
  1757.                     }
  1758.                     : toggle {
  1759.                         label = "Escala &hasta ajustar";
  1760.                         key = "fit";
  1761.                     }
  1762.                 }
  1763.                 : boxed_column {
  1764.                     label = "Presentaci≤n preliminar";
  1765.                     : row {
  1766.                         children_fixed_width = true;
  1767.                         : button {
  1768.                             label = "Pre&sPrel...";
  1769.                             key = "prev";
  1770.                         }
  1771.                         : radio_row {
  1772.                             : radio_button {
  1773.                                 label = "Pa&rcial";
  1774.                                 key = "earea";
  1775.                             }
  1776.                             : radio_button {
  1777.                                 label = "&Total";
  1778.                                 key = "full";
  1779.                             }
  1780.                         }
  1781.                     }
  1782.                 }
  1783.         }
  1784.     }
  1785.     ok_cancel_help;
  1786.     : row {
  1787.         : errtile { fixed_width = true; }
  1788.  
  1789.         // This spacer_0 between the two fixed-width items serves
  1790.         // to left-justify the first and right-justify the second,
  1791.         // since it's the only flexible-width item in the row.
  1792.         spacer_0;
  1793.  
  1794.         : row {
  1795.             fixed_width = true;
  1796.             : text {
  1797.                 key = "zero";
  1798.                 width = 3;
  1799.             }
  1800.             : image {
  1801.                 key = "pre_image";
  1802.                 color = dialog_background;
  1803.                 height = 1;
  1804.                 width = 18;
  1805.             }
  1806.             : text {
  1807.                 key = "comp";
  1808.                 width = 5;
  1809.             }
  1810.         }
  1811.     }
  1812. }
  1813.  
  1814. acad_plwin : dialog {
  1815.     label = "Designaci≤n por ventana";
  1816.         : button {
  1817.             label = "&Designar <";
  1818.             key = "pick";
  1819.             fixed_width = true;
  1820.         }
  1821.             : boxed_row {
  1822.                 label = "&Primera esquina";
  1823.                 : edit_box {
  1824.                     label = "   X:";
  1825.                     key = "fpx";
  1826.                     edit_width = 10;
  1827.                 }
  1828.                 : edit_box {
  1829.                     label = "   Y:";
  1830.                     key = "fpy";
  1831.                     edit_width = 10;
  1832.                 }
  1833.             }
  1834.             : boxed_row {
  1835.                 label = "&Esquina opuesta";
  1836.                 : edit_box {
  1837.                     label = "   X:";
  1838.                     key = "spx";
  1839.                     edit_width = 10;
  1840.                 }
  1841.                 : edit_box {
  1842.                     label = "   Y:";
  1843.                     key = "spy";
  1844.                     edit_width = 10;
  1845.                 }
  1846.             }
  1847.         ok_cancel_err;
  1848. }
  1849.  
  1850. acad_plopt : dialog {
  1851.     aspect_ratio = 0;
  1852.     label = "Optimizar movimiento plumilla";
  1853.     : column {
  1854.         : toggle {
  1855.             label = "&No optimizar";
  1856.             key = "0";
  1857.         }
  1858.         : toggle {
  1859.             label = "A±adir &intercambio punto final";
  1860.             key = "1";
  1861.         }
  1862.         : toggle {
  1863.             label = "A±adir &ordenaci≤n de plumillas";
  1864.             key = "2";
  1865.         }
  1866.         : toggle {
  1867.             label = "A±adir optimizaci≤n del movimiento &limitada";
  1868.             key = "3";
  1869.         }
  1870.         : toggle {
  1871.             label = "A±adir optimizaci≤n del movimiento &total";
  1872.             key = "4";
  1873.         }
  1874.         : toggle {
  1875.             label = "A±adir &eliminaci≤n de los vectores horizontales o verticales superpuestos";
  1876.             key = "5";
  1877.         }
  1878.         : toggle {
  1879.             label = "A±adir eliminaci≤n de los &vectores diagonales superpuestos";
  1880.             key = "6";
  1881.         }
  1882.     }
  1883.     ok_cancel;
  1884. }
  1885.  
  1886. acad_plsize : dialog {
  1887.     label = "Tama±o del papel";
  1888.     : row {
  1889.         : column {
  1890.             : concatenation {
  1891.                 : text_part {
  1892.                     label = "&Tama±o";
  1893.                     width = 8;
  1894.                 }
  1895.                 : text_part {
  1896.                     label = "Anchura";
  1897.                     width = 9;
  1898.                 }
  1899.                 : text_part {
  1900.                     label = "Altura";
  1901.                 }
  1902.             }
  1903.             : list_box {
  1904.                 key = "listbox";
  1905.                 tabs = "0 8 17";
  1906.                 width = 28;
  1907.                 height = 13;
  1908.             }
  1909.         }
  1910.         spacer_1;
  1911.         : column {
  1912.             : row {
  1913.                 : text_part {
  1914.                     label = "Tama±o";
  1915.                     width = 8;
  1916.                 }
  1917.                 : text_part {
  1918.                     label = "Anchura";
  1919.                     width = 11;
  1920.                 }
  1921.                 : text_part {
  1922.                     label = "Altura";
  1923.                 }
  1924.             }
  1925.             spacer_0;
  1926.             : row {
  1927.                 : text_part {
  1928.                     label = "U&suario:";
  1929.                     width = 12;
  1930.                 }
  1931.                 : edit_box {
  1932.                     key = "0w";
  1933.                     edit_width = 10;
  1934.                 }
  1935.                 : edit_box {
  1936.                     key = "0h";
  1937.                     label = " ";
  1938.                     edit_width = 10;
  1939.                 }
  1940.             }
  1941.             : row {
  1942.                 : text_part {
  1943.                     label = "Usuario &1:";
  1944.                     width = 12;
  1945.                 }
  1946.                 : edit_box {
  1947.                     key = "1w";
  1948.                     edit_width = 10;
  1949.                 }
  1950.                 : edit_box {
  1951.                     key = "1h";
  1952.                     label = " ";
  1953.                     edit_width = 10;
  1954.                 }
  1955.             }
  1956.             : row {
  1957.                 : text_part {
  1958.                     label = "Usuario &2:";
  1959.                     width = 12;
  1960.                 }
  1961.                 : edit_box {
  1962.                     key = "2w";
  1963.                     edit_width = 10;
  1964.                 }
  1965.                 : edit_box {
  1966.                     label = " ";
  1967.                     key = "2h";
  1968.                     edit_width = 10;
  1969.                 }
  1970.             }
  1971.             : row {
  1972.                 : text_part {
  1973.                     label = "Usuario &3:";
  1974.                     width = 12;
  1975.                 }
  1976.                 : edit_box {
  1977.                     key = "3w";
  1978.                     edit_width = 10;
  1979.                 }
  1980.                 : edit_box {
  1981.                     label = " ";
  1982.                     key = "3h";
  1983.                     edit_width = 10;
  1984.                 }
  1985.             }
  1986.             : row {
  1987.                 : text_part {
  1988.                     label = "Usuario &4:";
  1989.                     width = 12;
  1990.                 }
  1991.                 : edit_box {
  1992.                     key = "4w";
  1993.                     edit_width = 10;
  1994.                 }
  1995.                 : edit_box {
  1996.                     label = " ";
  1997.                     key = "4h";
  1998.                     edit_width = 10;
  1999.                 }
  2000.             }
  2001.             : row {
  2002.                 : column {
  2003.                     spacer_1;
  2004.                     : row {
  2005.                         alignment = left;
  2006.                         : text_part {
  2007.                             label = "La orientaci≤n es";
  2008.                             fixed_width = true;
  2009.                         }
  2010.                         : text_part {
  2011.                             key = "land";
  2012.                             width = 12;
  2013.                         }               
  2014.                     }
  2015.                     spacer;
  2016.                 }
  2017.                 : column {
  2018.                     spacer;
  2019.                     : image {
  2020.                         key = "vec_image";
  2021.                         width = 4.0;
  2022.                         fixed_width = true;
  2023.                         aspect_ratio = 1.0;
  2024.                         color = dialog_background;
  2025.                     }
  2026.                     spacer;
  2027.                 } 
  2028.             }
  2029.         }
  2030.     }
  2031.     ok_cancel_err;
  2032. }
  2033.  
  2034. acad_plpen : dialog {
  2035.     label = "Asignaci≤n de plumillas";
  2036.     : column {
  2037.         : row {
  2038.             : paragraph {
  2039.                 : concatenation {
  2040.                     : text_part {
  2041.                         label = "Color    N║ plum.";
  2042.                         key = "1";
  2043.                         width = 20;
  2044.                     }
  2045.                     : text_part {
  2046.                         label = "Tlφnea";
  2047.                         key = "2";
  2048.                         width = 11;
  2049.                     }
  2050.                     : text_part {
  2051.                         label = "Veloc.";
  2052.                         key = "3";
  2053.                         width = 7;
  2054.                     }
  2055.                     : text_part {
  2056.                         label = "Grosor";
  2057.                         key = "4";
  2058.                     }
  2059.                 }
  2060.                 : list_box {
  2061.                     key = "listbox";
  2062.                     tabs = "2 11 22 32 38";
  2063.                     width = 50;
  2064.                     multiple_select = true;
  2065.                 }
  2066.             }
  2067.             : boxed_column {
  2068.                 label = "Modificar valores";
  2069.                 : row {
  2070.                     : text_part {
  2071.                         label = "Color:";
  2072.                         width = 11;
  2073.                         fixed_width = true;
  2074.                     }
  2075.                     : image {
  2076.                         key = "color_image";
  2077.                         width = 4.0;
  2078.                         height = 0.5;
  2079.                     }
  2080.                 }
  2081.                 : text {
  2082.                     width = 13;
  2083.                     key = "varies";
  2084.                 }
  2085.                 : row {
  2086.                     : text_part {
  2087.                         label = "&Plumilla:";
  2088.                         width = 11;
  2089.                         fixed_width = true;
  2090.                     }
  2091.                     : edit_box {
  2092.                         key = "penno";
  2093.                         edit_width = 8;
  2094.                     }
  2095.                 }
  2096.                 : row {
  2097.                     : text_part {
  2098.                         label = "&Tlφnea:";
  2099.                         width = 11;
  2100.                         fixed_width = true;
  2101.                     }
  2102.                     : edit_box {
  2103.                         key = "ltype";
  2104.                         edit_width = 8;
  2105.                     }
  2106.                 }
  2107.                 : row {
  2108.                     : text_part {
  2109.                         label = "&Velocidad:";
  2110.                         width = 11;
  2111.                         fixed_width = true;
  2112.                     }
  2113.                     : edit_box {
  2114.                         key = "speed";
  2115.                         edit_width = 8;
  2116.                     }
  2117.                 }
  2118.                 : row {
  2119.                     : text_part {
  2120.                         label = "&Grosor:";
  2121.                         width = 11;
  2122.                         fixed_width = true;
  2123.                     }
  2124.                     : edit_box {
  2125.                         key = "width";
  2126.                         edit_width = 8;
  2127.                     }
  2128.                 }
  2129.             }
  2130.         }
  2131.         : row {
  2132.             : button {
  2133.                 label = "&Leyenda-caracterφsticas...";
  2134.                 key = "legend";
  2135.                 fixed_width = true;
  2136.             }
  2137.             : spacer { width = 2; }
  2138.             : edit_box {
  2139.                 label = "G&rosor plumilla:";
  2140.                 key = "lpwidth";
  2141.                 edit_width = 8;
  2142.                 fixed_width = true;
  2143.             }
  2144.         }
  2145.     }
  2146.     ok_cancel_err;
  2147. }
  2148.  
  2149. acad_plpre : dialog {
  2150.     label = "Presentaci≤n del ßrea de trazado efectiva";
  2151.         : image {
  2152.             key = "pimage";
  2153.             height = 11.25;
  2154.             width = 25;
  2155.             fixed_width = true;
  2156.             fixed_height = true;
  2157.             alignment = centered;
  2158.         }
  2159.         : row {
  2160.             : image {
  2161.                 key = "cpaper";
  2162.                 width = 2.0;
  2163.                 color = red;
  2164.                 height = 0.1;
  2165.                 fixed_width = true;
  2166.                 fixed_height = true;
  2167.             }
  2168.             : text {
  2169.                 key = "paper";
  2170.                 width = 50;
  2171.             }
  2172.         }
  2173.         : row {
  2174.             : image {
  2175.                 key = "earea";
  2176.                 width = 2.0;
  2177.                 color = blue;
  2178.                 height = 0.1;
  2179.                 fixed_width = true;
  2180.                 fixed_height = true;
  2181.             }
  2182.             : text {
  2183.                 key = "area";
  2184.                 width = 50;
  2185.             }
  2186.         }
  2187.         : row {
  2188.             : image {
  2189.                 key = "clip";
  2190.                 width = 2.0;
  2191.                 height = 0.1;
  2192.                 fixed_width = true;
  2193.                 fixed_height = true;
  2194.             }
  2195.             : text {
  2196.                 key = "cliptxt";
  2197.                 width = 50;
  2198.             }
  2199.         }
  2200.         : text {
  2201.             width = 50;
  2202.             key = "warn";
  2203.         }
  2204.         : list_box {
  2205.             height = 3;
  2206.             key = "listbox";
  2207.         }
  2208.     ok_button;
  2209. }
  2210.  
  2211. acad_plok : dialog {
  2212.    label = "Presentaci≤n preliminar del trazado";
  2213.    : column {
  2214.        width = 15;
  2215.        : button {
  2216.            label = "&Encuadre y Zoom";
  2217.            key = "zoomd";
  2218.        }
  2219.        : button {
  2220.            key = "accept";
  2221.            label = "&Fin PresPrel";
  2222.            is_cancel = true;
  2223.        }
  2224.    }
  2225. }
  2226.  
  2227. acad_plokcan : dialog {
  2228.     label = "Presentaci≤n preliminar del trazado";
  2229.     : column {
  2230.         width = 15;
  2231.         : button {
  2232.             label = "&Zoom previo";
  2233.             key = "zoomd";
  2234.         }
  2235.         : button {
  2236.             key = "accept";
  2237.             label = "&Fin PresPrel";
  2238.             is_cancel = true;
  2239.         }
  2240.     }
  2241. }
  2242.  
  2243. acad_devinf : dialog {
  2244.     label = "Selecci≤n dispositivo y valores por defecto";
  2245.     : boxed_column {
  2246.         label = "Selecci≤n dispositivo";
  2247.         : concatenation {
  2248.             : text_part {
  2249.                 label = "Fabricante: ";
  2250.                 fixed_width = true;
  2251.                 width = 14;
  2252.             }
  2253.             : text_part {
  2254.                 key = "device";
  2255.                 width = 50;
  2256.             }
  2257.         }
  2258.         : concatenation {
  2259.             : text_part {
  2260.                 label = "Puerta: ";
  2261.                 width = 6;
  2262.             }
  2263.             : text_part {
  2264.                 key = "port";
  2265.                 width = 50;
  2266.             }
  2267.         }
  2268.         : list_box {
  2269.             key = "listbox";
  2270.             width = 60;
  2271.             height = 6;
  2272.             tabs = "36";
  2273.         }
  2274.     }
  2275.     : boxed_row {
  2276.         label = "Parßmetros por defecto del archivo";
  2277.         : button {
  2278.             label = "&Guardar parßmetros en archivo...";
  2279.             key = "sfile";
  2280.         }
  2281.         : button {
  2282.             label = "&Leer parßmetros del archivo...";
  2283.             key = "ffile";
  2284.         }
  2285.     }
  2286.     : boxed_row {
  2287.         label = "Configuraci≤n especφfica del dispositivo";
  2288.         : button {
  2289.             label = "&Mostrar requisitos dispositivo...";
  2290.             key = "showreq";
  2291.             is_enabled = false;
  2292.         }
  2293.         : button {
  2294.             label = "&Cambiar requisitos dispositivo...";
  2295.             key = "cfgreq";
  2296.             is_enabled = false;
  2297.         }
  2298.     }
  2299.     ok_cancel_err;
  2300. }
  2301.  
  2302. acad_plferr : dialog {
  2303.     label = "Informaci≤n sobre errores en archivo de parßmetros por defecto";
  2304.     : list_box {
  2305.         width = 62;
  2306.         height = 8;
  2307.         key = "listbox";
  2308.     }
  2309.     : row {
  2310.         spacer_0;
  2311.         : row {
  2312.             fixed_width = true;
  2313.             : button {
  2314.                 key = "save";
  2315.                 label = "&Crear archivo de errores";
  2316.             }
  2317.             : spacer {
  2318.                 width = 2;
  2319.             }
  2320.             ok_button;
  2321.         }
  2322.         spacer_0;
  2323.     }
  2324.     errtile;
  2325. }
  2326.  
  2327. acad_rotor : dialog {
  2328.     label = "Rotaci≤n y origen del trazado";
  2329.     : boxed_radio_row {
  2330.         label = "Rotaci≤n del trazado";
  2331.         : radio_button {
  2332.             label = "&0";
  2333.             key = "0";
  2334.         }
  2335.         : radio_button {
  2336.             label = "&90";
  2337.             key = "90";
  2338.         }
  2339.         : radio_button {
  2340.             label = "&180";
  2341.             key = "180";
  2342.         }
  2343.         : radio_button {
  2344.             label = "&270";
  2345.             key = "270";
  2346.         }
  2347.     }
  2348.     : boxed_row {
  2349.         label = "Origen del trazado";
  2350.         : edit_box {
  2351.             label = "Origen &X:";
  2352.             key = "originx";
  2353.             edit_width = 10;
  2354.         }
  2355.         : edit_box {
  2356.             label = "Origen &Y:";
  2357.             key = "originy";
  2358.             edit_width = 10;
  2359.         }
  2360.     }
  2361.     spacer;
  2362.     ok_cancel_err;
  2363. }
  2364.  
  2365.  
  2366. acad_dwgmod : dialog {
  2367.    label = "Modificaci≤n del dibujo";
  2368.    initial_focus = "save";
  2369.    : column {
  2370.        : text {
  2371.            label = "El dibujo actual ha sido modificado.";
  2372.            alignment = centered;
  2373.        }
  2374.        : row {
  2375.            : button {
  2376.                label = "&Guardar cambios...";
  2377.                is_default = true;
  2378.                key = "save";
  2379.            }
  2380.            : button {
  2381.                label = "&Descartar cambios";
  2382.                key = "discard";
  2383.            }
  2384.            : button {
  2385.                label = "&Cancelar comando";
  2386.                is_cancel = true;
  2387.                key = "cancel";
  2388.            }
  2389.        }
  2390.    }
  2391. }
  2392.  
  2393. acad_newdwg : dialog {
  2394.     label = "Crear nuevo dibujo";
  2395.     initial_focus = "fedit";
  2396.     : boxed_column {
  2397.         : row {
  2398.             : button {
  2399.                 label = "&Prototipo...";
  2400.                 key = "template";
  2401.             }
  2402.             : edit32_box {
  2403.                 key = "protype";
  2404.             }
  2405.         }
  2406.         : column {
  2407.             : toggle {
  2408.                 label = "&Sin prototipo";
  2409.                 key = "dflts";
  2410.                 value = "0";
  2411.             }
  2412.             : toggle {
  2413.                 label = "&Retener como prototipo por defecto";
  2414.                 key = "retain";
  2415.                 value = "0";
  2416.             }
  2417.         }
  2418.     }
  2419.     spacer_1;
  2420.     : column {
  2421.         : row {
  2422.             : button {
  2423.                 label = "&Nuevo nombre del dibujo...";
  2424.                 key = "fdialog";
  2425.             }
  2426.             : edit32_box {
  2427.                 key = "fedit";
  2428.                 allow_accept = true;
  2429.             }
  2430.         }
  2431.     }
  2432.     ok_cancel_err;
  2433. }
  2434.  
  2435. // acad_opendwg is used by the OPEN command and is the same as
  2436. // acad_dlfname except it has additional toggles:
  2437. //          Select Initial View and Read Only Mode
  2438. // and the title is fixed in the definition.
  2439.  
  2440. acad_opendwg : dialog {
  2441.     label = "Abrir dibujo";
  2442.     initial_focus = "fedit";
  2443.     files_topdf;
  2444.     : row {
  2445.         : list_box {
  2446.             label = "&Directorios:";
  2447.             key = "dirbox";
  2448.             width = 15;
  2449.         }
  2450.         : list_box {
  2451.             label = "A&rchivos:";
  2452.             key = "filebox";
  2453.             width = 15;
  2454.             allow_accept = true;
  2455.         }
  2456.         : column {
  2457.             : image {          // Drawing icon image will go here
  2458.                 key = "icon";
  2459.                 color = dialog_background;    // Invisible
  2460.                 height = 6;
  2461.                 aspect_ratio = 1.4;
  2462.                 fixed_height = true;
  2463.                 fixed_width = true;
  2464.             }
  2465.             : button {
  2466.                 label = "&Teclearlo";
  2467.                 key = "typeit";
  2468.             }
  2469.             : button {
  2470.                 label = "De&fecto";
  2471.                 key = "default";
  2472.             }
  2473.         }
  2474.     }
  2475.     : row {
  2476.         : toggle {
  2477.             label = "Seleccionar &vista inicial";
  2478.             key = "vselect";
  2479.             value = "0";
  2480.         }
  2481.         : toggle  {
  2482.             label = "&S≤lo lectura";
  2483.             key = "read";
  2484.             value = "0";
  2485.         }
  2486.     }
  2487.     files_bottomdf;
  2488. }
  2489.  
  2490. acad_reinit : dialog {
  2491.     label = "Reinicializaci≤n";
  2492.     : boxed_column {
  2493.         label = "Inicializaci≤n de la puerta E/S";
  2494.         : row {
  2495.             : toggle {
  2496.                 label = "&Digitalizador";
  2497.                 key = "1";
  2498.                 value = "0";
  2499.             }
  2500.             : toggle {
  2501.                 label = "&Trazador";
  2502.                 key = "2";
  2503.                 value = "0";
  2504.             }
  2505.         }
  2506.     }
  2507.     : boxed_column {
  2508.         label = "Inicializaci≤n archivo y dispositivo";
  2509.         : toggle {
  2510.             label = "Di&gitalizador";
  2511.             key = "g";
  2512.             value = "0";
  2513.         }
  2514.         : toggle {
  2515.             label = "&Pantalla";
  2516.             key = "s";
  2517.             value = "0";
  2518.         }
  2519.         : toggle {
  2520.             label = "&Archivo PGP";
  2521.             key = "p";
  2522.             value = "0";
  2523.         }
  2524.     }
  2525.     ok_cancel;
  2526. }
  2527.  
  2528. f0 : dialog {
  2529.   label = "Sombreado por contornos";
  2530.   f0guts;
  2531. }
  2532.  
  2533. f0he : dialog {
  2534.   label = "Editar sombreado";
  2535.   f0guts;
  2536. }
  2537.  
  2538. f0guts : column {
  2539.   : row {
  2540.     : column { 
  2541.       : boxed_row {
  2542.         label = "&Tipo de patr≤n";
  2543.         : popup_list {
  2544.           key = /*MSG0*/"pattern_type";
  2545.           edit_width = 15;
  2546.           popup_height = 3;
  2547.           list = "Predefinido\nDef. usuario\nPersonalizar\n";
  2548.         }
  2549.         : image_button {
  2550.             color        = 0;
  2551.             width        = 11;
  2552.             aspect_ratio = 0.65;
  2553.             allow_accept = true;
  2554.             fixed_height = true;
  2555.             fixed_width  = true;
  2556.             alignment    = centered;
  2557.             key = /*MSG0*/"pattern_img";
  2558.             allow_accept = false;
  2559.         }
  2560.       }
  2561.       : boxed_row { 
  2562.         label = "Propiedades del patr≤n";
  2563.         : column {
  2564.           isopwidth;
  2565.           : popup_list {
  2566.             label = "&Patr≤n:";
  2567.             edit_width = 12;
  2568.             popup_height = 3;
  2569.             key = /*MSG0*/"pattern_name";
  2570.           }
  2571.           : edit_box {
  2572.             label = "Persona&lizar patr≤n:";
  2573.             key = /*MSG0*/"pattern_custom";
  2574.             edit_width = 12;
  2575.           }
  2576.           : edit_box {
  2577.             label = "&Escala:  ";
  2578.             key = /*MSG0*/"hatch_scale";
  2579.             edit_width = 12;
  2580.           }
  2581.           : edit_box {
  2582.             label = "&Angulo:";
  2583.             edit_width = 12;
  2584.             key = /*MSG0*/"hatch_angle";
  2585.           }
  2586.           : edit_box {
  2587.             label = "E&spaciado:";
  2588.             key = /*MSG0*/"hatch_spacing";
  2589.             edit_width = 12;
  2590.           }
  2591.           spacer;
  2592.           : row {
  2593.             : toggle {
  2594.               label = "Do&ble";
  2595.               key = /*MSG0*/"d_hatch";
  2596.             }
  2597.             : toggle {
  2598.               label = "Desco&mpuesto";
  2599.               key = /*MSG0*/"explode";
  2600.             }
  2601.           }
  2602.           spacer;
  2603.         }
  2604.       }
  2605.     }
  2606.     : column {
  2607.       children_width = 18;
  2608.       children_fixed_width = true;
  2609.       children_alignment = centered;
  2610.       : boxed_column {
  2611.         label = "Contorno";
  2612.         spacer;
  2613.         : button {
  2614.           label = "&Designar puntos <";
  2615.           key = /*MSG0*/"pick_bound";
  2616.         }
  2617.         : button {
  2618.           label = "Seleccionar &objetos <";
  2619.           key = /*MSG0*/"select";
  2620.         }
  2621.         : button {
  2622.           label = "Eliminar &islas <";
  2623.           key = /*MSG0*/"rem_islands";
  2624.         }
  2625.         : button {
  2626.           label = "&Visualizar selecciones <";
  2627.           key = /*MSG0*/"look_at_it";
  2628.         }
  2629.         spacer;
  2630.         : button {
  2631.           label = "Opcio&nes avanzadas...";
  2632.           key = /*MSG0*/"options";
  2633.         }
  2634.       }
  2635.       spacer;
  2636.       : column {
  2637.         children_alignment = left;
  2638.         : button {
  2639.           label = "P&resentar sombreado <";
  2640.           key = /*MSG0*/"preview";
  2641.           width = 24;
  2642.         }
  2643.         : button {
  2644.           label = "&Heredar propiedades <";
  2645.           key = /*MSG0*/"inherit";
  2646.           width = 24;
  2647.         }
  2648.         spacer;
  2649.         : toggle {
  2650.           label = "A&sociativo";
  2651.           key = /*MSG0*/"assoc";
  2652.         }
  2653.       }
  2654.       spacer;
  2655.     }
  2656.   }
  2657.   : row {
  2658.     fixed_width = true;
  2659.     alignment = centered;
  2660.     spacer;
  2661.     : button {
  2662.       key = /*MSG0*/"accept";
  2663.       is_default = true;
  2664.       label = "Apli&car";
  2665.       width = 8;
  2666.     }
  2667.     spacer;
  2668.     : button {
  2669.       key = /*MSG0*/"cancel";
  2670.       label = "Cancelar";
  2671.       width = 8;
  2672.       is_cancel = true;    
  2673.     }
  2674.     spacer;
  2675.     : button {
  2676.       key = /*MSG0*/"help";
  2677.       label = "Ay&uda";
  2678.       width = 8;
  2679.     }
  2680.     spacer;
  2681.   }
  2682.   errtile;
  2683. }
  2684.  
  2685. acad_wait : dialog {
  2686.    key = "title";
  2687.    initial_focus = "accept";
  2688.    width = 24;
  2689.    spacer; 
  2690.    : column {    
  2691.        fixed_width = true;  
  2692.        fixed_height = true;
  2693.        alignment = centered;
  2694.        : button {
  2695.            key = "accept";
  2696.            label = "Co&ntinuar";
  2697.            is_cancel = true;
  2698.        }
  2699.     }
  2700.     spacer;
  2701. }
  2702.  
  2703.  
  2704. f1guts : column {
  2705.     aspect_ratio = 0;
  2706.     : popup_list {
  2707.         label = "&Tipo de objeto:";
  2708.         list = "Regi≤n\nPolilφnea\n";
  2709.         key = /*MSG0*/"bpoly_type";
  2710.         edit_width = 11;
  2711.         fixed_width = true;
  2712.     }
  2713.     spacer;
  2714.     : row {
  2715.         : column {
  2716.           label = "Definir conjunto de contornos";
  2717.           : radio_column {
  2718.               key = /*MSG0*/"use";
  2719.               : radio_button {
  2720.                   label = "De todo lo de la &pantalla";
  2721.                   key = /*MSG0*/"use_all";
  2722.                   value = "1";
  2723.               }
  2724.               : radio_button {
  2725.                   label = "Del &conjunto de contornos ya existente";
  2726.                   key = /*MSG0*/"use_old_select";
  2727.               }
  2728.           }
  2729.           spacer;
  2730.           : big_button {
  2731.               label = "Crear &nuevo conjunto de contornos <";
  2732.               key = /*MSG0*/"make_select";
  2733.               alignment = centered;
  2734.           }
  2735.           spacer;
  2736.         }
  2737.         : spacer { width = 1; }
  2738.     }
  2739.  
  2740.     spacer;
  2741.     : row {
  2742.       :column {
  2743.         : popup_list {
  2744.           label = "&Estilo:";
  2745.           key = /*MSG0*/"hatch_style";
  2746.           edit_width = 11;
  2747.           popup_height = 3;
  2748.           list = "Normal\nExterior\nIgnorar\n";
  2749.  
  2750.         }
  2751.         : spacer { height = 1; }
  2752.         : popup_list {
  2753.             label = "&Rayos proyectados:";
  2754.             list = "Cercano\n+X\n-X\n+Y\n-Y\n";
  2755.             key = /*MSG0*/"ray_cast";
  2756.             edit_width = 11;
  2757.             popup_height = 5;
  2758.         }
  2759.       }
  2760.       :column {
  2761.         alignment = top;
  2762.         : image_button {
  2763.           color = 0;
  2764.           aspect_ratio = 0.8;
  2765.           width = 10;
  2766.           key = /*MSG0*/"icon_noi";
  2767.           fixed_width = true;
  2768.           fixed_height = true;
  2769.         }
  2770.       }
  2771.     }
  2772.     :column {
  2773.       spacer;
  2774.       : toggle {
  2775.           label = "Encontrar &islas";
  2776.           key = /*MSG0*/"islands";
  2777.       }
  2778.       spacer;
  2779.       : toggle {
  2780.           label = "Retener c&ontornos";
  2781.           key = /*MSG0*/"retain";
  2782.       }
  2783.     }
  2784. }
  2785.  
  2786.  
  2787. f1 : dialog {
  2788.     label = "Opciones avanzadas";
  2789.     f1guts;
  2790.     spacer;
  2791.     ok_cancel;
  2792.     : errtile { width = 30; }
  2793. }
  2794.  
  2795.  
  2796.  
  2797. f2 : dialog {
  2798.     label = "Creaci≤n de contornos";
  2799.    : column {
  2800.         : popup_list {
  2801.             label = "&Tipo de objeto:";
  2802.             list = "Regi≤n\nPolilφnea\n";
  2803.             key = /*MSG0*/"bpoly_type";
  2804.             edit_width = 11;
  2805.             fixed_width = true;
  2806.         }
  2807.         spacer;
  2808.         : boxed_column {
  2809.             label = "Definir conjunto de contornos";
  2810.             : radio_column {
  2811.                 key = /*MSG0*/"use";
  2812.                 : radio_button {
  2813.                     label = "De t&odo lo de la pantalla";
  2814.                     key = /*MSG0*/"use_all";
  2815.                     value = "1";
  2816.                 }
  2817.                 : radio_button {
  2818.                     label = "Del &conjunto de contornos ya existente";
  2819.                     key = /*MSG0*/"use_old_select";
  2820.                 }
  2821.             }
  2822.             : spacer { height = 0.5; }
  2823.             : big_button {
  2824.                 label = "Crear &nuevo conjunto de contornos <";
  2825.                 key = /*MSG0*/"make_select";
  2826.                 alignment = centered;
  2827.             }
  2828.         }
  2829.         spacer;
  2830.         : popup_list {
  2831.             label = "&Rayos proyectados:";
  2832.             list = "Cercano\n+X\n-X\n+Y\n-Y\n";
  2833.             key = /*MSG0*/"ray_cast";
  2834.             edit_width = 11;
  2835.             fixed_width = true;
  2836.         }
  2837.         spacer;
  2838.         : toggle {
  2839.             label = "&Encontrar islas";
  2840.             key = /*MSG0*/"islands";
  2841.         }
  2842.         spacer;
  2843.         : toggle {
  2844.             label = "Islas de sustracci≤n booleana";
  2845.             key = /*MSG0*/"sub_islands";
  2846.         }
  2847.     }
  2848.     spacer;
  2849.     pick_cancel;
  2850.     errtile;
  2851. }
  2852.  
  2853. fh_open : dialog {
  2854.     label = "Error en la definici≤n de contornos";
  2855.     width = 30;
  2856.     spacer;
  2857.     : column {
  2858.         fixed_width = true;
  2859.         fixed_height = true;
  2860.         alignment = centered;
  2861.         : text {
  2862.             horizontal_alignment = centered;
  2863.             label = "El contorno no estß cerrado.";
  2864.         }
  2865.     }
  2866.     spacer_1;
  2867.     ok_look;
  2868.     spacer;
  2869. }
  2870.  
  2871.  
  2872. fh_outside : dialog {
  2873.     aspect_ratio = 0;
  2874.     label = "Error en la definici≤n de contornos";
  2875.     width = 30;
  2876.     spacer;
  2877.     : column {
  2878.         fixed_width = true;
  2879.         fixed_height = true;
  2880.         alignment = centered;
  2881.         : text {
  2882.             horizontal_alignment = centered;
  2883.             label = "El punto se encuentra fuera del contorno.";
  2884.         }
  2885.     }
  2886.     spacer_1;
  2887.     ok_look;
  2888.     spacer;
  2889. }
  2890.  
  2891.  
  2892. fh_on : dialog {
  2893.     aspect_ratio = 0;
  2894.     label = "Error en la definici≤n de contornos";
  2895.     width = 30;
  2896.     spacer;
  2897.     : column {
  2898.         fixed_width = true;
  2899.         fixed_height = true;
  2900.         alignment = centered;
  2901.         : text {
  2902.             horizontal_alignment = centered;
  2903.             label = "El punto se encuentra en un objeto.";
  2904.         }
  2905.     }
  2906.     spacer_1;
  2907.     ok_look;
  2908.     spacer;
  2909. }
  2910.  
  2911.  
  2912. fh_dup : dialog {
  2913.     aspect_ratio = 0;
  2914.     label = "Error en la definici≤n de contornos";
  2915.     width = 30;
  2916.     spacer;
  2917.     : column {
  2918.         fixed_width = true;
  2919.         fixed_height = true;
  2920.         alignment = centered;
  2921.         : text {
  2922.             horizontal_alignment = centered;
  2923.             label = "Este contorno repite uno que ya existe.";
  2924.         }
  2925.     }
  2926.     spacer_1;
  2927.     ok_only;
  2928.     spacer;
  2929. }
  2930.  
  2931.  
  2932. fh_awful : dialog {
  2933.     aspect_ratio = 0;
  2934.     label = "Error en la definici≤n de contornos";
  2935.     width = 30;
  2936.     spacer;
  2937.     : column {
  2938.         fixed_width = true;
  2939.         fixed_height = true;
  2940.         alignment = centered;
  2941.         : text {
  2942.             horizontal_alignment = centered;
  2943.             label = "No se ha encontrado nada con que poder crear un contorno.";
  2944.         }
  2945.     }
  2946.     spacer_1;
  2947.     ok_only;
  2948.     spacer;
  2949. }
  2950.  
  2951.  
  2952. fh_nohatch : dialog {
  2953.     aspect_ratio = 0;
  2954.     label = "Error de sombreado";
  2955.     width = 30;
  2956.     spacer;
  2957.     : column {
  2958.         fixed_width = true;
  2959.         fixed_height = true;
  2960.         alignment = centered;
  2961.         : text {
  2962.             horizontal_alignment = centered;
  2963.             label = "No se ha creado ning·n sombreado.";
  2964.         }
  2965.     }
  2966.     spacer_1;
  2967.     ok_only;
  2968.     spacer;
  2969. }
  2970.  
  2971.  
  2972. falert : dialog {
  2973.     label = "ADVERTENCIA";
  2974.     spacer;
  2975.     : text {
  2976.         key = /*MSG0*/"alert_text_1";
  2977.         horizontal_alignment = centered;
  2978.         width = 50;
  2979.     }
  2980.     : text {
  2981.         key = /*MSG0*/"alert_text_2";
  2982.         horizontal_alignment = centered;
  2983.         width = 50;
  2984.     }
  2985.     spacer_1;
  2986.     ok_only;
  2987.     spacer;
  2988. }
  2989.  
  2990. big_button :button{
  2991.     fixed_width = true;
  2992.     width = 25;
  2993. }
  2994.  
  2995.  
  2996. look_button : retirement_button {
  2997.     label           = "&Mirarlo";
  2998.     key             = /*MSG0*/"look";
  2999.     vertical_alignment = centered;
  3000. }
  3001.  
  3002.  
  3003. ok_look : column {
  3004.     : row {
  3005.         fixed_width = true;
  3006.         alignment = centered;
  3007.         : ok_button { is_cancel = true; } 
  3008.         : spacer { width = 2; }
  3009.         look_button;
  3010.     }
  3011. }
  3012.  
  3013.  
  3014. next_button : button {
  3015.         label           = "&Siguiente";
  3016.         key             = /*MSG0*/"next";
  3017.         fixed_width     = true;
  3018.         width           = 9;
  3019.         vertical_alignment = centered;
  3020.         horizontal_alignment = centered;
  3021. }
  3022.  
  3023.  
  3024. prev_button : button {
  3025.         label           = "&Previo";
  3026.         key             = /*MSG0*/"previous";
  3027.         fixed_width     = true;
  3028.         width           = 9;
  3029.         vertical_alignment = centered;
  3030.         horizontal_alignment = centered;
  3031. }
  3032.  
  3033.  
  3034. pick_cancel : column {
  3035.     : row {
  3036.         fixed_width = true;
  3037.         alignment = centered;
  3038.         : button { 
  3039.             label = "&Designar puntos <";
  3040.             key = /*MSG0*/"accept";
  3041.             is_default = true;
  3042.         }
  3043.         : spacer { width = 1; }
  3044.         cancel_button;
  3045.         : spacer { width = 1; }
  3046.         help_button;
  3047.     }
  3048. }
  3049.  
  3050. //
  3051. // support functions
  3052. //
  3053.  
  3054. isopwidth : popup_list {
  3055.     label = "&Grosor de plumilla ISO:";
  3056.     list = " \n0,13 mm\n0,18 mm\n0,25 mm\n0,35 mm\n0,5 mm\n0,7 mm\n1,0 mm\n1,4 mm\n2,0 mm\n";
  3057.     popup_height = 3;
  3058.     key = "isopenwidth";
  3059.     edit_width = 12;
  3060. }
  3061.  
  3062. text_35 : text {
  3063.     width = 35;
  3064. }
  3065.  
  3066. // Preferences dialog box for DOS/Unix
  3067. //
  3068. // Heinz Baumann (c) Autodesk Inc.
  3069. //
  3070. // Marin/NE, February 14th, 1994
  3071. //
  3072.  
  3073. acad_pref : dialog {
  3074.   label = "Preferencias";
  3075.   key = "pref";
  3076.   : boxed_column {
  3077.       : row {
  3078.           alignment = left;
  3079.           : text_part {
  3080.               label = "Unidades de &medida: ";
  3081.               width = 20;
  3082.               fixed_width = true;
  3083.           }
  3084.           : popup_list {
  3085.               popup_height = 2;
  3086.               edit_width = 20;
  3087.               key = "measure";
  3088.               list = "Inglesas\nMΘtricas";
  3089.           }
  3090.           : spacer {
  3091.               width = 10;
  3092.           }
  3093.       }
  3094.   }
  3095.   spacer_1;
  3096.   : boxed_column {
  3097.       label = "Entorno";
  3098.       spacer;
  3099.       : column {
  3100.           : row {
  3101.               alignment = left;
  3102.               : text_part {
  3103.                   label = "&Dibujo prototipo:";
  3104.                   width = 20;
  3105.                   fixed_width = true;
  3106.               }
  3107.               : popup_list {
  3108.                   key = "protolist";
  3109.                   edit_width = 30;
  3110.               }
  3111.           }
  3112.           : row {
  3113.               alignment = left;
  3114.               : text_part {
  3115.                   key = "fname_label";
  3116.                   label = "Nombre del archivo: ";
  3117.                   width = 20;
  3118.                   fixed_width = true;
  3119.               }
  3120.               : text {
  3121.                   alignment = left;
  3122.                   key = "fname";
  3123.                   width = 32;
  3124.                   value = "";
  3125.               }
  3126.           }
  3127.       }
  3128.   }
  3129.   spacer_1;
  3130.   ok_cancel_help_errtile;
  3131. }
  3132.  
  3133. acad_group : dialog {
  3134.     label = "Agrupar objetos";
  3135.     initial_focus = "name";
  3136.     vertical_margin = none;
  3137.     : column {
  3138.         vertical_margin = none;
  3139.         : concatenation {
  3140.             : text_part {
  3141.                 label = "Nombre del gr&upo";
  3142.                 width = 32;
  3143.             }
  3144.             : text_part {
  3145.                 label = "Seleccionable";
  3146.             }
  3147.         }                                                                      
  3148.         : list_box {
  3149.             tabs = "36";
  3150.             key = "grp_list";
  3151.             width = 48;
  3152.             height = 5;
  3153.             tab_truncate = true;
  3154.             vertical_margin = none;
  3155.         }
  3156.     }
  3157.     : boxed_column {
  3158.         vertical_margin = tiny;
  3159.         label = "Identificaci≤n del grupo";
  3160.         : column {
  3161.             vertical_margin = tiny;
  3162.             : row {
  3163.                 : text_part {
  3164.                     label = "Nombre del &grupo:";
  3165.                     width = 17;
  3166.                 }
  3167.                 : edit_box {
  3168.                     key = "name";
  3169.                     edit_width = 32;
  3170.                     edit_limit = 217;
  3171.                     vertical_margin = tiny;
  3172.                 }
  3173.             }
  3174.             : row {
  3175.                 : text_part {
  3176.                     label = "&Descripci≤n:";
  3177.                     width = 17;
  3178.                 }
  3179.                 : edit_box {
  3180.                     key = "desc";
  3181.                     edit_width = 32;
  3182.                     edit_limit = 448;
  3183.                     vertical_margin = tiny;
  3184.                 }
  3185.             }
  3186.         }
  3187.         : row {
  3188.             vertical_margin = none;
  3189.             children_fixed_width = true;
  3190.             : button {
  3191.                 label = "&Encontrar nombre <";
  3192.                 key = "find";
  3193.                 vertical_margin = tiny;
  3194.             }
  3195.             : button {
  3196.                 label = "&Resaltar <";
  3197.                 key = "h_light";
  3198.                 vertical_margin = tiny;
  3199.             }
  3200.             : toggle {
  3201.                 label = "&Incluir sin nombre";
  3202.                 key = "anon";
  3203.                 vertical_margin = tiny;
  3204.             }
  3205.         }        
  3206.     }
  3207.     : boxed_column {
  3208.         vertical_margin = none;
  3209.         label = "Crear grupo";
  3210.         : row {
  3211.             vertical_margin = none;
  3212.             alignment = centered;
  3213.             : button {
  3214.                 label = "&Nuevo <";
  3215.                 key = "add_new";
  3216.                 vertical_margin = tiny;
  3217.             }
  3218.             spacer_1;
  3219.             : toggle {
  3220.                 label = "&Seleccionable";
  3221.                 value = "1";
  3222.                 key = "select";
  3223.                 vertical_margin = tiny;
  3224.             }
  3225.             : toggle { 
  3226.                 label = "Sin nom&bre";
  3227.                 value = "0";
  3228.                 key = "unnamed";
  3229.                 vertical_margin = tiny;
  3230.             }
  3231.         }
  3232.     }
  3233.     : boxed_column {
  3234.         label = "Cambiar grupo";
  3235.         key = "chg_column";
  3236.         : row {
  3237.             vertical_margin = none;
  3238.             : button {
  3239.                 label = "E&liminar <";
  3240.                 key = "remove";
  3241.                 vertical_margin = none;
  3242.             }
  3243.             : button {
  3244.                 label = "A&±adir <";
  3245.                 key = "add";
  3246.                 vertical_margin = none;
  3247.             }
  3248.             : button {
  3249.                 label = "&Cambiar nombre";
  3250.                 key = "rename";
  3251.                 vertical_margin = none;
  3252.             }
  3253.             : button {
  3254.                 label = "Re&ordenar...";
  3255.                 key = "order";
  3256.                 vertical_margin = none;
  3257.             }
  3258.         }
  3259.         : row {
  3260.             vertical_margin = none;
  3261.             : button {
  3262.                 label = "Descri&pci≤n";
  3263.                 key = "chg_desc";
  3264.                 vertical_margin = tiny;
  3265.             }
  3266.             : button {
  3267.                 label = "Desco&mponer";
  3268.                 key = "explode";
  3269.                 vertical_margin = tiny;
  3270.             }
  3271.             : button {
  3272.                 label = "Seleccion&able";
  3273.                 key = "chg_select";
  3274.                 vertical_margin = tiny;
  3275.             }
  3276.         }
  3277.     }
  3278.     ok_cancel_help_errtile;
  3279. }
  3280.  
  3281.  
  3282. acad_grp_order : dialog {
  3283.     label = "Ordenar grupo";
  3284.     : column {
  3285.         vertical_margin = none;
  3286.         : text {
  3287.             label = "&Nombre del grupo";
  3288.         }
  3289.         : list_box {
  3290.             key = "grp_list";
  3291.             width = 35;
  3292.             height = 6;
  3293.         }
  3294.     }
  3295.     : boxed_column {
  3296.         label = "&Descripci≤n"; 
  3297.         : text {
  3298.             key = "desc";
  3299.             width = 32;
  3300.         }
  3301.     }           
  3302.     : boxed_column {
  3303.         children_fixed_width = true;
  3304.         : row {
  3305.             : text {
  3306.                 key = "remove";
  3307.                 width = 35;
  3308.                 horizontal_alignment = right;
  3309.             }
  3310.             : edit_box {
  3311.                 edit_width = 10;
  3312.                 key = "from";
  3313.                 horizontal_alignment = left;
  3314.             }
  3315.         }
  3316.         : row {
  3317.             : text {
  3318.                 key = "replace";
  3319.                 width = 35;
  3320.                 horizontal_alignment = right;
  3321.             }
  3322.             : edit_box {
  3323.                 edit_width = 10;
  3324.                 key = "to";
  3325.                 horizontal_alignment = left;
  3326.             }
  3327.         }
  3328.         : row {
  3329.             : text {
  3330.                 key = "qtext";
  3331.                 width = 35;
  3332.                 horizontal_alignment = right;
  3333.             }
  3334.             : edit_box {
  3335.                 edit_width = 10;
  3336.                 key = "quantity";
  3337.                 horizontal_alignment = left;
  3338.             }
  3339.         }
  3340.     }
  3341.     : row {
  3342.         key = "action";
  3343.         : button {
  3344.             label = "Re&ordenar";
  3345.             key = "reorder";
  3346.         }
  3347.         : button {
  3348.             label = "&Resaltar";
  3349.             key = "hlight";
  3350.         }
  3351.         : button {
  3352.             label = "&Invertir orden";
  3353.             key = "reverse";
  3354.         }
  3355.     }
  3356.     ok_cancel_help_errtile;
  3357. }
  3358.  
  3359. acad_grp_member : dialog {
  3360.     label = "Grupos a los que pertenece el objeto"; 
  3361.     initial_focus = "accept";
  3362.     : list_box {
  3363.         key = "listbox";
  3364.         width = 35;
  3365.         height = 8;
  3366.         fixed_width = true;
  3367.     }
  3368.     spacer;
  3369.     : ok_button {
  3370.         is_cancel = true;
  3371.     }
  3372. }
  3373.  
  3374. acad_msg : dialog {
  3375.    label = "Agrupar objetos"; 
  3376.    width = 30;
  3377.    : row {
  3378.        next_button;
  3379.        prev_button;
  3380.    }
  3381.    spacer_1;
  3382.    : ok_button {
  3383.        is_cancel = true;
  3384.    } 
  3385.    errtile; 
  3386. }
  3387.  
  3388. ddfcf : dialog {
  3389.   label        = "Tolerancia geomΘtrica";
  3390.   :row {
  3391.       : boxed_column {
  3392.           label = "Sφmb";
  3393.           children_fixed_height = true;
  3394.           children_fixed_width = true;
  3395.           : text {
  3396.              label = "";
  3397.           }
  3398.           spacer_1;
  3399.           : fcf_ibut {
  3400.              key         = "sym11";
  3401.           }
  3402.           spacer_1;
  3403.           : fcf_ibut {
  3404.              key         = "sym21";
  3405.           }
  3406.       }
  3407.       : boxed_column {
  3408.           label = "Tolerancia 1";
  3409.           children_fixed_height = true;
  3410.           children_fixed_width = true;
  3411.           : text {
  3412.               label = "Diß  Valor    CM";
  3413.           }
  3414.           spacer_1;
  3415.           : row {
  3416.               : fcf_ibut {
  3417.                   key         = "sym12";
  3418.               }
  3419.               : fcf_ebox {
  3420.                   key         = "ebox11";
  3421.               }
  3422.               : fcf_ibut {
  3423.                   key         = "sym13";
  3424.               }
  3425.           }
  3426.           spacer_1;
  3427.           : row {
  3428.               : fcf_ibut {
  3429.                   key         = "sym22";
  3430.               }
  3431.               : fcf_ebox {
  3432.                   key         = "ebox21";
  3433.               }
  3434.               : fcf_ibut {
  3435.                   key         = "sym23";
  3436.               }
  3437.           }
  3438.       }
  3439.  
  3440.       : boxed_column {
  3441.           label = "Tolerancia 2";
  3442.           children_fixed_height = true;
  3443.           children_fixed_width = true;
  3444.           : text {
  3445.               label = "Diß  Valor    CM";
  3446.           }
  3447.           spacer_1;
  3448.           : row {
  3449.                : fcf_ibut {
  3450.                    key         = "sym14";
  3451.                }
  3452.                : fcf_ebox {
  3453.                    key         = "ebox12";
  3454.                }
  3455.                : fcf_ibut {
  3456.                    key         = "sym15";
  3457.                }
  3458.           }
  3459.           spacer_1;
  3460.           : row {
  3461.               : fcf_ibut {
  3462.                   key         = "sym24";
  3463.               }
  3464.               : fcf_ebox {
  3465.                   key         = "ebox22";
  3466.               }
  3467.               : fcf_ibut {
  3468.                   key         = "sym25";
  3469.               }
  3470.           }
  3471.       }
  3472.  
  3473.       : boxed_column {
  3474.           label = "Ref. 1";
  3475.           children_fixed_height = true;
  3476.           children_fixed_width = true;
  3477.           : text {
  3478.               label = "Ref. CM";
  3479.           }
  3480.           spacer_1;
  3481.           : row {
  3482.               : fcf_ebox1 {
  3483.                   key         = "ebox13";
  3484.               }
  3485.               : fcf_ibut {
  3486.                   key         = "sym16";
  3487.               }
  3488.           }
  3489.           spacer_1;
  3490.           : row {
  3491.               : fcf_ebox1 {
  3492.                   key         = "ebox23";
  3493.               }
  3494.               : fcf_ibut {
  3495.                   key         = "sym26";
  3496.               }
  3497.           }
  3498.       }
  3499.  
  3500.       : boxed_column {
  3501.           label = "Ref. 2";
  3502.           children_fixed_height = true;
  3503.           children_fixed_width = true;
  3504.           : text {
  3505.               label = "Ref. CM";
  3506.           }
  3507.           spacer_1;
  3508.           : row {
  3509.               : fcf_ebox1 {
  3510.                   key         = "ebox14";
  3511.               }
  3512.               : fcf_ibut {
  3513.                   key         = "sym17";
  3514.               }
  3515.           }
  3516.           spacer_1;
  3517.           : row {
  3518.               : fcf_ebox1 {
  3519.                   key         = "ebox24";
  3520.               }
  3521.               : fcf_ibut {
  3522.                   key         = "sym27";
  3523.               }
  3524.           }
  3525.       }
  3526.  
  3527.       : boxed_column {
  3528.           label = "Ref. 3";
  3529.           children_fixed_height = true;
  3530.           children_fixed_width = true;
  3531.           : text {
  3532.               label = "Ref. CM";
  3533.           }
  3534.           spacer_1;
  3535.           : row {
  3536.               : fcf_ebox1 {
  3537.                   key         = "ebox15";
  3538.               }
  3539.               : fcf_ibut {
  3540.                   key         = "sym18";
  3541.               }
  3542.           }
  3543.           spacer_1;
  3544.           : row {
  3545.               : fcf_ebox1 {
  3546.                   key         = "ebox25";
  3547.               }
  3548.               : fcf_ibut {
  3549.                   key         = "sym28";
  3550.               }
  3551.           }
  3552.       }
  3553.   }
  3554.   spacer_1;
  3555.   : column {
  3556.       children_fixed_height = true;
  3557.       : row {
  3558.           fixed_width = true;
  3559.           : text {
  3560.                label = "Altura:";
  3561.           }
  3562.           : fcf_ebox {
  3563.               key         = "ebox31";
  3564.           }
  3565.           : text {
  3566.                label = "Zona de tolerancia proyectada:";
  3567.           }
  3568.           : fcf_ibut {
  3569.               key         = "sym31";
  3570.           }
  3571.       }
  3572.       spacer_1;
  3573.       : row {
  3574.           fixed_width = true;
  3575.           : text {
  3576.                label = "Identificador de Ref.:";
  3577.           }
  3578.           : fcf_ebox {
  3579.               key         = "ebox32";
  3580.           }
  3581.       }
  3582.   }
  3583.   spacer_1;
  3584.   ok_cancel_help_errtile;
  3585. }
  3586.  
  3587. ddfcfsub: dialog {
  3588.   label        = "Sφmbolo";
  3589.   : column {
  3590.    : row {
  3591.       : fcf_ibut1 {
  3592.         key          = "gdtj";      /* Position */
  3593.       }
  3594.       : fcf_ibut1 {
  3595.         key          = "gdtr";      /* Circularity */
  3596.       }
  3597.       : fcf_ibut1 {
  3598.         key          = "gdti";      /* Symmetry */
  3599.       }
  3600.       : fcf_ibut1 {
  3601.         key          = "gdtf";      /* Parallel */
  3602.       }
  3603.       : fcf_ibut1 {
  3604.         key          = "gdtb";       /* Perpendicular */
  3605.       }
  3606.     }
  3607.     : row {
  3608.       : fcf_ibut1 {
  3609.         key          = "gdta";      /* Angular */
  3610.       }
  3611.       : fcf_ibut1 {
  3612.         key          = "gdtg";      /* Cylindricity */
  3613.       }
  3614.       : fcf_ibut1 {
  3615.         key          = "gdtc";       /* Flatness */
  3616.       }
  3617.       : fcf_ibut1 {
  3618.         key          = "gdte";      /* Circularity */
  3619.       }
  3620.       : fcf_ibut1 {
  3621.         key          = "gdtu";      /* Straightness    */
  3622.       }
  3623.     }
  3624.     : row {
  3625.       : fcf_ibut1 {
  3626.         key          = "gdtd";      /* Profile of a surface */
  3627.       }
  3628.       : fcf_ibut1 {
  3629.         key          = "gdtk";      /* Line Profile */
  3630.       }
  3631.       : fcf_ibut1 {
  3632.         key          = "gdth";      /* Circular Runout */
  3633.       }
  3634.       : fcf_ibut1 {
  3635.         key          = "gdtt";      /* Total Runout    */
  3636.       }
  3637.       : fcf_ibut1 {
  3638.         key          = "gdt-";      /* Nothing */
  3639.       }
  3640.     }
  3641.   }
  3642.   spacer_1;
  3643.   ok_cancel_help_errtile;
  3644. }
  3645.  
  3646. ddfcfsub1: dialog {
  3647.   label        = "Condici≤n de material";
  3648.   : row {
  3649.       : fcf_ibut1 {
  3650.        key          = "gdtm";   /* Maximum */
  3651.       }
  3652.       : fcf_ibut1 {
  3653.        key          = "gdtl";   /* Least */
  3654.       }
  3655.       : fcf_ibut1 {
  3656.        key          = "gdts";   /* Regardless of feature size */
  3657.       }
  3658.       : fcf_ibut1 {
  3659.        key          = "gdt-";   /* Nothing */
  3660.       }
  3661.   }
  3662.   spacer_1;
  3663.   ok_cancel_help_errtile;
  3664. }
  3665.  
  3666.  
  3667. spelldlg : dialog {
  3668.     label = "Ortografφa";
  3669.     initial_focus = "sp_suggedit";
  3670.     : row {
  3671.         : text {
  3672.             label = "Diccionario actual: ";
  3673.         }
  3674.         : text {
  3675.             key = "sp_currlang";
  3676.             width = 32;
  3677.             fixed_width = true;
  3678.         }
  3679.     }
  3680.     spacer;
  3681.     : row {
  3682.         : boxed_column {
  3683.           label = "Palabra actual";
  3684.           : text {
  3685.               label = "";
  3686.               key = "sp_word";
  3687.               width = 32;
  3688.           }
  3689.           spacer;
  3690.         }
  3691.         : column {
  3692.             : cancel_button {
  3693.                 width = 10;
  3694.             }
  3695.             : help_button {
  3696.                 width = 10;
  3697.             }
  3698.         }
  3699.     }
  3700.     spacer;
  3701.     : text {
  3702.         label = "&Sugerencias:";
  3703.     }
  3704.     : row {
  3705.         : column {
  3706.             width = 20;
  3707.             : edit_box {
  3708.                 key = "sp_suggedit";
  3709.                 edit_limit = 63;
  3710.             }
  3711.              : list_box {
  3712.                 key = "sp_sugglist";
  3713.                 multiple_select = false;
  3714.                 height = 6;
  3715.             }
  3716.         }
  3717.         children_alignment = top;
  3718.         children_fixed_height = true;
  3719.         : column {
  3720.             : row {
  3721.                 : button {
  3722.                     label = "&Ignorar";
  3723.                     key = "sp_ignore";
  3724.                     width = 12;
  3725.                     fixed_width = true;
  3726.                 }
  3727.                 : button {
  3728.                     label = "Ignorar &todo";
  3729.                     key = "sp_ignoreall";
  3730.                     width = 20;
  3731.                     fixed_width = false;
  3732.                 }
  3733.             }
  3734.             : row {
  3735.                 : button {
  3736.                     label = "&Cambiar";
  3737.                     key = "sp_change";
  3738.                     width = 12;
  3739.                     fixed_width = true;
  3740.                 }
  3741.                 : button {
  3742.                     label = "Ca&mbiar todo";
  3743.                     key = "sp_changeall";
  3744.                     width = 20;
  3745.                     fixed_width = false;
  3746.                 }
  3747.             }
  3748.             : row {
  3749.                 : button {
  3750.                     label = "&A±adir";
  3751.                     key = "sp_addcustom";
  3752.                     width = 12;
  3753.                     fixed_width = true;
  3754.                 }
  3755.                 : button {
  3756.                     label = "&Buscar";
  3757.                     key = "sp_lookup";
  3758.                     width = 20;
  3759.                     fixed_width = false;
  3760.                 }
  3761.             }
  3762.             spacer_1;
  3763.             : button {
  3764.                 label = "Cambiar &diccionarios...";
  3765.                 key = "sp_changedict";
  3766.             }
  3767.         }
  3768.     }
  3769.     spacer;
  3770.     : boxed_column {
  3771.         label = "Contexto";
  3772.         : text {
  3773.             label = "";
  3774.             key = "sp_context";
  3775.             width = 32;
  3776.         }
  3777.         spacer;
  3778.     }
  3779.     errtile;
  3780. }
  3781.  
  3782.  
  3783. spelloptdlg : dialog {
  3784.     label = "Cambiar diccionarios";
  3785.     initial_focus = "sp_suggedit";
  3786.     : row {
  3787.         : boxed_column {
  3788.             label = "&Diccionario principal";
  3789.             : popup_list {
  3790.                key = "sp_mainname";
  3791.                edit_width = 30;
  3792.             }
  3793.         }
  3794.         spacer_1;
  3795.         : column {
  3796.             ok_button;
  3797.             cancel_button;
  3798.             help_button;
  3799.         }
  3800.     }
  3801.     spacer;
  3802.     : boxed_column {
  3803.         fixed_width = true;
  3804.         width = 32;
  3805.         label = "Diccionario &personalizado";
  3806.         : edit_box {
  3807.             key = "sp_customname";
  3808.             edit_limit = 256;
  3809.         }
  3810.         : button {
  3811.             fixed_width = true;
  3812.             width = 10;
  3813.             alignment = centered;
  3814.             label = "E&xaminar...";
  3815.             key = "sp_browse";
  3816.         }
  3817.     }
  3818.     : boxed_column {
  3819.         label = "Pa&labras diccionario personalizado";
  3820.         : row {
  3821.             : column {
  3822.                 : edit_box {
  3823.                     key = "sp_custedit";
  3824.                     width = 32;
  3825.                     edit_limit = 63;
  3826.                 }
  3827.                 : list_box {
  3828.                     key = "sp_customwords";
  3829.                     multiple_select = false;
  3830.                     height = 6;
  3831.                 }
  3832.             }
  3833.             children_alignment = top;
  3834.             children_fixed_height = true;
  3835.             : column {
  3836.                 : button {
  3837.                     label = "&A±adir";
  3838.                     key = "sp_custadd";
  3839.                 }
  3840.                 : button {
  3841.                     label = "&Suprimir";
  3842.                     key = "sp_custdel";
  3843.                 }
  3844.             }
  3845.         }
  3846.     }
  3847.     errtile;
  3848. }
  3849.  
  3850.  
  3851. // mstyle - main dialogue:
  3852.  
  3853. mstyle : dialog {
  3854.     label = "Estilos lφnea m·ltiple";
  3855.     children_alignment = centered;
  3856.     :boxed_row {
  3857.         label = "Estilo lφnea m·ltiple";
  3858.         width = 42; fixed_width = true;
  3859.         :column {
  3860.             : row {
  3861.                 : text_part {
  3862.                     label = "Actual:";
  3863.                     width = 13;
  3864.                 }
  3865.                 : popup_list {
  3866.                     key = "current";
  3867.                     edit_width = 31;
  3868.                     edit_limit = 31;
  3869.                 }
  3870.             }
  3871.             : row {
  3872.                 : text_part {
  3873.                     label = "Nombre:";
  3874.                     width = 13;
  3875.                 }
  3876.                 : edit_box {
  3877.                     key = "name";
  3878.                     edit_width = 31;
  3879.                     edit_limit = 217;
  3880.                 }
  3881.             }
  3882.             : row {
  3883.                 : text_part {
  3884.                     label = "Descripci≤n:";
  3885.                     width = 13;
  3886.                 }
  3887.                 : edit_box {
  3888.                     key = "description";
  3889.                     edit_width = 31;
  3890.                     edit_limit = 255;
  3891.                 }
  3892.             }
  3893.             :row {
  3894.                 :button {
  3895.                     label = "Cargar...";
  3896.                     key = "load";
  3897.                 }
  3898.                 :button {
  3899.                     label = "Guardar...";
  3900.                     key = "save";
  3901.                 }
  3902.                 :button {
  3903.                     label = "A±adir";
  3904.                     key = "addStyle";
  3905.                 }
  3906.                 :button {
  3907.                     label = "Renombrar";
  3908.                     key = "rename";
  3909.                 }
  3910.             }
  3911.         }
  3912.     }
  3913.     spacer_1;
  3914.     :image {
  3915.         key = "mline_image";
  3916.         height = 4;
  3917.         width = 45;
  3918.         alignment = centered;
  3919.         fixed_width = true;
  3920.     }
  3921.     :button {
  3922.         fixed_width = true;
  3923.         width = 32;
  3924.         height = 2;
  3925.         label = "Propiedades elemento...";
  3926.         key = "elements";
  3927.     }
  3928.     :button {
  3929.         fixed_width = true;
  3930.         width = 32;
  3931.         height = 2;
  3932.         label = "Propiedades lφnea m·ltiple...";
  3933.         key = "properties";
  3934.     }
  3935.     spacer_1;
  3936.     ok_cancel_help_errtile;
  3937. }
  3938.  
  3939. //==================================================================
  3940. // mstyle - elements dialogue:
  3941.  
  3942. estyle : dialog {
  3943.      label = "Propiedades del elemento";
  3944.      : concatenation {
  3945.          : text_part {
  3946.               label = "Elementos:";
  3947.               width = 10;
  3948.               fixed_width = true;
  3949.          }
  3950.          : text_part {
  3951.               label = "Equidist.";
  3952.               width = 8;
  3953.               fixed_width = true;
  3954.          }
  3955.          : text_part {
  3956.               label = "Color";
  3957.               width = 8;
  3958.               fixed_width = true;
  3959.          }
  3960.          : text_part {
  3961.               label = "Tlφnea";
  3962.               fixed_width = true;
  3963.          }
  3964.      }
  3965.      : row {
  3966.        : spacer {
  3967.          width = 9;
  3968.        }
  3969.        : list_box {
  3970.          width = 40;
  3971.          height = 4;
  3972.          key = "list_of_lines";
  3973.          tabs = "8 16";
  3974.        }
  3975.      }
  3976.      : row {
  3977.           fixed_width = true;
  3978.           : button {
  3979.                fixed_width = true;
  3980.                label = "A±adir";
  3981.                key = "addLine";
  3982.           }
  3983.           : button {
  3984.                fixed_width = true;
  3985.                label = "Suprimir";
  3986.                key = "delLine";
  3987.           }
  3988.           : spacer { width = 3; }
  3989.           : edit_box {
  3990.               fixed_width = true;
  3991.               label = "Equidistancia";
  3992.               key = "offSet";
  3993.               value = "0.00";
  3994.               edit_width = 6; edit_limit = 6;
  3995.           }
  3996.      }
  3997.      : row {
  3998.           fixed_width = true;
  3999.           : button {
  4000.               fixed_width = true;
  4001.               width = 12;
  4002.               label = "Color...";
  4003.               key = "lineColDialog";
  4004.            }
  4005.            : image_button {
  4006.               fixed_width = true;
  4007.               key = "lineColSwash";
  4008.               height = 2; width = 5;
  4009.            }
  4010.            : edit_box {
  4011.               fixed_width = true;
  4012.               key = "lineColEdit";
  4013.               value = "PORCAPA";
  4014.               edit_width = 10;
  4015.               edit_limit = 10;
  4016.            }
  4017.      }
  4018.  
  4019.      : row {
  4020.           fixed_width = true;
  4021.           : button {
  4022.                fixed_width = true;
  4023.                width = 12;
  4024.                label = "Tipo de lφnea...";
  4025.                key = "setLineStyle";
  4026.           }
  4027.           : spacer {
  4028.               fixed_width = true;
  4029.                width = 6;
  4030.           }
  4031.           : text {
  4032.               fixed_width = true;
  4033.                key = "ltype_name";
  4034.                value = "PORCAPA";
  4035.                width = 10;
  4036.           }
  4037.      }
  4038.      ok_cancel_help; 
  4039.      errtile;
  4040. }
  4041.  
  4042. //==================================================================
  4043. // mstyle - styles list dialogue:
  4044.  
  4045. sstyle : dialog {
  4046.      label = "Cargar estilos lφnea m·ltiple";
  4047.      :row {
  4048.          :button {
  4049.             label = "Archivo ...";
  4050.             key = "mstyleFileBut";
  4051.          }
  4052.          : text {
  4053.             key = "mstyleFileLabel";
  4054.             width = 31;
  4055.          }
  4056.       }
  4057.      : list_box {
  4058.          width = 40;
  4059.          height = 4;
  4060.          key = "list_of_styles";
  4061.        }
  4062.     ok_cancel_help_errtile;
  4063. }
  4064.  
  4065. //==================================================================
  4066. // mstyle - properties dialogue:
  4067.  
  4068. pstyle : dialog {
  4069.   label = "Propiedades de lφnea m·ltiple";
  4070.   : row {
  4071.     fixed_width = true;
  4072.     : toggle {
  4073.       label = "Visual. juntas";
  4074.       key = "dispJoint";
  4075.     }
  4076.   }
  4077.   : boxed_column {
  4078.     label = "Extremos";
  4079.     : row {
  4080.       fixed_width = true;
  4081.       : spacer {
  4082.         width = 12;
  4083.       }
  4084.       : text {
  4085.         label = "Inicial";
  4086.         width = 9;
  4087.       }
  4088.       : text {
  4089.         label = "Final";
  4090.       }
  4091.     }
  4092.     : row {
  4093.       fixed_width = true;
  4094.       : text {
  4095.         label = "Lφnea";
  4096.         width = 12;
  4097.       }
  4098.       : toggle {
  4099.         key   = "scapline";
  4100.       }
  4101.       : spacer {
  4102.         width = 5;
  4103.       }
  4104.       : toggle {
  4105.         key   = "ecapline";
  4106.       }
  4107.     }
  4108.     : row {
  4109.       fixed_width = true;
  4110.       : text {
  4111.         label = "Arco ext.";
  4112.         width = 12;
  4113.       }
  4114.       : toggle {
  4115.         key   = "scapoarc";
  4116.       }
  4117.       : spacer {
  4118.         width = 5;
  4119.       }
  4120.       : toggle {
  4121.         key   = "ecapoarc";
  4122.       }
  4123.     }
  4124.     : row {
  4125.       fixed_width = true;
  4126.       : text {
  4127.         label = "Arco int.";
  4128.         width = 12;
  4129.       }
  4130.       : toggle {
  4131.         key   = "scapiarc";
  4132.       }
  4133.       : spacer {
  4134.         width = 5;
  4135.       }
  4136.       : toggle {
  4137.         key   = "ecapiarc";
  4138.       }
  4139.     }
  4140.     : row {
  4141.       fixed_width = true;
  4142.       : text {
  4143.         label = "Angulo";
  4144.         width = 12;
  4145.       }
  4146.       : edit_box {
  4147.         key   = "scapangle";
  4148.         edit_limit = 10;
  4149.         edit_width = 10;
  4150.         fixed_width = true;
  4151.         value = "90.0";
  4152.       }
  4153.       : spacer {
  4154.         width = 2;
  4155.       }
  4156.       : edit_box {
  4157.         key   = "ecapangle";
  4158.         edit_limit = 10;
  4159.         edit_width = 10; fixed_width = true;
  4160.         value = "90.0";
  4161.       }
  4162.     }
  4163.  
  4164.   }
  4165.   : boxed_row {
  4166.     label = "Relleno";
  4167.     : toggle {
  4168.       key = "fillOn";
  4169.       label = "ACT";
  4170.     }
  4171.     : spacer { width = 2; }
  4172.     : button {
  4173.       label = "Color...";
  4174.       key = fillColor;
  4175.     }
  4176.     : image_button {
  4177.       key = "fillColSwash";
  4178.       height = 2; width = 5; fixed_width = true;
  4179.     }
  4180.     : edit_box {
  4181.       key = "filColEdit";
  4182.       edit_limit = 12;
  4183.       edit_width = 12;
  4184.       fixed_width = true;
  4185.     }
  4186.   }
  4187.   ok_cancel_help;
  4188.       
  4189.   errtile;
  4190. }
  4191.  
  4192. //==================================================================
  4193. // mledit.dcl
  4194. //
  4195. // 
  4196. // Prototype layout for mline edit tools.
  4197.  
  4198.  
  4199. //==================================================================
  4200. // mledit - main dialogue:
  4201.  
  4202. mledit : dialog {
  4203.  
  4204.   label = "Herramientas de edici≤n de lφneas m·ltiples";
  4205.   : row {
  4206.         : image_button {
  4207.            key = "medit_cc";
  4208.            width = 7;
  4209.            height = 3;
  4210.            fixed_width = true;
  4211.         }
  4212.         : image_button {
  4213.            key = "medit_ct";
  4214.            width = 7;
  4215.            height = 3;
  4216.            fixed_width = true;
  4217.         }
  4218.         : image_button {
  4219.            key = "medit_cj";
  4220.            width = 7;
  4221.            height = 3;
  4222.            fixed_width = true;
  4223.         }
  4224.         : image_button {
  4225.            key = "medit_cs";
  4226.            width = 7;
  4227.            height = 3;
  4228.            fixed_width = true;
  4229.         }
  4230.    }
  4231.    : row {
  4232.         : image_button {
  4233.            key = "medit_oc";
  4234.            width = 7;
  4235.            height = 3;
  4236.            fixed_width = true;
  4237.         }
  4238.         : image_button {
  4239.            key = "medit_ot";
  4240.            width = 7;
  4241.            height = 3;
  4242.            fixed_width = true;
  4243.         }
  4244.         : image_button {
  4245.            key = "medit_av";
  4246.            width = 7;
  4247.            height = 3;
  4248.            fixed_width = true;
  4249.         }
  4250.         : image_button {
  4251.            key = "medit_ca";
  4252.            width = 7;
  4253.            height = 3;
  4254.            fixed_width = true;
  4255.         }
  4256.    }
  4257.    : row {
  4258.         : image_button {
  4259.            key = "medit_mc";
  4260.            width = 7;
  4261.            height = 3;
  4262.            fixed_width = true;
  4263.         }
  4264.         : image_button {
  4265.            key = "medit_mt";
  4266.            width = 7;
  4267.            height = 3;
  4268.            fixed_width = true;
  4269.         }
  4270.         : image_button {
  4271.            key = "medit_dv";
  4272.            width = 7;
  4273.            height = 3;
  4274.            fixed_width = true;
  4275.         }
  4276.         : image_button {
  4277.            key = "medit_wa";
  4278.            width = 7;
  4279.            height = 3;
  4280.            fixed_width = true;
  4281.         }
  4282.    }
  4283.    ok_cancel_help;
  4284.    errtile;
  4285. }
  4286.