mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-03 07:29:28 +00:00
38 lines
767 B
Mathematica
38 lines
767 B
Mathematica
|
//
|
||
|
// TwoTermAppDelegate.m
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 6/29/2010.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "TwoTermAppDelegate.h"
|
||
|
|
||
|
#import "TermWindowController.h"
|
||
|
|
||
|
|
||
|
@implementation TwoTermAppDelegate
|
||
|
|
||
|
@synthesize window;
|
||
|
@synthesize imageView;
|
||
|
|
||
|
|
||
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
||
|
// Insert code here to initialize your application
|
||
|
/*
|
||
|
NSImage *image;
|
||
|
CGImageRef imgRef = ImageForCharacter('A');
|
||
|
|
||
|
image = [[NSImage alloc] initWithCGImage: imgRef size: CGSizeZero];
|
||
|
|
||
|
[imageView setImage: image];
|
||
|
[image release];
|
||
|
CGImageRelease(imgRef);
|
||
|
*/
|
||
|
|
||
|
NSWindowController * win = [TermWindowController new];
|
||
|
[win showWindow: nil];
|
||
|
}
|
||
|
|
||
|
@end
|