home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / YellowBox / Kits / MiscTableScroll-138.1 / Palettes / MiscTableScroll / Framework / MiscColView.M < prev    next >
Encoding:
Text File  |  1998-03-31  |  1.7 KB  |  45 lines

  1. //=============================================================================
  2. //
  3. //    Copyright (C) 1995, 1996 by Paul S. McCarthy and Eric Sunshine.
  4. //        Written by Paul S. McCarthy and Eric Sunshine.
  5. //                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 authors
  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. //-----------------------------------------------------------------------------
  16. // MiscColView.M
  17. //
  18. //    View class for the column headings on an MiscTableScroll.
  19. //
  20. //-----------------------------------------------------------------------------
  21. //-----------------------------------------------------------------------------
  22. // $Id: MiscColView.M,v 1.2 96/04/30 05:38:21 sunshine Exp $
  23. // $Log:    MiscColView.M,v $
  24. //  Revision 1.2  96/04/30  05:38:21  sunshine
  25. //  Ported to OpenStep 4.0 for Mach PR2.
  26. //  
  27. //-----------------------------------------------------------------------------
  28. #import "MiscColView.h"
  29.  
  30. @implementation MiscColView
  31.  
  32. //-----------------------------------------------------------------------------
  33. // - initWithFrame:scroll:info:
  34. //-----------------------------------------------------------------------------
  35. - initWithFrame: (NSRect) frameRect
  36.      scroll: (MiscTableScroll*) i_scroll
  37.        info: (MiscTableBorder*) i_info
  38.     {
  39.     [super initWithFrame:frameRect scroll:i_scroll info:i_info
  40.             type:MISC_COL_BORDER_VIEW];
  41.     return self;
  42.     }
  43.  
  44. @end
  45.