2010-07-17 18:21:26 +00:00
|
|
|
//
|
|
|
|
// VT100.h
|
|
|
|
// 2Term
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 7/14/2010.
|
|
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#import "Emulator.h"
|
|
|
|
|
|
|
|
#include "iGeometry.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <vector>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
@interface VT100 : NSObject <Emulator> {
|
|
|
|
|
|
|
|
unsigned _state;
|
|
|
|
|
2010-07-21 01:30:31 +00:00
|
|
|
BOOL _altKeyPad;
|
|
|
|
|
|
|
|
|
2010-07-17 18:21:26 +00:00
|
|
|
BOOL _keyMode;
|
|
|
|
BOOL _vt52Mode;
|
|
|
|
BOOL _graphics;
|
|
|
|
|
|
|
|
iPoint _dca;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
std::vector<int> _parms;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-21 01:30:31 +00:00
|
|
|
-(void)tab: (Screen *)screen;
|
|
|
|
|
|
|
|
|
2010-07-17 18:21:26 +00:00
|
|
|
@end
|