home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Graphics / ToyViewer-2.6a / src / ImageSave.bproj / GifSavePanel.m < prev    next >
Encoding:
Text File  |  1996-04-02  |  427 b   |  27 lines

  1. #import  "GifSavePanel.h"
  2. #import  <appkit/Application.h>
  3. #import  <appkit/Control.h>
  4. #import  <appkit/Button.h>
  5.  
  6.  
  7. @implementation GifSavePanel
  8.  
  9. static BOOL prev = NO;
  10.  
  11. - loadNib
  12. {
  13.     if (accessoryView == nil) {
  14.         [NXApp loadNibSection:"GifAccessory.nib" owner:self];
  15.         [self setAccessoryView: [accessory contentView]];
  16.     }
  17.     [InterSW setState: prev];
  18.     return self;
  19. }
  20.  
  21. - (BOOL)interlace
  22. {
  23.     return (prev = [InterSW state]);
  24. }
  25.  
  26. @end
  27.