git-svn-id: svn://qnap.local/TwoTerm/trunk@1887 5590a31f-7b70-45f8-8c82-aa3a8e5f4507

This commit is contained in:
Kelvin Sherlock
2010-12-18 17:40:58 +00:00
11 changed files with 1718 additions and 294 deletions
+8 -2
View File
@@ -10,18 +10,24 @@
@class EmulatorView;
@class CurveView;
@protocol Emulator;
@interface TermWindowController : NSWindowController <NSWindowDelegate> {
IBOutlet EmulatorView *_emulatorView;
EmulatorView *_emulatorView;
CurveView *_curveView;
NSObject <Emulator> *_emulator;
int _child;
}
@property (nonatomic, retain) IBOutlet EmulatorView *emulatorView;
@property (nonatomic, retain) IBOutlet CurveView *curveView;
@property (nonatomic, retain) NSObject<Emulator> *emulator;
-(void)initPTY;