home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / GdbBundle.bproj / FrameBrowserCell.h < prev    next >
Encoding:
Text File  |  1997-04-18  |  438 b   |  28 lines

  1. /* FrameBrowserCell.h created by ovidiu on Tue 15-Apr-1997 */
  2.  
  3. #import <AppKit/NSBrowserCell.h>
  4.  
  5. @class Frame;
  6.  
  7. @interface FrameBrowserCell : NSBrowserCell
  8. {
  9.   id target;
  10.   SEL action;
  11.   int tag;
  12.   Frame* frame;
  13. }
  14.  
  15. - (void)setTarget:(id)anObject;
  16. - (void)setAction:(SEL)aSelector;
  17. - (void)setTag:(int)tag;
  18. - (void)setFrame:(Frame*)frame;
  19.  
  20. - (id)target;
  21. - (SEL)action;
  22. - (int)tag;
  23. - (Frame*)frame;
  24.  
  25. - (void)_selectLineInFile:sender;
  26.  
  27. @end
  28.