home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / MacApp / MacApp 3.0a2 / Libraries / DeskScrapView.r < prev    next >
Encoding:
Text File  |  1991-05-01  |  1.3 KB  |  60 lines  |  [TEXT/MPS ]

  1. /*
  2.     DeskScrapView.r
  3.     MacApp® Clipboard display Resources
  4.     Copyright © 1986-1990 Apple Computer, Inc.    All rights reserved.
  5. */
  6.  
  7. /* • Auto-Include the requirements for this source */
  8. #ifndef __TYPES.R__
  9. #include "Types.r"
  10. #endif
  11.  
  12. #ifndef __MacAppTypes__
  13. #include "MacAppTypes.r"
  14. #endif
  15.  
  16. #ifndef __ViewTypes__
  17. #include "ViewTypes.r"
  18. #endif
  19.  
  20. #if qTemplateViews
  21. resource 'view' (kIDClipWindow,
  22. #if qNames
  23.     "IDClipWindow",
  24. #endif
  25.     purgeable)  { {
  26.     root, 'WIND', { 270, 40 }, { 80, 410 }, sizeVariable, sizeVariable, notShown, enabled,
  27.     Window {
  28.         "",
  29.             zoomDocProc, goAwayBox, resizable, modeless, ignoreFirstClick, dontFreeOnClosing,
  30.             disposeOnFree, closesDocument, openWithDocument, dontAdaptToScreen,
  31.             dontStagger, dontForceOnScreen, dontCenter, noID, "Clipboard" };
  32.  
  33.     'WIND', 'SCLR', { 0, 0 }, { 80-kSBarSizeMinus1, 410-kSBarSizeMinus1 },
  34.     sizeRelSuperView, sizeRelSuperView, shown, enabled,
  35.     Scroller {
  36.         "",
  37.             vertScrollBar, horzScrollBar, 0, 0, 16, 16,
  38.             vertConstrain, horzConstrain, { 0, 0, 0, 0 } };
  39.     
  40.     'SCLR', kIDClipView, { 0, 0 }, { 500, 500 }, sizeVariable, sizeVariable, shown, disabled,
  41.     View { "TDeskScrapView" }
  42. } };
  43. #else
  44. resource 'WIND' (kIDClipWindow,
  45. #if qNames
  46.     "IDClipWindow",
  47. #endif
  48.     purgeable) {
  49.     {270, 40, 350, 450},
  50.     zoomDocProc,
  51.     invisible,
  52.     goaway,
  53.     0x0,
  54.     "Clipboard",
  55.     centerMainScreen
  56. };
  57. #endif
  58.  
  59.  
  60.