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

  1. #import <AppKit/NSView.h>
  2. #import "InfoView.h"
  3. #import "Info.h"
  4.  
  5. @implementation Info
  6.  
  7. - awakeFromNib
  8. {
  9.   [infoView addImageNamed:@"ovidiu"];
  10.   return self;
  11. }
  12.  
  13. - (void)showImageUsingTagOf:sender
  14. {
  15.   [infoView showImageNumber:[sender tag]];
  16. }
  17.  
  18. - (void)show
  19. {
  20.   [infoView display];
  21.   [[infoView window] center];
  22.   [[infoView window] makeKeyAndOrderFront:self];
  23. }
  24.  
  25. - window    { return [infoView window]; }
  26.  
  27. @end
  28.