ftp.nice.ch/Attic/openStep/developer/bundles/GDBbundle.1.0.s.tgz#/GDBbundle-1.0.s/TextEdit/Controller.m

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

/*
        Controller.m
	Copyright (c) 1995-1996, NeXT Software, Inc.
        All rights reserved.
        Author: Ali Ozer

	You may freely copy, distribute and reuse the code in this example.
	NeXT disclaims any warranty of any kind, expressed or implied,
	as to its fitness for any particular use.

   	Central controller object for Edit...
*/

#import <AppKit/AppKit.h>
#import "Controller.h"
#import "Document.h"
#import "Preferences.h"

@implementation Controller

- (BOOL)applicationShouldTerminate:(NSApplication *)app {
    NSArray *windows = [app windows];
    unsigned count = [windows count];
    BOOL needsSaving = NO;

    // Determine if there are any unsaved documents...

    while (!needsSaving && count--) {
        NSWindow *window = [windows objectAtIndex:count];
        Document *document = [Document documentForWindow:window];
        if (document && [document isDocumentEdited]) needsSaving = YES;
    }

    if (needsSaving) {
        int choice = NSRunAlertPanel(NSLocalizedString(@"Quit", @"Title of alert panel which comes up when user chooses Quit and there are unsaved documents."), 
			NSLocalizedString(@"You have unsaved documents.", @"Message in the alert panel which comes up when user chooses Quit and there are unsaved documents."), 
			NSLocalizedString(@"Review Unsaved", @"Choice (on a button) given to user which allows him/her to review all unsaved documents if he/she quits the application without saving them all first."), 
			NSLocalizedString(@"Quit Anyway", @"Choice (on a button) given to user which allows him/her to quit the application even though there are unsaved documents."), 
			NSLocalizedString(@"Cancel", @"Button choice allowing user to cancel."));
        if (choice == NSAlertOtherReturn)  {		/* Cancel */
            return NO;
        } else if (choice != NSAlertAlternateReturn) {	/* Review unsaved; Quit Anyway falls through */
            count = [windows count];
            while (count--) {
                NSWindow *window = [windows objectAtIndex:count];
                Document *document = [Document documentForWindow:window];
                if (document) {
                    [window makeKeyAndOrderFront:nil];
                    if (![document canCloseDocument]) {
                        return NO;
                    }			
                }
            }
        }
    }
    [Preferences saveDefaults];
    return YES;
}

- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename {
#ifdef WIN32
    /* If the document is in a .rtfd and it's name is TXT.rtf or index.rtf, open the parent dir... This is because on windows it doesn't seem trivial to double-click to open folders as documents.
    */
    NSString *parentDir = [filename stringByDeletingLastPathComponent];
    if ([[[parentDir pathExtension] lowercaseString] isEqualToString:@"rtfd"]) {
        NSString *lastPathComponent = [[filename lastPathComponent] lowercaseString];
        if ([lastPathComponent isEqualToString:@"txt.rtf"] || [lastPathComponent isEqualToString:@"index.rtf"]) {
	    filename = parentDir;
        }
    }
#endif
    return [Document openDocumentWithPath:filename encoding:UnknownStringEncoding] ? YES : NO;
}

- (BOOL)application:(NSApplication *)sender openTempFile:(NSString *)filename {	/* ??? Why? */
    return [Document openDocumentWithPath:filename encoding:UnknownStringEncoding] ? YES : NO;
}

#if 0
- (BOOL)applicationOpenUntitledFile:(NSApplication *)sender {
    return [Document openUntitled];
}
#endif

- (BOOL)application:(NSApplication *)sender printFile:(NSString *)filename {
    BOOL retval = NO;
    BOOL releaseDoc = NO;
    Document *document = [Document documentForPath:filename];
    
    if (!document) {
        document =  [[Document alloc] initWithPath:filename encoding:UnknownStringEncoding uniqueZone:NO];
        releaseDoc = YES;
    }
    if (document) {
        BOOL useUI = [NSPrintInfo defaultPrinter] ? NO : YES;

        [document printDocumentUsingPrintPanel:useUI];
        retval = YES;

        if (releaseDoc) {
            // If we created it, we get rid of it.
            [document release];
        }
    }
    return retval;
}

- (void)createNew:(id)sender {
    (void)[Document openUntitled];
}

- (void)open:(id)sender {
    (void)[Document open:sender];
}

- (void)saveAll:(id)sender {
    NSArray *windows = [NSApp windows];
    unsigned count = [windows count];
    while (count--) {
        NSWindow *window = [windows objectAtIndex:count];
        Document *document = [Document documentForWindow:window];
        if (document) {
            if ([document isDocumentEdited]) {
                if (![document saveDocument:NO]) return;
            }
        }
    }
}

/*** Info Panel related stuff ***/

- (void)showInfoPanel:(id)sender {
    if (!infoPanel) {
        if (![NSBundle loadNibNamed:@"Info" owner:self])  {
            NSLog(@"Failed to load Info.nib");
            NSBeep();
            return;
        }
	[infoPanel center];
    }
    [infoPanel makeKeyAndOrderFront:nil];
}

- (void)setVersionField:(id)versionField {
    extern char TextEdit_VERS_NUM[];
    if (strlen(TextEdit_VERS_NUM) > 0) {
        NSString *versionString = [NSString stringWithFormat:NSLocalizedString(@"Release 4 (v%s)", @"Version string.  %s is replaced by the version number."), TextEdit_VERS_NUM];
        [versionField setStringValue:versionString];
    }
}

- (void)applicationWillFinishLaunching:(NSNotification *)aNotification
{
    NSString* name = @"TextEdit";

    gdbRootConnection = [NSConnection new];
    [gdbRootConnection setRootObject:self];
    if (![gdbRootConnection registerName:name])
        NSLog (@"cannot register name %@", name);
    [gdbRootConnection setDelegate:self];
}

- (BOOL)connection:(NSConnection*)parentConnection
  shouldMakeNewConnection:(NSConnection*)newConnnection
{
    if (!gdbDisplayController) {
        NSBundle* mainBundle = [NSBundle mainBundle];
        id path = [mainBundle pathForResource:@"GdbBundle" ofType:@"bundle"];
        Class gdbDisplayControllerClass;
        NSBundle* gdbBundle;

        gdbBundle = [NSBundle bundleWithPath:path];
        if (!gdbBundle) {
            NSLog (@"Cannot find the GDB bundle!");
            return NO;
        }
        gdbDisplayControllerClass
            = [gdbBundle classNamed:@"GdbDisplayController"];
        gdbDisplayController = [gdbDisplayControllerClass new];
        if (![NSBundle loadNibNamed:@"GdbController"
                              owner:gdbDisplayController]) {
            NSLog (@"Cannot load GdbController NIB file!");
            return NO;
        }
    }
    return YES;
}

- (void)connectionDidDie:(NSNotification*)notification
{
    NSConnection* connection = [[notification userInfo] objectForKey:@"object"];
    id mainMenu = [NSApp mainMenu];

    NSLog (@"connection died: connection = %x", connection);
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    [mainMenu removeItem:[mainMenu itemWithTitle:GDB_MENU_ITEM]];
    [gdbDisplayController close];
    [gdbDisplayController release];
    gdbDisplayController = nil;
}

@end

/*

 1/28/95 aozer	Created for Edit II.
 7/21/95 aozer	Command line file names
 
*/

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