2010-12-21 05:17:02 +00:00
|
|
|
//
|
|
|
|
// GNOConsole.h
|
|
|
|
// 2Term
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 7/9/2010.
|
|
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#import "Emulator.h"
|
|
|
|
#include "iGeometry.h"
|
2011-01-11 00:29:59 +00:00
|
|
|
#include "Screen.h"
|
2010-12-21 05:17:02 +00:00
|
|
|
|
2010-12-23 03:42:11 +00:00
|
|
|
|
2010-12-21 05:17:02 +00:00
|
|
|
@interface GNOConsole : NSObject <Emulator>
|
|
|
|
{
|
|
|
|
unsigned _state;
|
2011-01-11 00:29:59 +00:00
|
|
|
|
|
|
|
TextPort _textPort;
|
|
|
|
|
2010-12-21 05:17:02 +00:00
|
|
|
|
|
|
|
iPoint _dca;
|
2010-12-23 03:42:11 +00:00
|
|
|
|
|
|
|
int _vp[4];
|
2011-01-11 00:29:59 +00:00
|
|
|
|
2010-12-21 05:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|