home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-Update.iso / Rhapsody / graphic / viewer / ImageBrowser.1.0.README < prev    next >
Encoding:
Text File  |  1998-01-15  |  2.4 KB  |  51 lines

  1. ImageBrowser --------------------------------------------------
  2.  
  3. - I wrote this simple application as a test for some concepts as I was experimenting with
  4. Rhapsody.  I wanted to test the ability of NSImage to handle JPG and GIF images, and
  5. experiment with NSOutlineView.
  6.  
  7. Notes on Version 1.0
  8. ---------------------------------------------------
  9. - It seems to me that sometimes either NSImage or NSImage view are causing crashing type
  10. signals, but they are not raising errors!  From GDB
  11.     (gdb) run
  12.     Program received signal SIGABRT, Aborted.
  13.     0x5039e5c in kill ()
  14.  
  15. I have included a GIF that seems to cause the error to repeat (annotatedPW.gif), but I have
  16. also had the file display without error???, only to crash when the window resizes.  I have
  17. another application that displays singular images (like OmniImageView.ap p), that uses my own
  18. image view class, and it does not have any trouble with this image. YMMV, comments welcome! 
  19.  
  20. - For fun I have the up and down arrows attached to menu items, I could have caught the key
  21. down as part of the window event, but this seemed easier (that's the point right?).  Anyway,
  22. on my Intel machine this results in a double message (move up/down 2 i mages instead of one). 
  23. I had the delete image menu item set to the DEL key, but it was deleting 2 images ... 
  24.  
  25. - the outline view works pretty much as expected, however I consistently get exceptions when I
  26. try to change the tree of objects.  For example, if I delete an image, I should reload the
  27. parent, .. right?  I have tried removing the tree node before and aft er removing the file,
  28. before and after calling "[outlineView reloadItem:parent]".  If anyone can correct this please
  29. send me the changes, I am tired of fighting with it. 
  30.  
  31. Possible Future Enhancements ----------------------------------------------------- 
  32.  
  33. - replace the image view with a switch view, then flip in the correct view type for the file
  34. selected (text, rtf, m/h/c, ...).  Possibly do this with bundles so additional file formats
  35. can be easily added.  Not of any real practical value, but would be an interesting exercise in
  36. bundle design.
  37.  
  38. - replace the image view with a thumbnail matrix, so when you select a directory all the
  39. images in that directory display as thumbnails. 
  40.  
  41. - have the up/down keys scan down the outline view to the next valid image.  (might be one
  42. row, might be 200) 
  43.  
  44. - add a 'Find' panel to search for an image by name (size? directory?)
  45.  
  46.  
  47. Enjoy,
  48. David Aspinall
  49. daspinall@gects.ge.com
  50.  
  51.