forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlertTrigger.m
63 lines (52 loc) · 1.45 KB
/
AlertTrigger.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
// AlertTrigger.m
// iTerm
//
// Created by George Nachman on 9/23/11.
//
#import "AlertTrigger.h"
#import "PTYSession.h"
#import "PTYTab.h"
#import "PseudoTerminal.h"
@implementation AlertTrigger
- (NSString *)title
{
return @"Show Alert…";
}
- (NSString *)paramPlaceholder
{
return @"Enter text to show in alert";
}
- (BOOL)takesParameter
{
return YES;
}
- (void)performActionWithValues:(NSArray *)values inSession:(PTYSession *)aSession
{
if (disabled_) {
return;
}
NSString *message = [self paramWithBackreferencesReplacedWithValues:values];
NSAlert *alert = [NSAlert alertWithMessageText:message
defaultButton:@"OK"
alternateButton:@"Show Session"
otherButton:@"Disable This Alert"
informativeTextWithFormat:@""];
switch ([alert runModal]) {
case NSAlertDefaultReturn:
break;
case NSAlertAlternateReturn: {
PseudoTerminal *term = [[aSession tab] realParentWindow];
[[term window] makeKeyAndOrderFront:nil];
[[term tabView] selectTabViewItemWithIdentifier:[aSession tab]];
[[aSession tab] setActiveSession:aSession];
break;
case NSAlertOtherReturn:
disabled_ = YES;
break;
}
default:
break;
}
}
@end