mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
bbd0af01dc
git-svn-id: svn://qnap.local/TwoTerm/trunk@3180 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
39 lines
511 B
Objective-C
39 lines
511 B
Objective-C
//
|
|
// VT52.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/7/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "Emulator.h"
|
|
|
|
#include "iGeometry.h"
|
|
#include "Screen.h"
|
|
|
|
@interface VT5x : NSObject <Emulator> {
|
|
|
|
unsigned _model;
|
|
|
|
unsigned cs;
|
|
BOOL _altKeyPad;
|
|
BOOL _graphics;
|
|
BOOL _escape;
|
|
context _context;
|
|
}
|
|
|
|
@end
|
|
|
|
@interface VT52 : VT5x
|
|
@end
|
|
|
|
@interface VT50H : VT5x
|
|
@end
|
|
|
|
@interface VT50 : VT5x
|
|
@end
|
|
|
|
@interface VT55 : VT5x
|
|
@end
|