mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 22:29:51 +00:00
24 lines
414 B
C
24 lines
414 B
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
|
||
|
|
||
|
IBOutlet NSPopUpButton *_terminalTypeButton;
|
||
|
}
|
||
|
|
||
|
-(IBAction)cancelButton: (id)sender;
|
||
|
-(IBAction)connectButton: (id)sender;
|
||
|
|
||
|
|
||
|
|
||
|
@end
|