home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / workspace / YourWS_Inspector.README next >
Encoding:
Text File  |  1992-08-31  |  1.7 KB  |  35 lines

  1.  
  2. Your Workspace Inspector
  3. an example of a custom Workspace Contents Inspector in 3.0
  4.  
  5.  
  6. Greg Burd
  7. 8/27/92
  8.  
  9.  
  10. What is this?
  11.     This is an example of how you can create a dynamically loaded Workspace Contents inspector.  When you bring up the Workspace inspector and select inspect the Contents of a file, Workspace looks at the extension, and then if a class has registered to inspect that extension, it loads it into the inspector.
  12.  
  13. When should you use this?
  14.     If you create a program that has some filename extension that you have registered with Developer Support at NeXT, and you would like to allow users of your program to view the contents of your files without launching your app, this is the avenue to take.  Like an inspector to handle Draw.app documents, etc.
  15.  
  16. How do I make one of my own?
  17.     The important files are,
  18. YourWS_Inspector.hm
  19.     This is a subclass of WMInspector, which is defined in the header  file <apps/Workspace.h>.  It is this class that is loaded and is responsible for the creation etc., of you inspector.
  20. YourWS_Inspector.nib
  21.     This is the nib file that your subclass of WMInspector loads.  The content view of this window is loaded into the Workspace inspector, and the title of the Inspector's window becomes the title of that your window.
  22.  
  23.     So once you understand that, take a good look at the documentation on Workspace in these files:
  24.     
  25.     /NextLibrary/Documentation/NextDev/GeneralRef/19_WorkspaceManager/IntroWorkspace.rtf
  26.  
  27.     /NextLibrary/Documentation/NextDev/GeneralRef/19_WorkspaceManager/Classes/WMInspector.rtf
  28.  
  29.     In the Workspace intro file there is a step by step how to on how to make an inspector.  And you don't even have to do that much work now.  The code is already typed in for you.  :-)
  30.     
  31. Good Luck and have fun!
  32.  
  33. - greg
  34. NeXT Developer Support
  35.