home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / appkit / Briefcase.README < prev    next >
Encoding:
Text File  |  1993-12-21  |  2.3 KB  |  43 lines

  1. Briefcase - a utility for opening multiple files/documents in different applications.
  2.  
  3. This program has two reasons for existence.  First, I wanted to generalize the
  4. multiple-document architecture embodied in Draw for use in my own applications.
  5. To do that, I decided to implement an application delegate superclass, which can
  6. readily be added to existing applications and connected in IB.  There is also a
  7. Document superclass, which implements the things I thought documents should keep
  8. track of (dirty, empty, file management, etc.)  To demonstrate that these 
  9. classes are at least somewhat subclassable (and hence of value to others), I 
  10. wrote Briefcase with this paradigm.  This package also includes a Preferences 
  11. Delegate object, which manages a preferences panel; support for localization; 
  12. and other goodies.
  13.  
  14. The second reason is that I often find myself working with the same 
  15. collection of three documents, one word processor, one graphics and one 
  16. spreadsheet document.  In this case, I don't need feedback about the 
  17. documents launching; I just want to launch them all at once, with one 
  18. key click.  Briefcase will allow you to specify files to be launched in 
  19. one of three ways:  either by typing in the absolute path (ended by a 
  20. return) using the Open panel, or by dragging and dropping the file(s) on the 
  21. app's icon.  These files are displayed in a window which the user can 
  22. edit.  When you save the document, Briefcase writes a quick C program to 
  23. open the files, compiles it and drops it in the directory you specified.  
  24. (There will also be a <file>.bc document in that directory.
  25.  
  26. That file is the editable version - the <file> is the binary you run to 
  27. launch the documents.)  Running this program launches the files.  Now, you 
  28. can create mini-programs for use in the dock, or in your directory which will 
  29. launch multiple files in different directories in different applications at 
  30. once.
  31.  
  32. Full Documentation (such as it is) can be found in the Help panel.  Once 
  33. again, please forward comments to me - that's the only thing I'm asking 
  34. in return for releasing the code.  I want to learn how to do things right, 
  35. and I'm asking you to help me.  Thanks!
  36.  
  37. Oh yeah.  Just type 'make' at a prompt - it has the standard NeXT
  38. PB-generated Makefile.  It should compile with no warnings.  A prebuilt 
  39. version is also provided.
  40.  
  41. - Subrata Sircar        ssircar@canon.com
  42.  
  43.