home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / 第1特集Plug-in / Photoshop / Plug-in_Kit_2.5.1.sit / Plug-in_Kit_2.5.1 / Code / DummyExport.r < prev    next >
Text File  |  1993-04-28  |  1KB  |  64 lines

  1. /*
  2.     File: DummyExport.r
  3.  
  4.     Copyright 1990-91 by Thomas Knoll.
  5.     Copyright 1992-93 by Adobe Systems, Inc.
  6.  
  7.     Rez source file for DummyExport example.
  8. */
  9.  
  10. /* Plug-in module version number */
  11.  
  12. #include "PIGeneral.r"
  13.  
  14. resource 'PiMI' (17000, purgeable)
  15.     { latestExportVersion,
  16.       latestExportSubVersion,
  17.       0,
  18.       supportsGrayScale +
  19.         supportsIndexedColor +
  20.           supportsRGBColor +
  21.         supportsCMYKColor +
  22.         supportsHSLColor +
  23.         supportsHSBColor +
  24.         supportsMultichannel +
  25.         supportsDuotone +
  26.         supportsLABColor,
  27.       '    ', /* No required host */
  28.       {},
  29.       {}
  30.      };
  31.  
  32. /* About dialog box */
  33.  
  34. resource 'DLOG' (17000, purgeable)
  35.     {
  36.     {0, 0, 130, 240},
  37.     dBoxProc,
  38.     visible,
  39.     noGoAway,
  40.     0x0,
  41.     17000,
  42.     ""
  43.     };
  44.  
  45. resource 'DITL' (17000, purgeable)
  46.     {
  47.         {
  48.         {-80, 0, -60, 60},      Button { enabled, "Hidden" },
  49.         {0, 0, 155, 280},      UserItem { enabled },
  50.         {10, 10, 26, 230},      StaticText { disabled, "DummyExport" },
  51.         {36, 10, 52, 230},      StaticText { disabled, "ゥ 1990-93 Adobe Systems, Inc." },
  52.         {62, 10, 110, 230},   StaticText { disabled, "An example plug-in export "
  53.                                                      "module for Adobe Photoshopェ." }
  54.         }
  55.     };
  56.  
  57. resource 'STR#' (17000, purgeable)
  58.     {
  59.         {
  60.         "DummyExport to file:"
  61.         }
  62.     };
  63.  
  64.