home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / share / Dos / VARIOS / acad / VENTANA.DCL < prev    next >
Encoding:
Text File  |  1994-04-06  |  4.6 KB  |  157 lines

  1. /* VENTANA.DCL
  2.    Realizado por Javier Erce 
  3.    Versión 3.12 para autocad 12
  4.    9 de Mayo de 1.994
  5. */
  6.  
  7. op_vent : dialog {
  8.     label = "Opciones de dibujo de Ventanas";
  9.     spacer_1;
  10.     :boxed_row {
  11.        label = "Tipología de Ventanas y Representación";
  12.          : boxed_radio_column {
  13.             label = "Tipo de ventana";
  14.             : radio_button {
  15.                  label = "Abatible";
  16.                  mnemonic = "A";
  17.                  key = "ventana_abat";
  18.                  value = "1";
  19.             }
  20.             : radio_button {
  21.                  label = "Corredera";
  22.                  mnemonic = "C";
  23.                  key = "ventana_corr";
  24.             }
  25.          }
  26.          : boxed_radio_column {
  27.             label = "Tipo de la Peana";
  28.             : radio_button {
  29.                  label = "Resaltada";
  30.                  mnemonic = "R";
  31.                  key = "ventana_resa";
  32.             }
  33.             : radio_button {
  34.                  label = "Enrasada";
  35.                  mnemonic = "E";
  36.                  key = "ventana_enra";
  37.                  value = "1";
  38.             }
  39.          }
  40.     }
  41.     spacer_1;
  42.     : boxed_row {
  43.        label = "Características de la ventana";
  44.        : boxed_column {
  45.           label = "Tipo de hojas";
  46.           : edit_box {
  47.                key = "ventana_nume";
  48.                label = "Número de hojas";
  49.                mnemonic = "N";
  50.                edit_width = 7;
  51.           }
  52.           : edit_box {
  53.                key = "ventana_lon1";
  54.                label = "Medida de hoja";
  55.                mnemonic = "M";
  56.                edit_width = 7;
  57.           }
  58.        }
  59.        : boxed_column {
  60.           label = "Tipo de cercos";
  61.           : edit_box {
  62.                key = "ventana_cean";
  63.                label = "Grueso del cerco";
  64.                mnemonic = "G";
  65.                edit_width = 7;
  66.           }
  67.           : edit_box {
  68.                key = "ventana_cefo";
  69.                label = "Fondo del cerco";
  70.                mnemonic = "F";
  71.                edit_width = 7;
  72.           }
  73.        }
  74.     }
  75.     spacer_1;
  76.     : boxed_column {
  77.        label = "Medidas de ventana";
  78.        : edit_box {
  79.             key = "ventana_long";
  80.             label = "Longitud total de la ventana:";
  81.             mnemonic = "L";
  82.             edit_width = 10;
  83.        }
  84.     }
  85.     spacer_1;
  86.     : toggle {
  87.         key = "ventana_refe";
  88.         label = "Trabajar con punto de referencia";
  89.     }
  90.     : toggle {
  91.         key = "ventana_cent";
  92.         label = "Centrar la ventana en el muro";
  93.     }
  94.     spacer_1;
  95.     : row {
  96.         : spacer { width = 1; }
  97.         : button {
  98.             label = "Vale";
  99.             key = "aceptar";
  100.             width = 8;
  101.             fixed_width = true;
  102.          }
  103.     : button {
  104.         label = "Anular";
  105.         is_cancel = true;
  106.         key = "anular";
  107.         width = 8;
  108.         fixed_width = true;
  109.     }
  110.     : button {
  111.         label = "Información...";
  112.         key = "ventana_info";
  113.         mnemonic = "I";
  114.         width = 15;
  115.         fixed_width = true;
  116.     }
  117.     : spacer { width = 1;}
  118.    }
  119. }
  120.  
  121. //***************************************************************************
  122. // Cuadro diálogo de información
  123.  
  124. op_ventana_info : dialog {
  125.     label = "Información del Programa";
  126.     spacer_1;
  127.     :paragraph {
  128.        children_alignment = centered;
  129.        : text_part { label = "Dibujo parametrizado de Ventanas"; }
  130.        : text_part { label = "    "; }
  131.        : text_part { label = "VENTANA"; }
  132.        : text_part { label = "    "; }
  133.        : text_part { label = "Versión 3.12 (Mayo de 1.994)"; }
  134.        : text_part { label = "Para su uso con AutoCad 12"; }
  135.        : text_part { label = "*******"; }
  136.        : text_part { label = "Realizado por Javier Erce Lizarraga."; }
  137.        : text_part { label = "Avda. Reyes Católicos nº 17 - 28280 El Escorial"; }
  138.        : text_part { label = "Teléfono 91 - 890.05.85"; }
  139.     }
  140.     spacer_1;
  141.     : paragraph {
  142.         children_alignment = centered;
  143.         : text_part { label = "El autor ofrece el programa VENTANA completo, para que cual"; }
  144.         : text_part { label = "quier usuario lo pueda evaluar y probar libremente. Y si se"; }
  145.         : text_part { label = "decide a utilizarlo y quiere  estar  al día de las  últimas"; }
  146.         : text_part { label = "actualizaciones de este y otros programas LISP de Arquitec-"; }
  147.         : text_part { label = "tura para AutoCad, enviar 5.000 pesetas con todos sus datos"; }
  148.         : text_part { label = "a las señas arriba indicadas.                              "; }
  149.     }
  150.     spacer_1;
  151.     ok_only;
  152.     spacer_1;
  153. }
  154.  
  155.  
  156.  
  157.