mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-03-15 04:34:44 +00:00
git-svn-id: svn://qnap.local/TwoTerm/branches/fix-gno-scrolling-region@3162 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
31 lines
425 B
Objective-C
31 lines
425 B
Objective-C
//
|
|
// GSOSConsole.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/9/2016.
|
|
//
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Emulator.h"
|
|
#include "iGeometry.h"
|
|
#include "Screen.h"
|
|
|
|
@interface GSOSConsole : NSObject <Emulator> {
|
|
unsigned cs;
|
|
|
|
TextPort _textPort;
|
|
iRect _window;
|
|
|
|
std::vector<TextPort> _tpStack;
|
|
|
|
int _scratch[4];
|
|
|
|
int _cursorType;
|
|
bool _consLF;
|
|
bool _consDLE;
|
|
}
|
|
|
|
@end
|