*** /cvs/gnustep/core/gui/Headers/AppKit/NSCell.h	Mon Sep  1 20:16:11 2003
--- NSCell.h	Wed Mar 17 14:23:58 2004
***************
*** 118,124 ****
      NSSmallControlSize
  } NSControlSize;
  
! @interface NSCell : NSObject <NSCopying, NSCoding>
  {
    // Attributes
    NSString *_contents;
--- 118,129 ----
      NSSmallControlSize
  } NSControlSize;
  
! @class NSCell; // dummy declaration to avoid compiler complaint
! @protocol GSCellContainer
! - (NSRect) frameForCell: (NSCell *)cell;
! @end
! 
! @interface NSCell : NSObject <NSCopying, NSCoding, GSCellContainer>
  {
    // Attributes
    NSString *_contents;
***************
*** 161,167 ****
    unsigned int _action_mask; 
    NSFormatter *_formatter;
    NSMenu *_menu;
!   id _represented_object; 
  }
  
  //
--- 166,173 ----
    unsigned int _action_mask; 
    NSFormatter *_formatter;
    NSMenu *_menu;
!   id _represented_object;
!   NSCell *_supercell;
  }
  
  //
***************
*** 436,441 ****
--- 442,449 ----
  - (void)setSendsActionOnEndEditing:(BOOL)flag;
  #endif
  
+ - (void) setSupercell: (NSCell *) supercell;
+ - (id <GSCellContainer>) container;
  @end
  
  // 
