home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / MiscDefaultInspector.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  1.4 KB  |  46 lines

  1. /* MiscDefaultInspector.h                 
  2.  *
  3.  * This is a class that shows a single view, does no work and registers for
  4.  * every possible trigger inside the popUp.
  5.  *
  6.  * Usage: Just conect it to a view and let it do the rest.
  7.  *          To the manager it appears to be a wrapper. When the appWrappedCtrls
  8.  *          message come we will create as many copys of ourself as needed to
  9.  *          handle every trigger.
  10.  *          Attention: This only works if the sapView is a ..byPopup!
  11.  *        
  12.  *          This is the object that does NotApplicable, MultiSel, NoSel. The only
  13.  *          thing our subclasses will add is a selection check.
  14.  *          NotApplicable is not a subclass because it will be the first in
  15.  *          our inspector list and is alway 'true=YES' anyway.
  16.  *
  17.  * Written by:         Thomas Engel
  18.  * Created:            09.02.1994 (Copyright 1994 by Thomas Engel)
  19.  * Last modified:     09.02.1994
  20.  */
  21.  
  22. //    This object is included in the MiscKit by permission from the author
  23. //    and its use is governed by the MiscKit license, found in the file
  24. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  25. //    for a list of all applicable permissions and restrictions.
  26.  
  27.  
  28. #import <misckit/MiscInspector.h>
  29.  
  30. @interface MiscDefaultInspector:MiscInspector
  31. {
  32.     id        controllers;
  33. }
  34.  
  35. - addWrappedControllers;
  36.  
  37. @end
  38.  
  39. /*
  40.  * History: 09.02.1994 First code entered.
  41.  *
  42.  *
  43.  * Bugs: - No read/write.
  44.  *
  45.  *         - Ok somewhat lasagne but I hope one can need the code.
  46.  */