-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
iTermMinimalComposerViewController.m
514 lines (429 loc) · 17.3 KB
/
iTermMinimalComposerViewController.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
//
// iTermMinimalComposerViewController.m
// iTerm2
//
// Created by George Nachman on 3/31/20.
//
#import "iTermMinimalComposerViewController.h"
#import "CommandHistoryPopup.h"
#import "iTermDragHandleView.h"
#import "iTermStatusBarLargeComposerViewController.h"
#import "iTerm2SharedARC-Swift.h"
static float kAnimationDuration = 0.25;
static NSString *const iTermMinimalComposerViewHeightUserDefaultsKey = @"ComposerHeight";
@interface iTermMinimalComposerView : NSView
@end
@implementation iTermMinimalComposerView
- (BOOL)it_focusFollowsMouseImmune {
return YES;
}
@end
@interface iTermMinimalComposerViewController ()<PopupDelegate, iTermComposerTextViewDelegate, iTermDragHandleViewDelegate, iTermPopupWindowPresenter, iTermStatusBarLargeComposerViewControllerDelegate>
@end
@implementation iTermMinimalComposerViewController {
IBOutlet iTermStatusBarLargeComposerViewController *_largeComposerViewController;
IBOutlet NSView *_containerView;
IBOutlet NSVisualEffectView *_vev;
IBOutlet iTermDragHandleView *_bottomDragHandle;
IBOutlet iTermDragHandleView *_topDragHandle;
IBOutlet NSButton *_closeButton;
IBOutlet NSView *_wrapper;
IBOutlet NSView *_separator;
CommandHistoryPopupWindowController *_historyWindowController;
CGFloat _manualHeight;
CGFloat _desiredHeight;
NSInteger _fetches;
}
- (instancetype)init {
self = [super initWithNibName:NSStringFromClass(self.class) bundle:[NSBundle bundleForClass:self.class]];
if (self) {
[[NSUserDefaults standardUserDefaults] registerDefaults:@{ iTermMinimalComposerViewHeightUserDefaultsKey: @135 }];
_manualHeight = [[NSUserDefaults standardUserDefaults] doubleForKey:iTermMinimalComposerViewHeightUserDefaultsKey];
}
return self;
}
- (void)awakeFromNib {
[_containerView addSubview:_largeComposerViewController.view];
_containerView.autoresizesSubviews = YES;
_largeComposerViewController.view.frame = _containerView.bounds;
_largeComposerViewController.textView.composerDelegate = self;
_largeComposerViewController.view.autoresizingMask = (NSViewWidthSizable | NSViewHeightSizable);
_vev.layer.cornerRadius = 6;
_vev.layer.borderColor = [[NSColor grayColor] CGColor];
_vev.layer.borderWidth = 1;
_separator.wantsLayer = YES;
_separator.layer = [[CALayer alloc] init];
[self setIsAutoComposer:_isAutoComposer];
}
- (void)setIsAutoComposer:(BOOL)isAutoComposer {
_isAutoComposer = isAutoComposer;
_largeComposerViewController.hideAccessories = isAutoComposer;
_closeButton.hidden = isAutoComposer;
const NSRect bounds = self.view.bounds;
if (isAutoComposer) {
const CGFloat margin = 0;
_wrapper.frame = NSMakeRect(margin,
margin,
bounds.size.width - margin * 2,
bounds.size.height - margin * 2);
} else {
const CGFloat margin = 9;
_wrapper.frame = NSMakeRect(margin,
margin,
bounds.size.width - margin * 2,
bounds.size.height - margin * 2);
}
if (isAutoComposer) {
[_topDragHandle removeFromSuperview];
[_bottomDragHandle removeFromSuperview];
} else if (_bottomDragHandle.superview == nil) {
// Insert them prior to _closeButton.
[self.view insertSubview:_topDragHandle atIndex:self.view.subviews.count - 1];
[self.view insertSubview:_bottomDragHandle atIndex:self.view.subviews.count - 1];
}
_vev.hidden = isAutoComposer;
}
- (void)viewWillLayout {
[super viewWillLayout];
[self layoutSubviews];
}
- (void)setFont:(NSFont *)font {
_largeComposerViewController.textView.font = font;
[self layoutSubviews];
}
- (void)setTextColor:(NSColor *)textColor cursorColor:(nonnull NSColor *)cursorColor {
_largeComposerViewController.textView.textColor = textColor;
_largeComposerViewController.textView.prefixColor = textColor;
_largeComposerViewController.textView.insertionPointColor = cursorColor;
}
- (void)setPrefix:(NSMutableAttributedString *)prefix {
_largeComposerViewController.textView.prefix = prefix;
}
- (BOOL)composerIsFirstResponder {
NSWindow *window = _largeComposerViewController.textView.window;
if (!window) {
return NO;
}
return window.firstResponder == _largeComposerViewController.textView;
}
- (void)setIsSeparatorVisible:(BOOL)isSeparatorVisible {
_separator.hidden = !isSeparatorVisible;
_isSeparatorVisible = isSeparatorVisible;
[self layoutSubviews];
}
- (void)layoutSubviews {
if (self.isSeparatorVisible) {
const CGFloat offset = self.lineHeight / 2.0;
_largeComposerViewController.view.frame = NSMakeRect(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - offset);
} else {
_largeComposerViewController.view.frame = _containerView.bounds;
}
}
- (void)setSeparatorColor:(NSColor *)separatorColor {
_separator.layer.backgroundColor = separatorColor.CGColor;
_separatorColor = separatorColor;
}
- (void)setHost:(id<VT100RemoteHostReading>)host
workingDirectory:(NSString *)pwd
scope:(iTermVariableScope *)scope
tmuxController:(nonnull TmuxController *)tmuxController {
[self view];
_largeComposerViewController.host = host;
_largeComposerViewController.workingDirectory = pwd;
_largeComposerViewController.scope = scope;
_largeComposerViewController.tmuxController = tmuxController;
}
- (NSRect)frameForHeight:(CGFloat)desiredHeight {
return [self.delegate minimalComposer:self frameForHeight:desiredHeight];
}
- (CGFloat)lineHeight {
if (self.delegate) {
const CGFloat height = [self.delegate minimalComposerLineHeight:self];
DLog(@"Using delegate-provided line height of %@", @(height));
return height;
}
const CGFloat height = [@" " sizeWithAttributes:@{ NSFontAttributeName: _largeComposerViewController.textView.font } ].height;
DLog(@"Using fallback line height of %@", @(height));
return height;
}
- (CGFloat)minHeight {
if (self.isAutoComposer) {
return self.lineHeight;
}
return 62;
}
- (CGFloat)maxHeight {
const CGFloat maximumHeight = [self.delegate minimalComposerMaximumHeight:self];
return MAX(self.minHeight, maximumHeight);
}
- (NSUInteger)numberOfLinesInTextView:(iTermComposerTextView *)textView {
NSLayoutManager *layoutManager = [textView layoutManager];
const NSUInteger numberOfGlyphs = [layoutManager numberOfGlyphs];
const NSRange glyphRange = NSMakeRange(0, numberOfGlyphs);
NSUInteger numberOfLines = 0;
NSUInteger index = 0;
while (index < numberOfGlyphs) {
NSRange lineRange = { 0 };
[layoutManager lineFragmentRectForGlyphAtIndex:index effectiveRange:&lineRange];
index = NSMaxRange(lineRange);
numberOfLines++;
if (NSMaxRange(lineRange) == NSMaxRange(glyphRange)) {
break;
}
}
if ([textView.stringExcludingPrefix hasSuffix:@"\n"]) {
numberOfLines += 1;
}
return numberOfLines;
}
- (CGFloat)desiredHeight {
if (self.isAutoComposer) {
DLog(@"Computing desired height for autocomposer");
iTermComposerTextView *textView = _largeComposerViewController.textView;
const NSUInteger numberOfLines = [self numberOfLinesInTextView:textView];
DLog(@"textView has %@ lines. Its contents are:\n%@",
@(numberOfLines), textView.textStorage.string);
const CGFloat lineHeight = [self.delegate minimalComposerLineHeight:self];
DLog(@"Line height is %@", @(lineHeight));
const CGFloat height = MAX(1, numberOfLines) * lineHeight;
DLog(@"Desired height is %@", @(height));
return height;
}
return _manualHeight;
}
- (void)updateFrame {
const NSRect desiredFrame = [self frameForHeight:MAX(MIN(self.maxHeight, [self desiredHeight]), self.minHeight)];
if (NSEqualRects(desiredFrame, self.view.frame)) {
return;
}
DLog(@"desiredFrame=%@", NSStringFromRect(desiredFrame));
self.view.frame = desiredFrame;
[[NSAnimationContext currentContext] setDuration:kAnimationDuration];
self.view.animator.alphaValue = 1;
[self.delegate minimalComposer:self frameDidChangeTo:self.view.frame];
const BOOL onBottom = (self.view.frame.origin.y == 0);
_topDragHandle.hidden = !onBottom;
_bottomDragHandle.hidden = onBottom;
}
- (void)makeFirstResponder {
[_largeComposerViewController.textView.window makeFirstResponder:_largeComposerViewController.textView];
}
- (IBAction)performClose:(id)sender {
[self.delegate minimalComposer:self
sendCommand:@""
addNewline:YES
dismiss:YES];
}
- (NSString *)stringValue {
return _largeComposerViewController.textView.stringExcludingPrefix;
}
- (void)setStringValue:(NSString *)stringValue {
_largeComposerViewController.textView.stringExcludingPrefix = stringValue;
[_largeComposerViewController.textView it_scrollCursorToVisible];
}
- (void)insertText:(NSString *)text {
[_largeComposerViewController.textView insertText:text];
}
- (void)deleteLastCharacter {
NSTextView *textView = _largeComposerViewController.textView;
[textView setSelectedRange:NSMakeRange(textView.string.length, 0)];
[textView deleteBackward:nil];
}
- (void)paste:(id)sender {
[_largeComposerViewController.textView paste:sender];
}
- (NSRect)cursorFrameInScreenCoordinates {
return _largeComposerViewController.textView.cursorFrameInScreenCoordinates;
}
- (NSResponder *)nextResponder {
NSResponder *custom = [self.delegate minimalComposerNextResponder];
if (custom) {
return custom;
}
return [super nextResponder];
}
#pragma mark - iTermComposerTextViewDelegate
- (void)composerTextViewSendSubstring:(NSString*)string {
[self.delegate minimalComposer:self
sendCommand:string
addNewline:NO
dismiss:NO];
}
- (void)composerTextViewDidFinishWithCancel:(BOOL)cancel {
NSString *string = cancel ? @"" : _largeComposerViewController.textView.stringExcludingPrefix;
[self.delegate minimalComposer:self
sendCommand:string ?: @""
addNewline:YES
dismiss:YES];
}
- (BOOL)composerHandleKeyDownWithEvent:(NSEvent *)event {
return [self.delegate minimalComposerHandleKeyDown:event];
}
- (void)composerTextViewDidResignFirstResponder {
}
- (void)composerTextViewDidBecomeFirstResponder {
[self.delegate minimalComposerDidBecomeFirstResponder:self];
}
- (void)composerTextViewSendToAdvancedPaste:(NSString *)content {
[self.delegate minimalComposer:self sendToAdvancedPaste:content];
}
- (void)composerTextViewSend:(NSString *)string {
[self.delegate minimalComposer:self
sendCommand:string
addNewline:YES
dismiss:NO];
}
- (void)composerTextViewEnqueue:(NSString *)string {
[self.delegate minimalComposer:self enqueueCommand:string dismiss:NO];
}
- (void)composerTextViewSendControl:(NSString *)control {
[self.delegate minimalComposer:self sendControl:control];
}
- (void)composerTextViewOpenHistoryWithPrefix:(NSString *)prefix forSearch:(BOOL)forSearch {
[self.delegate minimalComposerOpenHistory:self prefix:prefix forSearch:forSearch];
}
- (void)composerTextViewShowCompletions {
_fetches += 1;
__weak __typeof(self) weakSelf = self;
[_largeComposerViewController fetchCompletions:^(NSString *prefix, NSArray<NSString *> *completions) {
[weakSelf didFetchCompletions:completions forPrefix:prefix];
}];
}
- (void)didFetchCompletions:(NSArray<NSString *> *)completions forPrefix:(NSString *)prefix {
_fetches -= 1;
if (_fetches > 0 || completions.count == 0) {
return;
}
if (!_historyWindowController) {
_historyWindowController = [[CommandHistoryPopupWindowController alloc] initForAutoComplete:NO];
_historyWindowController.forwardKeyDown = YES;
}
[_historyWindowController popWithDelegate:self inWindow:self.view.window];
[_historyWindowController loadCommands:completions
partialCommand:prefix
sortChronologically:NO];
}
- (BOOL)composerTextViewWantsKeyEquivalent:(NSEvent *)event {
return [self.delegate minimalComposer:self wantsKeyEquivalent:event];
}
- (void)composerTextViewPerformFindPanelAction:(id)sender {
[self.delegate minimalComposer:self performFindPanelAction:sender];
}
- (void)composerTextViewClear {
[self.delegate minimalComposerClear:self];
}
- (id<iTermSyntaxHighlighting>)composerSyntaxHighlighterForAttributedString:(NSMutableAttributedString *)textStorage {
return [self.delegate minimalComposer:self syntaxHighlighterForAttributedString:textStorage];
}
- (BOOL)composerTextViewShouldForwardCopy {
return [self.delegate minimalComposerShouldForwardCopy:self];
}
- (void)composerForwardMenuItem:(NSMenuItem *)menuItem {
[self.delegate minimalComposerForwardMenuItem:menuItem];
}
#pragma mark - iTermDragHandleViewDelegate
- (CGFloat)dragHandleView:(iTermDragHandleView *)dragHandle didMoveBy:(CGFloat)movement {
CGFloat delta = movement;
if (dragHandle == _topDragHandle) {
delta = -delta;
}
const CGFloat originalHeight = NSHeight(self.view.frame);
_manualHeight -= delta;
const CGFloat proposedHeight = NSHeight([self frameForHeight:_manualHeight]);
if (proposedHeight < self.minHeight) {
const CGFloat error = self.minHeight - proposedHeight;
delta -= error;
_manualHeight += error;
} else if (proposedHeight > self.maxHeight) {
const CGFloat error = proposedHeight - self.maxHeight;
delta += error;
_manualHeight -= error;
}
[[NSUserDefaults standardUserDefaults] setDouble:_manualHeight
forKey:iTermMinimalComposerViewHeightUserDefaultsKey];
[self updateFrame];
CGFloat actual = originalHeight - NSHeight(self.view.frame);
if (dragHandle == _topDragHandle) {
actual = -actual;
}
return actual;
}
- (void)largeComposerViewControllerTextDidChange:(nonnull iTermStatusBarLargeComposerViewController *)controller {
if (!self.isAutoComposer) {
return;
}
[self.delegate minimalComposerAutoComposerTextDidChange:self];
const CGFloat desiredHeight = [self desiredHeight];
if (desiredHeight == _desiredHeight) {
return;
}
_desiredHeight = desiredHeight;
[self.delegate minimalComposer:self desiredHeightDidChange:desiredHeight];
}
- (BOOL)largeComposerViewControllerShouldFetchSuggestions:(iTermStatusBarLargeComposerViewController *)controller
forHost:(id<VT100RemoteHostReading>)remoteHost
tmuxController:(TmuxController *)tmuxController {
return [self.delegate minimalComposerShouldFetchSuggestions:self forHost:remoteHost tmuxController:tmuxController];
}
- (void)largeComposerViewController:(iTermStatusBarLargeComposerViewController *)controller
fetchSuggestions:(iTermSuggestionRequest *)request {
[self.delegate minimalComposer:self fetchSuggestions:request];
}
- (NSString *)largeComposerViewController:(iTermStatusBarLargeComposerViewController *)controller
valueOfEnvironmentVariable:(NSString *)name {
return [self.delegate minimalComposer:self valueOfEnvironmentVariable:name];
}
#pragma mark - PopupDelegate
- (BOOL)popupWindowShouldAvoidChangingWindowOrderOnClose {
return NO;
}
- (NSRect)popupScreenVisibleFrame {
return self.view.window.screen.visibleFrame;
}
- (VT100Screen *)popupVT100Screen {
return nil;
}
- (id<iTermPopupWindowPresenter>)popupPresenter {
return self;
}
- (void)popupInsertText:(NSString *)text {
[_largeComposerViewController.textView insertText:text
replacementRange:_largeComposerViewController.textView.selectedRange];
}
- (void)popupPreview:(NSString *)text {
}
- (void)popupKeyDown:(NSEvent *)event {
[_largeComposerViewController.textView keyDown:event];
}
- (BOOL)popupHandleSelector:(SEL)selector string:(NSString *)string currentValue:(NSString *)currentValue {
return NO;
}
- (void)popupWillClose:(iTermPopupWindowController *)popup {
_historyWindowController = nil;
}
- (BOOL)popupWindowIsInFloatingHotkeyWindow {
id<iTermWindowController> windowController = (id<iTermWindowController>)self.view.window.delegate;
if ([windowController conformsToProtocol:@protocol(iTermWindowController)]) {
return [windowController isFloatingHotKeyWindow];
}
return NO;
}
- (void)popupIsSearching:(BOOL)searching {
}
- (BOOL)popupShouldTakePrefixFromScreen {
return NO;
}
// This is only called by Autocomplete
- (NSArray<NSString *> *)popupWordsBeforeInsertionPoint:(int)count {
assert(NO);
return @[];
}
#pragma mark - iTermPopupWindowPresenter
- (void)popupWindowWillPresent:(iTermPopupWindowController *)popupWindowController {
}
- (NSRect)popupWindowOriginRectInScreenCoords {
NSRange range = [_largeComposerViewController.textView selectedRange];
range.length = 0;
return [_largeComposerViewController.textView firstRectForCharacterRange:range actualRange:NULL];
}
@end