ftp.nice.ch/pub/next/audio/editor/SynthBuilder.s.tar.gz#/SynthBuilder/MainWindowDelegate.m

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

/**************************************************
 * SynthBuilder
 * Copyright 1993 Nick Porcaro All Rights Reserved
 **************************************************/


#import "MainWindowDelegate.h"
#import "FakeSynthPatch.h"

@implementation MainWindowDelegate

- setOwner:anOwner
{
  theOwner = anOwner;
  return self;
}

- windowDidMiniaturize:sender
{
  [theOwner setWindowMiniaturized:YES];
  return self;
}

- windowDidDeminiaturize:sender
{
  [theOwner setWindowMiniaturized:NO];
  return self;
}

@end

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