ftp.nice.ch/pub/next/graphics/video/VideoTeXT.1.1a.N.bs.tar.gz#/VideoTeXT1.1a/Quelltexte/WindowContainer.m

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.