home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscTeePalette / MiscDistInspector.h < prev    next >
Encoding:
Text File  |  1994-10-24  |  1.1 KB  |  49 lines

  1. //
  2. //    MiscDistInspector.h -- Inspector object for MiscDistributor.
  3. //
  4. //        Written by Don Yacktman.  Copyright 1994 by Don Yacktman.
  5. //                Version 1.0  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. #import <appkit/appkit.h>
  16. #import <apps/InterfaceBuilder.h>
  17. #import "MiscDistributor.subproj/MiscDistributor.h"
  18.  
  19. @interface MiscDistributor(IBSupport)
  20.  
  21. - (const char *)getInspectorClassName;
  22. - (NXImage *)getIBImage;
  23.  
  24. @end
  25.  
  26. @interface MiscDistributorInspector:IBInspector
  27. {
  28.     List *connections;
  29.     id selObject;
  30.  
  31.     id connectionMatrix;
  32.     id connectionNameText;
  33.     id connectionDirMatrix;
  34. }
  35.  
  36. - init;
  37. - revert:sender;
  38. - ok:sender;
  39. - (BOOL)wantsButtons;
  40.  
  41. - setUpMatrix;
  42. - editName;
  43. - selectRow:(int)i notify:(BOOL)flag;
  44. - selectionChanged:sender;
  45. - addConnection:sender;
  46. - changeConnection:sender;
  47.  
  48. @end
  49.