ftp.nice.ch/pub/next/tools/business/QTax.1.1.NIHS.b.tar.gz#/QTax_1.1/Source/MenuObject.m

This is MenuObject.m in view mode; [Download] [Up]

#import "MenuObject.h"

@implementation MenuObject

// APPDIDINIT
- appDidInit:sender
{

	[NXApp activateSelf:YES]; // activate the application      	
	[NXApp loadNibSection:"Regular.nib" owner:self]; // load nib

        return self;
}


- NewInverse:sender
{
	[NXApp loadNibSection:"Inverse.nib" owner:self]; // load nib

    return self;
}

- NewRegular:sender
{
	[NXApp loadNibSection:"Regular.nib" owner:self]; // load nib

    return self;
}


@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.