home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / Multimedia / Movie / Source / Projectionist.m < prev    next >
Encoding:
Text File  |  1993-01-26  |  413 b   |  37 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "Projectionist.h"
  5.  
  6. @implementation Projectionist
  7.  
  8. - init
  9. {
  10.   self = [super init];
  11.   [NXApp loadNibSection:"Projectionist.nib" owner:self];
  12.   return self;
  13. }
  14.  
  15. - open:sender
  16. {
  17.   [(MovieView *)movieView open:sender];
  18.   return self;
  19. }
  20.  
  21. - (MovieView *)movieView
  22. {
  23.   return movieView;
  24. }
  25.  
  26. - (Window *)window;
  27. {
  28.   return window;
  29. }
  30.  
  31. - (Panel *)panel
  32. {
  33.   return panel;
  34. }
  35.  
  36. @end
  37.