home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscTableScroll / MiscColView.M < prev    next >
Encoding:
Text File  |  1996-02-11  |  1.6 KB  |  45 lines

  1. //=============================================================================
  2. //
  3. //        Copyright (C) 1995 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.1 95/09/27 12:21:21 zarnuk Exp $
  23. // $Log:        MiscColView.M,v $
  24. //    Revision 1.1  95/09/27    12:21:21  zarnuk
  25. //    Initial revision
  26. //    
  27. //-----------------------------------------------------------------------------
  28. #import "MiscColView.h"
  29.  
  30. @implementation MiscColView
  31.  
  32. //-----------------------------------------------------------------------------
  33. // - initFrame:spreadSheet:
  34. //-----------------------------------------------------------------------------
  35. - initFrame: (NXRect const*) frameRect
  36.      scroll: (MiscTableScroll*) i_scroll
  37.        info: (MiscTableBorder*) i_info
  38.     {
  39.     [super initFrame:frameRect scroll:i_scroll info:i_info
  40.                         type:MISC_COL_BORDER_VIEW];
  41.     return self;
  42.     }
  43.  
  44. @end
  45.