home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / IconView.README < prev    next >
Encoding:
Text File  |  1992-06-14  |  1.7 KB  |  53 lines

  1. IconView
  2. (a reworking of code provided by NeXT in their 2.0 Examples) 
  3.  
  4.  
  5. by Mark Onyschuk
  6. Plexus Software and Consulting, Toronto
  7.  
  8.  
  9. mark@plexus.beltrix.guild.org
  10. 73700.3114@compuserve.com
  11.  
  12.  
  13.  
  14. You may freely copy, distribute, and reuse the code in this example.
  15. Plexus Software disclaims any warranty of any kind, expressed or implied,
  16. as to its fitness for any particular use.
  17.  
  18. also...
  19.  
  20. Please include this file when distributing this code so that it is not mistaken for the original provided by NeXT.
  21.  
  22.  
  23.  
  24. IconView is a a reworking of the IconView object provided in NeXT's 2.0 Examples distribution. 
  25.  
  26. What's new in this mutation is the bundling of Speaker/Listener code with the IconView object, a method to activate the IconView at startup, and a delegate method to notify the IconView's controller that an icon will be dropped into the view.
  27.  
  28.  To use an IconView in your own projects, place this code into your project directory, and drag IconView.h into your project's Classes suitcase.  After IconView.h is parsed by Interface Builder, drag a CustomView into any window, and set its class to IconView from the CustomView Attributes Inspector panel.
  29.  
  30. To activate the IconView, send it a beginListening message (this can only be done from Objective-C code).  To control whether files are accepted or rejected by the IconView, implement an (int)willAcceptIcon:sender ok:(int*)flag method in your IconView's  delegate:
  31.  
  32.  
  33. - (int)willAcceptIcon:sender ok:(int*)flag
  34. {
  35.     if(pathNamesAreOk([sender filename]))
  36.         *flag = YES;
  37.     else
  38.         *flag = NO;
  39.  
  40.     return 0;
  41. }
  42.  
  43.  
  44. The default behaviour of the IconView object is to accept all dropped files.
  45.  
  46. Please send all comments and flames to  mark@plexus.beltrix.guild.org.  I'm interested in hearing from you!
  47.  
  48.  
  49. Best Regards,
  50. Mark.
  51.  
  52.  
  53.