mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
34 lines
822 B
Objective-C
34 lines
822 B
Objective-C
//
|
|
// 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
|
|
|
|
NSPopUpButton *_terminalTypeButton;
|
|
NSButton *_scanLineButton;
|
|
|
|
NSColorWell *_foregroundColorControl;
|
|
NSColorWell *_backgroundColorControl;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet NSPopUpButton *terminalTypeButton;
|
|
@property (nonatomic, retain) IBOutlet NSButton *scanLineButton;
|
|
@property (nonatomic, retain) IBOutlet NSColorWell *foregroundColorControl;
|
|
@property (nonatomic, retain) IBOutlet NSColorWell *backgroundColorControl;
|
|
|
|
-(IBAction)cancelButton: (id)sender;
|
|
-(IBAction)connectButton: (id)sender;
|
|
|
|
|
|
|
|
@end
|