home *** CD-ROM | disk | FTP | other *** search
- #import "GifSavePanel.h"
- #import <appkit/Application.h>
- #import <appkit/Control.h>
- #import <appkit/Button.h>
-
-
- @implementation GifSavePanel
-
- static BOOL prev = NO;
-
- - loadNib
- {
- if (accessoryView == nil) {
- [NXApp loadNibSection:"GifAccessory.nib" owner:self];
- [self setAccessoryView: [accessory contentView]];
- }
- [InterSW setState: prev];
- return self;
- }
-
- - (BOOL)interlace
- {
- return (prev = [InterSW state]);
- }
-
- @end
-