home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Tools / workspace / Briefcase.README < prev    next >
Encoding:
Text File  |  1993-04-06  |  2.7 KB  |  45 lines

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