mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
42 lines
762 B
Objective-C
42 lines
762 B
Objective-C
//
|
|
// TermWindowController.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/2/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@class EmulatorView;
|
|
@class CurveView;
|
|
|
|
@protocol Emulator;
|
|
|
|
@interface TermWindowController : NSWindowController <NSWindowDelegate> {
|
|
|
|
NSDictionary *_parameters;
|
|
|
|
EmulatorView *_emulatorView;
|
|
CurveView *_curveView;
|
|
|
|
|
|
|
|
NSObject <Emulator> *_emulator;
|
|
|
|
int _child;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) NSDictionary *parameters;
|
|
|
|
@property (nonatomic, retain) IBOutlet EmulatorView *emulatorView;
|
|
@property (nonatomic, retain) IBOutlet CurveView *curveView;
|
|
|
|
@property (nonatomic, retain) NSObject<Emulator> *emulator;
|
|
|
|
-(void)initPTY;
|
|
|
|
@end
|