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

  1. // Next available MSG number is    23 
  2. // MODULE_ID DOSHELP_DCL_
  3. //
  4. //  doshelp.dcl - Proteus dialog file for AUtoCAD Platform-Independent Help
  5. //
  6. //     Copyright (C) 1991, 1992, 1993, 1994 by Autodesk, Inc.
  7. //
  8. //     Permission to use, copy, modify, and distribute this software
  9. //     for any purpose and without fee is hereby granted, provided
  10. //     that the above copyright notice appears in all copies and
  11. //     that both that copyright notice and the limited warranty and
  12. //     restricted rights notice below appear in all supporting
  13. //     documentation.
  14. //
  15. //     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  16. //     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  17. //     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  18. //     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  19. //     UNINTERRUPTED OR ERROR FREE.
  20. //
  21. //     Use, duplication, or disclosure by the U.S. Government is subject to
  22. //     restrictions set forth in FAR 52.227-19 (Commercial Computer
  23. //     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  24. //     (Rights in Technical Data and Computer Software), as applicable.
  25. //
  26. //.
  27. //////////////////////////////////////////////////////
  28. // Special client tiles in this file:
  29. // main dialog has:
  30. // - hlp_typesetting_width = xx;
  31. //      Max number of characters on a line for word wrap.
  32. // help button has:
  33. // - help_on_help_filename="helphelp.ahp";
  34. //      Name of the file containing help on help.
  35. // - help_on_help_label="Help on AutoCAD Help";
  36. //      Caption (label) of Help on Help dialog.
  37.  
  38. topic_box : list_box {
  39.     width = 73;
  40.     height = 16;
  41.     tabs = "3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54";
  42.     fixed_width = true;
  43.     fixed_width_font = true;
  44. }
  45.  
  46. title_box : list_box {
  47.     width = 30;
  48.     fixed_width = true;
  49. }
  50.  
  51. hlp_main : dialog {
  52.     key = "hlp_main";
  53.     label = "Ayuda de AutoCAD";
  54.     initial_focus = "hlp_text";
  55.     hlp_typesetting_width = 61;
  56.     : row {
  57.         : button {
  58.             key = "hlp_contents_btn";
  59.             label = "&Indice";
  60.                }
  61.         : button {
  62.             key = "hlp_search_btn";
  63.             label = "&Buscar";
  64.         }
  65.         : button {
  66.             key = "hlp_back_btn";
  67.             label = "A&trßs";
  68.             is_enabled = false;    //only unil the first topic is chosen
  69.          }
  70.         : button {
  71.             key = "hlp_hist_btn";
  72.             label = "&Historial";
  73.         }
  74.         spacer;
  75.         : button {
  76.             key="hlp_help_btn";
  77.             label = "Ay&uda";
  78.             help_on_help_filename=/*MSG0*/"helphelp.ahp";
  79.             help_on_help_label="Ayuda sobre la Ayuda de AutoCAD";
  80.         }
  81.     }
  82.     : topic_box {
  83.         key = "hlp_text";
  84.         max_lines = 1000;         // Max lines per help item
  85.     }
  86.     : row {
  87.      : paragraph {
  88.        : concatenation {
  89.             : text {
  90.                 key = "hlp_main_nextlbl";
  91.             label = "Escoger el tema:";
  92.         width = /*DOSHELP_GLOB_1*/14;
  93.         fixed_width = true;
  94.                 is_enabled = false;
  95.         }
  96.         : text {
  97.                 key = "hlp_main_nextedit";
  98.             value = "";
  99.                 width = 30;
  100.                 is_enabled = false;
  101.                 }
  102.        }
  103.      }
  104.             : button {
  105.                 key = "hlp_main_nextbtn";
  106.                 label = "&Siguiente";
  107.                 is_enabled = false;
  108.                 }
  109.             : button {
  110.                 key = "hlp_main_gotobtn";
  111.                 label = "&Ir a";
  112.                 is_enabled = false;
  113.                 }
  114.             }
  115.         ok_only;
  116.     }
  117. hlp_search : dialog {
  118.     label = "Ayuda de AutoCAD - Buscar";
  119.     initial_focus = "hlp_srch_keyword_list";
  120.     : column {
  121.         : row {
  122.             : column {
  123.                 : text {
  124.                     label = "Escriba una palabra o seleccione una de la lista.";
  125.                 }
  126.                 : text {
  127.                     label = "Luego, pulse \"Mostrar temas\".";
  128.                 }
  129.             }
  130.             : button : cancel_button {
  131.                 key = "hlp_srch_close";
  132.                 label = "Cerrar"; 
  133.             }
  134.         }
  135.         : row {
  136.             :edit_box {
  137.                 alignment = bottom;
  138.                 key = "hlp_srch_keyword";
  139.                 edit_width = 30;
  140.             }
  141.             : button {
  142.                 key = "hlp_srch_show";
  143.                 label = "&Mostrar temas";
  144.             }
  145.         }
  146.         : title_box {
  147.             height = 7;
  148.             key = "hlp_srch_keyword_list";
  149.         }
  150.         spacer;
  151.         : row {
  152.             : text {
  153.                 label = "Seleccione un tema y pulse \"Ir a\".";
  154.             }
  155.             : button : ok_button {
  156.                 key = "hlp_srch_goto";
  157.                 label = "&Ir a";
  158.                 is_enabled = false;
  159.             }
  160.         }
  161.         :title_box {
  162.             height = 7;
  163.             key = "hlp_srch_goto_list";
  164.         }
  165.     }
  166. }
  167.  
  168. hlp_history : dialog {
  169.     label = "Ayuda de AutoCAD - Historial";
  170.     initial_focus = "hlp_historylst";
  171.     : title_box {
  172.         height = 12;
  173.         key = "hlp_historylst";
  174.         max_lines = 100; 
  175.     }
  176.     : row {
  177.         : button : ok_button {
  178.             key = "hlp_hist_goto";
  179.             label = "&Ir a";
  180.         }
  181.         : button : cancel_button {
  182.             key = "hlp_hist_close";
  183.             label = "Cerrar"; 
  184.         }
  185.     }
  186. }
  187.  
  188. hlp_popup : dialog {
  189.     label = "Mßs ayuda sobre AutoCAD";
  190.     : topic_box {
  191.         key = "hlp_popup_text";
  192.         max_lines = 100; 
  193.     }
  194.     : button : ok_button {
  195.         key = "hlp_popup_close";
  196.         label = "Cerrar"; 
  197.     }
  198. }
  199.