home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextLibrary / Frameworks / NEXTIME.framework / Versions / A / Headers / NTMovieScreen.h < prev    next >
Encoding:
Text File  |  1995-12-22  |  606 b   |  31 lines

  1.  
  2. #import <AppKit/NSControl.h>
  3.  
  4. @interface NTMovieScreen : NSControl
  5. {
  6. @private
  7.     void *                _private;
  8. }
  9.  
  10. + (Class)cellClass;
  11. /* 
  12.  * returns the NTMovieScreenCell class, or the class set by 'setCellClass:'
  13.  */
  14.  
  15. + (void)setCellClass:(Class)class;
  16. /*
  17.  * sets the cell created for NTMovieScreen instances.  The default is
  18.  * NTMovieScreenCell
  19.  */
  20.  
  21. - (BOOL)setMovieFile:(NSString *)path;
  22. /*
  23.  * opens the movie file "path" and updates the receivers cell.  Returns
  24.  * 'YES' if "path" is a valid movie, 'NO' otherwise.
  25.  */
  26.  
  27. - (NSString *)movieFile;
  28. /* Return the movie file repreesnted by the movie screen. */
  29. @end
  30.  
  31.