mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-10-15 23:23:38 +00:00
41c311fb8a
commit b9723cf13690c3a6ecefeee81b1d95a23bde0422 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Feb 9 22:41:59 2018 -0500 remove most gui config stuff from new window. commit c690c5ebd99d6268f605094f429114a39ab3c180 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Thu Feb 8 11:48:29 2018 -0500 crosshatch cursor, push/pop cursor state when no longer key window. commit ebaa0e535ee52a85a514efbaa872f891f7e817f1 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Thu Feb 8 11:47:20 2018 -0500 child monitor - removeAll commit e591630339f3cd22ca461f2006f4c360fa43d026 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Thu Feb 8 11:46:19 2018 -0500 add config popup for the term window.
22 lines
377 B
Objective-C
22 lines
377 B
Objective-C
//
|
|
// ChildMonitor.h
|
|
// TwoTerm
|
|
//
|
|
// Created by Kelvin Sherlock on 1/31/2018.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class TermWindowController;
|
|
@interface ChildMonitor : NSObject {
|
|
|
|
}
|
|
|
|
+(id)monitor;
|
|
|
|
-(void)removeController: (TermWindowController *)controller;
|
|
-(void)addController: (TermWindowController *)controller pid: (pid_t)pid fd: (int)fd;
|
|
|
|
-(void)removeAll;
|
|
@end
|