home *** CD-ROM | disk | FTP | other *** search
- // Next available MSG number is 39
- // MODULE_ID DDINSERT_DCL_
- /* Next available MSG number is 41 */
-
- //----------------------------------------------------------------------------
- //
- // ddinsert.dcl
- //
- // Copyright (C) 1992, 1994 by Autodesk, Inc.
- //
- // Permission to use, copy, modify, and distribute this software
- // for any purpose and without fee is hereby granted, provided
- // that the above copyright notice appears in all copies and
- // that both that copyright notice and the limited warranty and
- // restricted rights notice below appear in all supporting
- // documentation.
- //
- // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
- // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
- // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
- // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
- // UNINTERRUPTED OR ERROR FREE.
- //
- // Use, duplication, or disclosure by the U.S. Government is subject to
- // restrictions set forth in FAR 52.227-19 (Commercial Computer
- // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
- // (Rights in Technical Data and Computer Software), as applicable.
- //
- //.
- //----------------------------------------------------------------------------
- //
- // Corresponding dialogues for DDINSERT.LSP which is an AutoLISP implementation
- // of the AutoCAD Insert command with a dialogue interface.
- //
- //----------------------------------------------------------------------------
-
-
- //dcl_settings : default_dcl_settings { audit_level = 3; }
-
-
- ddinsert : dialog {
- label = "Insertar";
- : boxed_column {
- label = "Bloque";
- : row {
- : button {
- label = "Bloque...";
- key = "int_blocks";
- mnemonic = "B";
- width = 10;
- fixed_width = true;
- }
- : edit_box {
- label = "";
- key = "current_name";
- width = 36;
- edit_limit = 217;
- }
- }
- : row {
- : button {
- label = "Archivo...";
- key = "ext_blocks";
- mnemonic = "A";
- width = 10;
- fixed_width = true;
- }
- : edit_box {
- key = "path_name";
- width = 36;
- }
- }
- }
- : boxed_column {
- label = "Opciones";
- : row {
- : toggle {
- label = "Indicar parßmetros en pantalla";
- key = "on_screen";
- mnemonic = "p";
- fixed_width = true;
- }
- }
- : row {
- : boxed_column {
- label = "Punto de inserci≤n";
- : edit_box {
- label = "X:";
- mnemonic = "X";
- key = "x_pt";
- edit_width = 10;
- }
- : edit_box {
- label = "Y:";
- mnemonic = "Y";
- key = "y_pt";
- edit_width = 10;
- }
- : edit_box {
- label = "Z:";
- mnemonic = "Z";
- key = "z_pt";
- edit_width = 10;
- }
- }
- : boxed_column {
- label = "Escala";
- : edit_box {
- label = "X:";
- mnemonic = "X";
- key = "x_scale";
- edit_width = 10;
- }
- : edit_box {
- label = "Y:";
- mnemonic = "Y";
- key = "y_scale";
- edit_width = 10;
- }
- : edit_box {
- label = "Z:";
- mnemonic = "Z";
- key = "z_scale";
- edit_width = 10;
- }
- }
- : column {
- : boxed_column {
- label = "Rotaci≤n";
- fixed_height = true;
- : edit_box {
- label = "Angulo:";
- key = "rotation";
- mnemonic = "g";
- edit_width = 6;
- }
- }
- }
- }
- }
- : toggle {
- label = "Descomponer";
- key = "explode";
- mnemonic = "D";
- fixed_width = true;
- }
- ok_cancel_help_errtile;
- }
-
-
- list_blocks : dialog {
- label = "Bloques definidos";
- : edit_box {
- label = "Patr≤n:";
- key = "pattern";
- mnemonic = "P";
- allow_accept=true;
- is_default=true;
- }
- : list_box {
- key = "bl_match";
- width = 32;
- allow_accept = true;
- }
- : edit_box {
- label = "Selecci≤n:";
- key = "selection";
- mnemonic = "S";
- allow_accept=true;
- edit_limit = 217;
- }
- spacer;
- ok_cancel_err;
- }
-
- blk_exists : dialog {
- label = "Advertencia";
- : paragraph {
- : text_part {
- label = "Ya hay un bloque con este nombre en el dibujo.";
- }
- : text_part {
- label = "┐Desea redefinirlo?";
- }
- }
- spacer_1;
- : row {
- fixed_width = true;
- alignment = centered;
- : button {
- label = "Aceptar";
- key = "redefine";
- width = 8;
- }
- : spacer {
- width = 2;
- }
- : default_button {
- label = "Cancelar";
- key = "no";
- width = 8;
- }
- }
- }
-
-
-