mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
0291b21733
git-svn-id: svn://qnap.local/TwoTerm/branches/fix-gno-scrolling-region@3162 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
28 lines
384 B
Objective-C
28 lines
384 B
Objective-C
//
|
|
// 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"
|
|
#include "Screen.h"
|
|
|
|
|
|
@interface GNOConsole : NSObject <Emulator>
|
|
{
|
|
unsigned cs;
|
|
context _context;
|
|
Screen::CursorType _cursorType;
|
|
|
|
int _scratch[4];
|
|
}
|
|
|
|
|
|
|
|
@end
|