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

  1. // Next available MSG number is    25 
  2. // MODULE_ID DDCHPROP_DCL_
  3. /* Next available MSG number is  23 */
  4.  
  5. //     DDCHPROP.DCL        Version 1.0
  6. //
  7. //     Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  8. //
  9. //     Permission to use, copy, modify, and distribute this software
  10. //     for any purpose and without fee is hereby granted, provided
  11. //     that the above copyright notice appears in all copies and
  12. //     that both that copyright notice and the limited warranty and
  13. //     restricted rights notice below appear in all supporting
  14. //     documentation.
  15. //
  16. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  17. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  18. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  19. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  20. //     UNINTERRUPTED OR ERROR FREE.
  21. //
  22. //     Use, duplication, or disclosure by the U.S. Government is subject to
  23. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  24. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  25. //     (Rights in Technical Data and Computer Software), as applicable.
  26. //
  27. //.
  28. //
  29. //    Dialogue for the DDCHPROP command, for use with DDCHPROP.LSP
  30. //
  31.  
  32.  
  33. //dcl_settings : default_dcl_settings { audit_level = 3; }
  34.  
  35.  
  36. textbox : edit_box {
  37.     vertical_margin = tiny;
  38.     horizontal_margin = tiny;
  39. }
  40.  
  41. ch_prop : dialog {
  42.     label = "Cambiar propiedades";
  43.     : row {
  44.         : column {
  45.             fixed_width = true;
  46.             : row {
  47.                 : button {
  48.                     label = "Color...";
  49.                     mnemonic = "o";
  50.                     key = "b_color";
  51.                     width = 14;
  52.                     fixed_width = true;
  53.                 }
  54.                 : image_button {
  55.                     key = "show_image";
  56.                     height = 1;
  57.                     width = 3;
  58.                 }
  59.                 : text {
  60.                     key = "t_color";
  61.                     width = 31;
  62.                 }
  63.             }
  64.             : row {
  65.                 : button {
  66.                     label = "Capa...";
  67.                     mnemonic = "C";
  68.                     key = "b_name";
  69.                     width = 14;
  70.                     fixed_width = true;
  71.                 }
  72.                 : spacer { width = 3; }
  73.                 : text {
  74.                     key = "t_layer";
  75.                     width = 31;
  76.                 }
  77.             }
  78.             : row {
  79.                 : button {
  80.                     label = "Tlφnea...";
  81.                     mnemonic = "l";
  82.                     key = "b_line";
  83.                     width = 14;
  84.                     fixed_width = true;
  85.                 }
  86.                 : spacer { width = 3; }
  87.                 : text {
  88.                     key = "t_ltype";
  89.                     width = 31;
  90.                 }
  91.             }
  92.         }
  93.     }
  94.     spacer;
  95.     : row {
  96.        alignment = left;
  97.        : text_part {
  98.            label = "Escala Tlφnea:";
  99.            mnemonic = "a";
  100.            width = 16;
  101.            fixed_width = true;
  102.        }
  103.        : edit_box {
  104.            key = "eb_ltscale";
  105.            edit_width = 18;
  106.            fixed_width = true;
  107.            width = 35;
  108.        }
  109.     }
  110.     : row {
  111.        alignment = left;
  112.        : text_part {
  113.            label = "Alt-objeto:";
  114.            mnemonic = "j";
  115.            width = 16;
  116.            fixed_width = true;
  117.        }
  118.        : edit_box {
  119.            key = "eb_thickness";
  120.            edit_width = 18;
  121.            fixed_width = true;
  122.            width = 35;
  123.        }
  124.     }
  125.     spacer;
  126.     ok_cancel_help_errtile;
  127. }
  128.  
  129. setcolor : dialog {
  130.     label = "Seleccionar color";
  131.     image_block;
  132.     : list_box {
  133.         key = "list_col";
  134.         allow_accept = true;
  135.     }
  136.     : textbox {
  137.         key = "edit_col";
  138.         allow_accept = false;
  139.         label = "C≤digo color:";
  140.         edit_width = 13;
  141.      }
  142.      ok_cancel_err;
  143. }
  144.  
  145. setltype : dialog {
  146.     label = "Seleccionar tipo de lφnea";
  147.     image_block;
  148.     : list_box {
  149.         key = "list_lt";
  150.         allow_accept = true;
  151.     }
  152.     : edit_box {
  153.         key = "edit_lt";
  154.         allow_accept = false;
  155.         label = "Tlφnea:";
  156.         mnemonic = "l";
  157.     edit_limit = 217;
  158.     }
  159.     ok_cancel;
  160.     errtile;
  161. }
  162.  
  163. setlayer : dialog {
  164.     subassembly = 0;
  165.     label = "Seleccionar capa";
  166.     initial_focus = "listbox";
  167.     : concatenation {
  168.         children_fixed_width = true;
  169.         key = "clayer";
  170.         : text_part {
  171.             label = "Capa actual: ";
  172.         }
  173.         : text_part {
  174.             key = "cur_layer";
  175.             width = 35;
  176.         }
  177.     }
  178.     : row {
  179.         fixed_width = true;
  180.         key = "titles";
  181.         children_fixed_width = true;
  182.         : text {
  183.             label = "Nombre capa";
  184.             width = 34;
  185.         }
  186.         : text {
  187.             label = "Estado";
  188.             width = 9;
  189.         }
  190.         : text {
  191.             label = "Color";
  192.             width = 8;
  193.         }
  194.         : text {
  195.             label = "Tlφnea";
  196.         }
  197.     }
  198.     : list_box {
  199.         width = 67;
  200.         tabs = "32 35 37 39 41 44 53";
  201.         height = 12;
  202.         key = "list_lay";
  203.         allow_accept = true;
  204.     }
  205.     : row {
  206.         key = "controls";
  207.         : column {
  208.             key = "lname";
  209.             fixed_width = true;
  210.             : edit_box {
  211.                 label = "Definir nombre capa:";
  212.                 mnemonic = "D";
  213.                 key = "edit_lay";
  214.                 edit_width = 32;
  215.                 edit_limit = 217;
  216.                 allow_accept = true;
  217.             }
  218.         }
  219.     }
  220.     ok_cancel_err;
  221. }
  222.  
  223.  
  224.