2010-10-05 18:56:45 +00:00
|
|
|
//
|
|
|
|
// NewTerminalWindowController.h
|
|
|
|
// 2Term
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 10/5/2010.
|
|
|
|
// Copyright (c) 2010 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
|
|
|
|
@interface NewTerminalWindowController : NSWindowController <NSWindowDelegate> {
|
|
|
|
@private
|
|
|
|
|
2010-12-20 23:37:02 +00:00
|
|
|
NSPopUpButton *_terminalTypeButton;
|
|
|
|
NSButton *_scanLineButton;
|
|
|
|
|
|
|
|
NSColorWell *_foregroundColorControl;
|
|
|
|
NSColorWell *_backgroundColorControl;
|
|
|
|
|
2010-10-05 18:56:45 +00:00
|
|
|
}
|
|
|
|
|
2010-12-20 23:37:02 +00:00
|
|
|
@property (nonatomic, retain) IBOutlet NSPopUpButton *terminalTypeButton;
|
|
|
|
@property (nonatomic, retain) IBOutlet NSButton *scanLineButton;
|
|
|
|
@property (nonatomic, retain) IBOutlet NSColorWell *foregroundColorControl;
|
|
|
|
@property (nonatomic, retain) IBOutlet NSColorWell *backgroundColorControl;
|
|
|
|
|
2010-10-05 18:56:45 +00:00
|
|
|
-(IBAction)cancelButton: (id)sender;
|
|
|
|
-(IBAction)connectButton: (id)sender;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|