home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / palettes / ColorBrowser.README < prev    next >
Encoding:
Text File  |  1993-12-28  |  2.2 KB  |  28 lines

  1.  
  2. Jim Million    uunet!wiltel!jmillion    November 1992                                  
  3.  
  4. ColorBrowser.palette (v1.0)
  5.  
  6. ColorBrowser.palette is a 3.0  InterfaceBuilder View palette for the NXBrowser subclass ColorBrowser.  ColorBrowser uses a ColorBrowserCell as its Cell class. ColorBrowserCell is a subclass of NXBrowserCell that provides access to the color attribute of the Text object used in drawing the cell's text. Specificly, ColorBrowserCell allows the Text object's color to be any valid NXColor, whereas, NXBrowserCell only provides access to gray-scale color. Methods have been added to the ColorBrowser class to support this capability (a ColorBrowserCell may be used as the Cell class for an NXBrowser instance as well, however, not with benefit of the 'color friendly' methods in ColorBrowser).  (Edit's gdb interface demonstrates a usage of this ability in its stack browser. Here, variables change color to red when their values change.) 
  7.  
  8.  
  9. Important Files...
  10.  ColorBrowser.[hm] is the class represented by the palette.
  11.  ColorBrowserCell.[hm] is the Cell class for an instance of ColorBrowser.
  12.  ColorBrowserInspector.[hm] manages IB Attributes inspection of an instance of 
  13.    ColorBrowser.
  14.  
  15. Notes...
  16.  Browsers make no assumption about the data that fills them. They rely on their delegate 
  17.      for the specifics.  In the same way, a ColorBrowser only provides the ability to change 
  18.      a cell's color, but it can make no assumptions about which cells you wish to be color.  
  19.      It is important to note that a cell will retain its color until it is (re)loaded (usually in one of 
  20.      the browser:fillMatrix: methods). At that point, it is necessary for some controlling object
  21.      to establish any specific color choices. By default, a new cell's color will be that of 
  22.      the browser's cell prototype.  I have written a more elaborate BrowserCell subclass that 
  23.      allows registration of cell values, such that when they occur, they will be drawn in the 
  24.      specified color. Feel free to contact me if you would like to see it.
  25.  You will need to include ColorBrowser.[hm] and ColorBrowserCell.[hm] in any project 
  26.      that uses this palette (or just include the interface file and link against the object files). 
  27.      (OTHER_OFILES in a Makefile.preamble).
  28.