tkMacTclCode.r
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkMacTclCode.r --
  3.  *
  4.  * This file creates resources from the Tcl code that is
  5.  * usually stored in the TCL_LIBRARY
  6.  *
  7.  * Copyright (c) 1996-1997 Sun Microsystems, Inc.
  8.  *
  9.  * See the file "license.terms" for information on usage and redistribution
  10.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11.  *
  12.  * SCCS: @(#) tkMacTclCode.r 1.1 98/01/21 22:22:38
  13.  */
  14. #include <Types.r>
  15. #include <SysTypes.r>
  16. #define TK_LIBRARY_RESOURCES 3000
  17. /* 
  18.  * The mechanisim below loads Tcl source into the resource fork of the
  19.  * application.  The example below creates a TEXT resource named
  20.  * "Init" from the file "init.tcl".  This allows applications to use
  21.  * Tcl to define the behavior of the application without having to
  22.  * require some predetermined file structure - all needed Tcl "files"
  23.  * are located within the application.  To source a file for the
  24.  * resource fork the source command has been modified to support
  25.  * sourcing from resources.  In the below case "source -rsrc {Init}"
  26.  * will load the TEXT resource named "Init".
  27.  */
  28. read 'TEXT' (TK_LIBRARY_RESOURCES+1, "tk", purgeable,preload) 
  29. "::library:tk.tcl";
  30. read 'TEXT' (TK_LIBRARY_RESOURCES+2, "button", purgeable) 
  31. "::library:button.tcl";
  32. read 'TEXT' (TK_LIBRARY_RESOURCES+3, "dialog", purgeable) 
  33. "::library:dialog.tcl";
  34. read 'TEXT' (TK_LIBRARY_RESOURCES+4, "entry", purgeable) 
  35. "::library:entry.tcl";
  36. read 'TEXT' (TK_LIBRARY_RESOURCES+5, "focus", purgeable) 
  37. "::library:focus.tcl";
  38. read 'TEXT' (TK_LIBRARY_RESOURCES+6, "listbox", purgeable) 
  39. "::library:listbox.tcl";
  40. read 'TEXT' (TK_LIBRARY_RESOURCES+7, "menu", purgeable) 
  41. "::library:menu.tcl";
  42. read 'TEXT' (TK_LIBRARY_RESOURCES+8, "optMenu", purgeable) 
  43. "::library:optMenu.tcl";
  44. read 'TEXT' (TK_LIBRARY_RESOURCES+9, "palette", purgeable) 
  45. "::library:palette.tcl";
  46. read 'TEXT' (TK_LIBRARY_RESOURCES+10, "scale", purgeable) 
  47. "::library:scale.tcl";
  48. read 'TEXT' (TK_LIBRARY_RESOURCES+11, "scrlbar", purgeable) 
  49. "::library:scrlbar.tcl";
  50. read 'TEXT' (TK_LIBRARY_RESOURCES+12, "tearoff", purgeable) 
  51. "::library:tearoff.tcl";
  52. read 'TEXT' (TK_LIBRARY_RESOURCES+13, "text", purgeable) 
  53. "::library:text.tcl";
  54. read 'TEXT' (TK_LIBRARY_RESOURCES+14, "bgerror", purgeable) 
  55. "::library:bgerror.tcl";
  56. read 'TEXT' (TK_LIBRARY_RESOURCES+15, "console", purgeable) 
  57. "::library:console.tcl";
  58. read 'TEXT' (TK_LIBRARY_RESOURCES+16, "msgbox", purgeable) 
  59. "::library:msgbox.tcl";
  60. read 'TEXT' (TK_LIBRARY_RESOURCES+17, "comdlg", purgeable) 
  61. "::library:comdlg.tcl";
  62. read 'TEXT' (TK_LIBRARY_RESOURCES+18, "spinbox", purgeable) 
  63. "::library:spinbox.tcl";
  64. read 'TEXT' (TK_LIBRARY_RESOURCES+19, "panedwindow", purgeable) 
  65. "::library:panedwindow.tcl";
  66. read 'TEXT' (TK_LIBRARY_RESOURCES+20, "msgcat", purgeable) 
  67. ":::tcl:library:msgcat:msgcat.tcl";