home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / YellowBox / Kits / MiscTableScroll-138.1 / Palettes / MiscTableScroll / Palette / MiscTableConnInspector.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-31  |  1.7 KB  |  50 lines

  1. #ifndef __MiscTableConnInspector_h
  2. #define __MiscTableConnInspector_h
  3. //=============================================================================
  4. //
  5. //    Copyright (C) 1996 by Paul S. McCarthy and Eric Sunshine.
  6. //        Written by Paul S. McCarthy and Eric Sunshine.
  7. //                All Rights Reserved.
  8. //
  9. //    This notice may not be removed from this source code.
  10. //
  11. //    This object is included in the MiscKit by permission from the authors
  12. //    and its use is governed by the MiscKit license, found in the file
  13. //    "License.rtf" in the MiscKit distribution.  Please refer to that file
  14. //    for a list of all applicable permissions and restrictions.
  15. //    
  16. //=============================================================================
  17. //-----------------------------------------------------------------------------
  18. // MiscTableConnInspector.h
  19. //
  20. //    A custom Interface Builder connection inspector so that the
  21. //    doubleTarget and doubleAction can be set.
  22. //
  23. //-----------------------------------------------------------------------------
  24. //-----------------------------------------------------------------------------
  25. // $Id: MiscTableConnInspector.h,v 1.2 96/04/30 05:38:51 sunshine Exp $
  26. // $Log:    MiscTableConnInspector.h,v $
  27. //  Revision 1.2  96/04/30  05:38:51  sunshine
  28. //  Ported to OpenStep 4.0 for Mach PR2.
  29. //  
  30. //-----------------------------------------------------------------------------
  31. extern "Objective-C" {
  32. #import <InterfaceBuilder/InterfaceBuilder.h>
  33. }
  34.  
  35. @class MiscTableScroll, NSArray;
  36.  
  37. @interface MiscTableConnInspector:IBInspector
  38.     {
  39.     MiscTableScroll*    outletScroll;
  40.     MiscTableScroll*    actionScroll;
  41.     NSArray*        connList;
  42.     id            cursrc;
  43.     id            curdst;
  44.     id            curout;
  45.     }
  46.  
  47. @end
  48.  
  49. #endif // __MiscTableConnInspector_h
  50.