mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
6515fc5325
git-svn-id: svn://qnap.local/TwoTerm/trunk@1989 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
90 lines
1.6 KiB
Objective-C
90 lines
1.6 KiB
Objective-C
//
|
|
// EmulatorManager.m
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 10/5/2010.
|
|
// Copyright (c) 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "Emulator.h"
|
|
#import <AppKit/AppKit.h>
|
|
|
|
@implementation EmulatorManager
|
|
|
|
static NSMutableArray *array = nil;
|
|
|
|
+(id)alloc
|
|
{
|
|
return nil;
|
|
}
|
|
+(id)new
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
-(id)init
|
|
{
|
|
[self release];
|
|
return nil;
|
|
}
|
|
|
|
|
|
// can be called before +load.
|
|
+(void)registerClass: (Class)klass
|
|
{
|
|
if (klass && [klass conformsToProtocol: @protocol(Emulator)])
|
|
{
|
|
@synchronized (self)
|
|
{
|
|
if (!array)
|
|
array = [NSMutableArray new];
|
|
|
|
[array addObject: klass];
|
|
|
|
[array sortUsingComparator: ^(id lhs, id rhs){
|
|
NSString *a, *b;
|
|
|
|
a = (NSString *)[lhs name];
|
|
b = (NSString *)[rhs name];
|
|
|
|
return [a caseInsensitiveCompare: b];
|
|
}];
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
+(NSMenu *)emulatorMenu
|
|
{
|
|
NSMenu *menu = [[[NSMenu alloc] initWithTitle: @"Terminal Type"] autorelease];
|
|
|
|
@synchronized (self)
|
|
{
|
|
unsigned index = 0;
|
|
for (Class klass in array)
|
|
{
|
|
NSMenuItem *item = [[NSMenuItem new] autorelease];
|
|
|
|
[item setTitle: [klass name]];
|
|
[item setTag: ++index];
|
|
[menu addItem: item];
|
|
}
|
|
}
|
|
|
|
return menu;
|
|
}
|
|
|
|
+(id)emulatorForTag: (unsigned)tag
|
|
{
|
|
@synchronized(self)
|
|
{
|
|
if (tag && tag <= [array count])
|
|
{
|
|
return [array objectAtIndex: tag - 1];
|
|
}
|
|
}
|
|
return nil;
|
|
|
|
}
|
|
@end
|