home *** CD-ROM | disk | FTP | other *** search
- /* FrameBrowserCell.h created by ovidiu on Tue 15-Apr-1997 */
-
- #import <AppKit/NSBrowserCell.h>
-
- @class Frame;
-
- @interface FrameBrowserCell : NSBrowserCell
- {
- id target;
- SEL action;
- int tag;
- Frame* frame;
- }
-
- - (void)setTarget:(id)anObject;
- - (void)setAction:(SEL)aSelector;
- - (void)setTag:(int)tag;
- - (void)setFrame:(Frame*)frame;
-
- - (id)target;
- - (SEL)action;
- - (int)tag;
- - (Frame*)frame;
-
- - (void)_selectLineInFile:sender;
-
- @end
-