electron/atom/browser/ui/cocoa/atom_ns_window.mm

219 lines
6.6 KiB
Text
Raw Normal View History

2018-04-19 07:53:12 +00:00
// Copyright (c) 2018 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/ui/cocoa/atom_ns_window.h"
#include "atom/browser/native_window_mac.h"
#include "atom/browser/ui/cocoa/atom_preview_item.h"
#include "atom/browser/ui/cocoa/atom_touch_bar.h"
namespace atom {
bool ScopedDisableResize::disable_resize_ = false;
} // namespace atom
@implementation AtomNSWindow
@synthesize acceptsFirstMouse;
@synthesize enableLargerThanScreen;
@synthesize disableAutoHideCursor;
@synthesize disableKeyOrMainWindow;
@synthesize windowButtonsOffset;
@synthesize vibrantView;
- (void)setShell:(atom::NativeWindowMac*)shell {
shell_ = shell;
}
2018-05-02 11:43:45 +00:00
- (atom::NativeWindowMac*)shell {
return shell_;
}
2018-04-19 07:53:12 +00:00
- (NSTouchBar*)makeTouchBar API_AVAILABLE(macosx(10.12.2)) {
if (shell_->touch_bar())
return [shell_->touch_bar() makeTouchBar];
else
return nil;
}
// NSWindow overrides.
2018-04-20 18:47:04 +00:00
- (void)swipeWithEvent:(NSEvent*)event {
2018-04-19 07:53:12 +00:00
if (event.deltaY == 1.0) {
shell_->NotifyWindowSwipe("up");
} else if (event.deltaX == -1.0) {
shell_->NotifyWindowSwipe("right");
} else if (event.deltaY == -1.0) {
shell_->NotifyWindowSwipe("down");
} else if (event.deltaX == 1.0) {
shell_->NotifyWindowSwipe("left");
}
}
- (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen*)screen {
// Resizing is disabled.
if (atom::ScopedDisableResize::IsResizeDisabled())
return [self frame];
// Enable the window to be larger than screen.
if ([self enableLargerThanScreen])
return frameRect;
else
return [super constrainFrameRect:frameRect toScreen:screen];
}
- (void)setFrame:(NSRect)windowFrame display:(BOOL)displayViews {
// constrainFrameRect is not called on hidden windows so disable adjusting
// the frame directly when resize is disabled
if (!atom::ScopedDisableResize::IsResizeDisabled())
[super setFrame:windowFrame display:displayViews];
}
- (id)accessibilityAttributeValue:(NSString*)attribute {
if (![attribute isEqualToString:@"AXChildren"])
return [super accessibilityAttributeValue:attribute];
// Filter out objects that aren't the title bar buttons. This has the effect
// of removing the window title, which VoiceOver already sees.
// * when VoiceOver is disabled, this causes Cmd+C to be used for TTS but
// still leaves the buttons available in the accessibility tree.
// * when VoiceOver is enabled, the full accessibility tree is used.
// Without removing the title and with VO disabled, the TTS would always read
// the window title instead of using Cmd+C to get the selected text.
2018-04-20 18:47:04 +00:00
NSPredicate* predicate = [NSPredicate
predicateWithFormat:@"(self isKindOfClass: %@) OR (self.className == %@)",
[NSButtonCell class], @"RenderWidgetHostViewCocoa"];
2018-04-19 07:53:12 +00:00
2018-04-20 18:47:04 +00:00
NSArray* children = [super accessibilityAttributeValue:attribute];
2018-04-19 07:53:12 +00:00
return [children filteredArrayUsingPredicate:predicate];
}
- (BOOL)canBecomeMainWindow {
return !self.disableKeyOrMainWindow;
}
- (BOOL)canBecomeKeyWindow {
return !self.disableKeyOrMainWindow;
}
- (void)enableWindowButtonsOffset {
auto closeButton = [self standardWindowButton:NSWindowCloseButton];
2018-04-20 18:47:04 +00:00
auto miniaturizeButton =
[self standardWindowButton:NSWindowMiniaturizeButton];
2018-04-19 07:53:12 +00:00
auto zoomButton = [self standardWindowButton:NSWindowZoomButton];
[closeButton setPostsFrameChangedNotifications:YES];
[miniaturizeButton setPostsFrameChangedNotifications:YES];
[zoomButton setPostsFrameChangedNotifications:YES];
windowButtonsInterButtonSpacing_ =
2018-04-20 18:47:04 +00:00
NSMinX([miniaturizeButton frame]) - NSMaxX([closeButton frame]);
2018-04-19 07:53:12 +00:00
auto center = [NSNotificationCenter defaultCenter];
[center addObserver:self
selector:@selector(adjustCloseButton:)
name:NSViewFrameDidChangeNotification
object:closeButton];
[center addObserver:self
selector:@selector(adjustMiniaturizeButton:)
name:NSViewFrameDidChangeNotification
object:miniaturizeButton];
[center addObserver:self
selector:@selector(adjustZoomButton:)
name:NSViewFrameDidChangeNotification
object:zoomButton];
}
- (void)adjustCloseButton:(NSNotification*)notification {
2018-04-20 18:47:04 +00:00
[self adjustButton:[notification object] ofKind:NSWindowCloseButton];
2018-04-19 07:53:12 +00:00
}
- (void)adjustMiniaturizeButton:(NSNotification*)notification {
2018-04-20 18:47:04 +00:00
[self adjustButton:[notification object] ofKind:NSWindowMiniaturizeButton];
2018-04-19 07:53:12 +00:00
}
- (void)adjustZoomButton:(NSNotification*)notification {
2018-04-20 18:47:04 +00:00
[self adjustButton:[notification object] ofKind:NSWindowZoomButton];
2018-04-19 07:53:12 +00:00
}
2018-04-20 18:47:04 +00:00
- (void)adjustButton:(NSButton*)button ofKind:(NSWindowButton)kind {
2018-04-19 07:53:12 +00:00
NSRect buttonFrame = [button frame];
NSRect frameViewBounds = [[self frameView] bounds];
NSPoint offset = self.windowButtonsOffset;
buttonFrame.origin = NSMakePoint(
2018-04-20 18:47:04 +00:00
offset.x, (NSHeight(frameViewBounds) - NSHeight(buttonFrame) - offset.y));
2018-04-19 07:53:12 +00:00
switch (kind) {
case NSWindowZoomButton:
buttonFrame.origin.x += NSWidth(
2018-04-20 18:47:04 +00:00
[[self standardWindowButton:NSWindowMiniaturizeButton] frame]);
2018-04-19 07:53:12 +00:00
buttonFrame.origin.x += windowButtonsInterButtonSpacing_;
// fallthrough
case NSWindowMiniaturizeButton:
2018-04-20 18:47:04 +00:00
buttonFrame.origin.x +=
NSWidth([[self standardWindowButton:NSWindowCloseButton] frame]);
2018-04-19 07:53:12 +00:00
buttonFrame.origin.x += windowButtonsInterButtonSpacing_;
// fallthrough
default:
break;
}
BOOL didPost = [button postsBoundsChangedNotifications];
[button setPostsFrameChangedNotifications:NO];
[button setFrame:buttonFrame];
[button setPostsFrameChangedNotifications:didPost];
}
- (NSView*)frameView {
return [[self contentView] superview];
}
// Quicklook methods
- (BOOL)acceptsPreviewPanelControl:(QLPreviewPanel*)panel {
return YES;
}
- (void)beginPreviewPanelControl:(QLPreviewPanel*)panel {
panel.delegate = [self delegate];
panel.dataSource = static_cast<id<QLPreviewPanelDataSource>>([self delegate]);
}
- (void)endPreviewPanelControl:(QLPreviewPanel*)panel {
panel.delegate = nil;
panel.dataSource = nil;
}
// Custom window button methods
- (void)performClose:(id)sender {
2018-04-20 18:47:04 +00:00
if (shell_->title_bar_style() ==
atom::NativeWindowMac::CUSTOM_BUTTONS_ON_HOVER)
2018-04-19 07:53:12 +00:00
[[self delegate] windowShouldClose:self];
else
[super performClose:sender];
}
- (void)toggleFullScreenMode:(id)sender {
if (shell_->simple_fullscreen())
shell_->SetSimpleFullScreen(!shell_->IsSimpleFullScreen());
else
2018-04-20 18:47:04 +00:00
[super toggleFullScreen:sender];
2018-04-19 07:53:12 +00:00
}
- (void)performMiniaturize:(id)sender {
2018-04-20 18:47:04 +00:00
if (shell_->title_bar_style() ==
atom::NativeWindowMac::CUSTOM_BUTTONS_ON_HOVER)
2018-04-19 07:53:12 +00:00
[self miniaturize:self];
else
[super performMiniaturize:sender];
}
@end