This is WindowContainer.m in view mode; [Download] [Up]
/* (c) 1992 Dirk Schwarzhans, Matthias Braun
Use under the terms of the GNU General Public License */
#import "WindowContainer.h"
#import <appkit/Application.h>
@implementation WindowContainer
- init
{
[super init];
[NXApp loadNibSection:"Window.nib" owner:self];
return self;
}
- view
{
return view;
}
- window;
{
return window;
}
- setHeld:(BOOL)mode
{
held = mode;
return self;
}
- (BOOL)isHeld
{
return held;
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.