home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / palettes / ObjPaletteExample.README < prev    next >
Encoding:
Text File  |  1992-10-25  |  1.3 KB  |  31 lines

  1. ObjectPalette Example
  2.  
  3. This is is a quick example in the "mini-example" vein. It is a demonstration of  how to generate an object palette for Interface Builder. The object itself does very little (adds two numbers and returns the result), so the example should only be considered as a skeleton of how to develop object palettes. Under 3.0, palettes for IB are no longer restricted to subclasses of View. The now may  be objects, windows or menus as well as views. However, they must be able to draw themselves (to be shown in IB). The trick is to use a view, then associate the object (or whatever) with this view (using the -associateObject: type: with:  method. See the code in ObjectPalette.m. Also note the "with" in this method, there is a error in some of the NeXT IB docs.) The only other trick here is the use of a special icon to represent the object on the File window of IB (using the -getIBImage method).
  4.  
  5.  
  6. SumObject 
  7.  
  8. Class description
  9.  
  10. Instance Variables
  11.  
  12.  
  13. id    summandOne
  14. id    summandTwo
  15. id    sum
  16.  
  17.  
  18. Instance Methods
  19.  
  20. sumThem
  21. - sumThem:sender
  22.  
  23. This method takes floats from summandOne and summandTwo and returns their sum to sum, all of which must be fields of the Form class. 
  24.  
  25.  
  26.  
  27.  
  28. Direct any questions or inquiries to Charlie at    charlie@technosci.com (NeXTmail is okay).
  29.  
  30.  
  31.