This is InfoMgr.m in view mode; [Download] [Up]
/* * Filename: InfoMgr.m * Created : Sun Oct 20 20:38:59 1991 * Author : Vince DeMarco * <vince@whatnxt.cuc.ab.ca> */ /* Generated by Interface Builder */ #import "InfoMgr.h" #import <appkit/Application.h> #import <appkit/Window.h> @implementation InfoMgr - info:sender { if (!infoPanel){ [NXApp loadNibSection:"Info.nib" owner:self withNames: NO fromZone:[self zone]]; } [infoPanel makeKeyAndOrderFront:sender]; return self; } - help:sender { if (!helpPanel){ [NXApp loadNibSection:"Info.nib" owner:self withNames: NO fromZone:[self zone]]; } [helpPanel makeKeyAndOrderFront:sender]; return self; } /* InfoPanel Delegation Methods */ - windowWillClose:sender { return self; } - windowDidBecomeKey:sender { return self; } @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.