home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Utilities / Comics-1.0-MIS / Browser.subproj / BrowserController.h next >
Encoding:
Text File  |  1997-09-25  |  1.0 KB  |  37 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. /*
  4.  File:       BrowserController.h
  5.  
  6.  Contains:   Header file for the Controller of the "Browser" window
  7.  
  8.  Written by: Eric Simenel
  9.  
  10.  Created:    May 1997
  11.  
  12.  Copyright:  (c)1997 by Apple Computer, Inc., all rights reserved.
  13.  
  14.  Change History (most recent first):
  15.  
  16.  You may incorporate this sample code into your applications without
  17.  restriction, though the sample code has been provided "AS IS" and the
  18.  responsibility for its operation is 100% yours.  However, what you are
  19.  not permitted to do is to redistribute the source as "DSC Sample Code"
  20.  after having made changes. If you're going to re-distribute the source,
  21.  we require that you make it clear in the source that the code was
  22.  descended from Apple Sample Code, but that you've made changes.
  23. */
  24.  
  25. @interface BrowserController : NSObject
  26. {
  27.     id browser;
  28.     NSMutableArray *array;
  29. }
  30.  
  31. - (id)init;
  32. - (void)awakeFromNib;
  33. - (int)browser:(NSBrowser *)sender numberOfRowsInColumn:(int)column;
  34. - (void)browser:(NSBrowser *)sender willDisplayCell:(id)cell atRow:(int)row column:(int)column;
  35.  
  36. @end
  37.