зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1631735 Part 1: Improve macOS native fullscreen behavior. r=mstange
This is a modified version of Haik's patch D114133. It aims to fix the issues that cause our macOS native fullscreen tests to fail. To accomplish this, it does these things: 1) It clarifies that emulated fullscreen and native fullscreen are distinct end states. You can transition to fullscreen using either method, but from there you can only leave fullscreen. In other words you can't go directly from emulated fullscreen to native fullscreen nor the other way. 2) It captures the NSWindow delegate methods associated with a native fullscreen transition, and uses these to trigger and update the transition in and out of native fullscreen. It is still possible to programmatically trigger a native fullscreen transition using DoMakeFullscreen. 3) It correclty handles requests to change fullscreen while a fullscreen transition is still in progress. If a contrary change is requested during transition, then the transition is marked for reversion when it's complete. Notably, it does *not* attempt to send any kind of event when the native fullscreen transition is complete. There is no event-based method for the browser (or the test harness) to know when the transition is complete. The test harness will typically check for the sizemode events, which are sent when the fullscreen transition begins. If the test harness quickly toggles fullscreen off again, then the transition will be marked for reversion, and the test harness will detect the the end of fullscreen as soon as the reverting transition begins. Callers could get the nsCocoaWindow into the wrong state by requesting native fullscreen, and then while the transition is happening, requesting an exit of fullscreen and then requesting emulated fullscreen. This would be really hard for a user to accomplish, and our test harness should be waiting for sizemode events after each transition and so it won't request fullscreen in rapid succession like that. Differential Revision: https://phabricator.services.mozilla.com/D160097
This commit is contained in:
Родитель
ee88609b8b
Коммит
d74d4796ef
|
@ -263,8 +263,6 @@ class nsCocoaWindow final : public nsBaseWidget, public nsPIWidgetCocoa {
|
|||
virtual void SuppressAnimation(bool aSuppress) override;
|
||||
virtual void HideWindowChrome(bool aShouldHide) override;
|
||||
|
||||
void WillEnterFullScreen(bool aFullScreen);
|
||||
void EnteredFullScreen(bool aFullScreen, bool aNativeMode = true);
|
||||
virtual bool PrepareForFullscreenTransition(nsISupports** aData) override;
|
||||
virtual void PerformFullscreenTransition(FullscreenTransitionStage aStage, uint16_t aDuration,
|
||||
nsISupports* aData, nsIRunnable* aCallback) override;
|
||||
|
@ -364,6 +362,26 @@ class nsCocoaWindow final : public nsBaseWidget, public nsPIWidgetCocoa {
|
|||
const ScrollableLayerGuid& aGuid) override;
|
||||
void StopAsyncAutoscroll(const ScrollableLayerGuid& aGuid) override;
|
||||
|
||||
// Class method versions of NSWindow/Delegate callbacks to help with
|
||||
// logging and debugging.
|
||||
void CocoaWindowWillEnterFullscreen(bool aFullscreen);
|
||||
void CocoaWindowWillResize();
|
||||
void CocoaWindowDidResize();
|
||||
void CocoaSendToplevelActivateEvents();
|
||||
void CocoaSendToplevelDeactivateEvents();
|
||||
|
||||
void HandleNativeFullscreenTransition(bool aFullscreen);
|
||||
void HandleNativeFullscreenTransitionFailure(bool aFullscreen);
|
||||
|
||||
bool IsInFullscreenTransition() const {
|
||||
return mFullscreenTransition.mState != FullscreenTransitionState::None;
|
||||
}
|
||||
|
||||
bool IsInNativeFullscreenTransition() const {
|
||||
return mFullscreenTransition.mState != FullscreenTransitionState::None &&
|
||||
mFullscreenTransition.mType == FullscreenTransitionType::Native;
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual ~nsCocoaWindow();
|
||||
|
||||
|
@ -407,8 +425,63 @@ class nsCocoaWindow final : public nsBaseWidget, public nsPIWidgetCocoa {
|
|||
// this is used for sibling sheet contention only
|
||||
nsSizeMode mSizeMode;
|
||||
bool mInFullScreenMode;
|
||||
bool mInFullScreenTransition; // true from the request to enter/exit fullscreen
|
||||
// (MakeFullScreen() call) to EnteredFullScreen()
|
||||
|
||||
enum class FullscreenTransitionType {
|
||||
Emulated = 0, // Fullscreen transition where the window is
|
||||
// programmatically resized to fill the screen.
|
||||
// Sometimes called DOM fullscreen.
|
||||
Native, // A fullscreen transition initiated using the
|
||||
// either the Gecko widget fullscreen API or
|
||||
// in response to the user entering fullscreen
|
||||
// from the Mac View menu or clicking the
|
||||
// fullscreen button in the titlebar.
|
||||
};
|
||||
|
||||
enum class FullscreenTransitionState {
|
||||
None = 0, // Not transitioning. The window may be in
|
||||
// fullscreen already or in the normal state.
|
||||
ToFullscreen, // Transitioning to fullscreen
|
||||
ExitFullscreen, // Transitioning out of fullscreen
|
||||
};
|
||||
|
||||
struct FullscreenTransition {
|
||||
FullscreenTransitionType mType = FullscreenTransitionType::Native;
|
||||
FullscreenTransitionState mState = FullscreenTransitionState::None;
|
||||
bool mResized = false;
|
||||
bool mRevertOnCompletion = false;
|
||||
bool mHideOnCompletion = false;
|
||||
|
||||
void Reset() {
|
||||
mState = FullscreenTransitionState::None;
|
||||
mResized = false;
|
||||
mRevertOnCompletion = false;
|
||||
mHideOnCompletion = false;
|
||||
}
|
||||
|
||||
void StartEmulated(FullscreenTransitionState aToState) {
|
||||
Reset();
|
||||
mType = FullscreenTransitionType::Emulated;
|
||||
mState = aToState;
|
||||
}
|
||||
|
||||
void EndEmulated() { Reset(); }
|
||||
} mFullscreenTransition;
|
||||
|
||||
// Cleans up our state when we start a native transition. Must be paired with
|
||||
// a call to EndNativeFullscreenTransition().
|
||||
void StartNativeFullscreenTransition(FullscreenTransitionState aToState) {
|
||||
mFullscreenTransition.Reset();
|
||||
mFullscreenTransition.mType = FullscreenTransitionType::Native;
|
||||
mFullscreenTransition.mState = aToState;
|
||||
mIgnoreOcclusionCount++;
|
||||
}
|
||||
|
||||
// Called at the end of native transition, whether successful or not.
|
||||
void EndNativeFullscreenTransition() {
|
||||
mFullscreenTransition.Reset();
|
||||
MOZ_ASSERT(mIgnoreOcclusionCount > 0);
|
||||
mIgnoreOcclusionCount--;
|
||||
}
|
||||
|
||||
// Ignore occlusion events caused by displaying the temporary fullscreen
|
||||
// window during the fullscreen transition animation because only focused
|
||||
|
@ -419,7 +492,7 @@ class nsCocoaWindow final : public nsBaseWidget, public nsPIWidgetCocoa {
|
|||
bool mFakeModal;
|
||||
|
||||
// Whether we are currently using native fullscreen. It could be false because
|
||||
// we are in the DOM fullscreen where we do not use the native fullscreen.
|
||||
// we are in the emulated fullscreen where we do not use the native fullscreen.
|
||||
bool mInNativeFullScreenMode;
|
||||
|
||||
bool mIsAnimationSuppressed;
|
||||
|
|
|
@ -138,7 +138,6 @@ nsCocoaWindow::nsCocoaWindow()
|
|||
mSheetNeedsShow(false),
|
||||
mSizeMode(nsSizeMode_Normal),
|
||||
mInFullScreenMode(false),
|
||||
mInFullScreenTransition(false),
|
||||
mIgnoreOcclusionCount(0),
|
||||
mModal(false),
|
||||
mFakeModal(false),
|
||||
|
@ -797,6 +796,15 @@ void nsCocoaWindow::Show(bool bState) {
|
|||
|
||||
if (!mWindow) return;
|
||||
|
||||
// Don't hide the window until the fullscreen transition completes.
|
||||
// If we are already in a fullscreen transition and this is a request
|
||||
// to show the window (i.e. bState == true), don't do anything. The
|
||||
// window should already be visible.
|
||||
if (IsInNativeFullscreenTransition()) {
|
||||
mFullscreenTransition.mHideOnCompletion = !bState;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!mSheetNeedsShow) {
|
||||
// Early exit if our current visibility state is already the requested state.
|
||||
if (bState == ([mWindow isVisible] || [mWindow isBeingShown])) {
|
||||
|
@ -1633,18 +1641,17 @@ static bool AlwaysUsesNativeFullScreen() {
|
|||
[mFullscreenTransitionAnimation startAnimation];
|
||||
}
|
||||
|
||||
void nsCocoaWindow::WillEnterFullScreen(bool aFullScreen) {
|
||||
if (mWidgetListener) {
|
||||
mWidgetListener->FullscreenWillChange(aFullScreen);
|
||||
void nsCocoaWindow::CocoaWindowWillEnterFullscreen(bool aFullscreen) {
|
||||
if (!IsInNativeFullscreenTransition()) {
|
||||
FullscreenTransitionState requestedState = aFullscreen
|
||||
? FullscreenTransitionState::ToFullscreen
|
||||
: FullscreenTransitionState::ExitFullscreen;
|
||||
StartNativeFullscreenTransition(requestedState);
|
||||
}
|
||||
// Update the state to full screen when we are entering, so that we switch to
|
||||
// full screen view as soon as possible.
|
||||
UpdateFullscreenState(aFullScreen, true);
|
||||
}
|
||||
|
||||
void nsCocoaWindow::EnteredFullScreen(bool aFullScreen, bool aNativeMode) {
|
||||
mInFullScreenTransition = false;
|
||||
UpdateFullscreenState(aFullScreen, aNativeMode);
|
||||
if (mWidgetListener) {
|
||||
mWidgetListener->FullscreenWillChange(aFullscreen);
|
||||
}
|
||||
}
|
||||
|
||||
void nsCocoaWindow::UpdateFullscreenState(bool aFullScreen, bool aNativeMode) {
|
||||
|
@ -1703,6 +1710,17 @@ nsresult nsCocoaWindow::DoMakeFullScreen(bool aFullScreen, bool aUseSystemTransi
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
FullscreenTransitionState requestedState = aFullScreen
|
||||
? FullscreenTransitionState::ToFullscreen
|
||||
: FullscreenTransitionState::ExitFullscreen;
|
||||
|
||||
// Is a transition in progress?
|
||||
if (IsInFullscreenTransition()) {
|
||||
// Mark the transition for reversion if it's headed in the wrong direction.
|
||||
mFullscreenTransition.mRevertOnCompletion = (requestedState != mFullscreenTransition.mState);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// We will call into MakeFullScreen redundantly when entering/exiting
|
||||
// fullscreen mode via OS X controls. When that happens we should just handle
|
||||
// it gracefully - no need to ASSERT.
|
||||
|
@ -1710,16 +1728,19 @@ nsresult nsCocoaWindow::DoMakeFullScreen(bool aFullScreen, bool aUseSystemTransi
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
mInFullScreenTransition = true;
|
||||
|
||||
if (ShouldToggleNativeFullscreen(aFullScreen, aUseSystemTransition)) {
|
||||
MOZ_ASSERT(mInNativeFullScreenMode != aFullScreen,
|
||||
"We shouldn't have been in native fullscreen.");
|
||||
// Calling toggleFullScreen will result in windowDid(FailTo)?(Enter|Exit)FullScreen
|
||||
// to be called from the OS. We will call EnteredFullScreen from those methods,
|
||||
// to be called from the OS. We will call UpdateFullscreenState from those methods,
|
||||
// where mInFullScreenMode will be set and a sizemode event will be dispatched.
|
||||
[mWindow toggleFullScreen:nil];
|
||||
} else {
|
||||
// The emulated transition can be done without any asynchronous elements. But our
|
||||
// listeners might request a hide or show during the transition, which we'll handle
|
||||
// at the end, just like for a native transition.
|
||||
mFullscreenTransition.StartEmulated(requestedState);
|
||||
|
||||
if (mWidgetListener) {
|
||||
mWidgetListener->FullscreenWillChange(aFullScreen);
|
||||
}
|
||||
|
@ -1730,7 +1751,21 @@ nsresult nsCocoaWindow::DoMakeFullScreen(bool aFullScreen, bool aUseSystemTransi
|
|||
nsCocoaUtils::HideOSChromeOnScreen(aFullScreen);
|
||||
nsBaseWidget::InfallibleMakeFullScreen(aFullScreen);
|
||||
NSEnableScreenUpdates();
|
||||
EnteredFullScreen(aFullScreen, /* aNativeMode */ false);
|
||||
UpdateFullscreenState(aFullScreen, /* aNativeMode */ false);
|
||||
|
||||
bool hide = mFullscreenTransition.mHideOnCompletion;
|
||||
bool revert = mFullscreenTransition.mRevertOnCompletion;
|
||||
|
||||
mFullscreenTransition.EndEmulated();
|
||||
|
||||
if (hide) {
|
||||
Show(false);
|
||||
}
|
||||
|
||||
if (revert) {
|
||||
MOZ_ALWAYS_SUCCEEDS(NS_DispatchToCurrentThread(NewRunnableMethod<bool, bool>(
|
||||
"RevertingFullscreen", this, &nsCocoaWindow::DoMakeFullScreen, !aFullScreen, false)));
|
||||
}
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
|
@ -2091,11 +2126,7 @@ void nsCocoaWindow::DispatchSizeModeEvent() {
|
|||
}
|
||||
|
||||
nsSizeMode newMode = GetWindowSizeMode(mWindow, mInFullScreenMode);
|
||||
|
||||
// Don't dispatch a sizemode event if:
|
||||
// 1. the window is transitioning to fullscreen
|
||||
// 2. the new sizemode is the same as the current sizemode
|
||||
if (mInFullScreenTransition || mSizeMode == newMode) {
|
||||
if (mSizeMode == newMode) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -2693,20 +2724,66 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
}
|
||||
|
||||
- (NSSize)windowWillResize:(NSWindow*)sender toSize:(NSSize)proposedFrameSize {
|
||||
RollUpPopups();
|
||||
|
||||
if (mGeckoWindow) {
|
||||
mGeckoWindow->CocoaWindowWillResize();
|
||||
}
|
||||
return proposedFrameSize;
|
||||
}
|
||||
|
||||
void nsCocoaWindow::CocoaSendToplevelActivateEvents() {
|
||||
if (mWidgetListener) {
|
||||
mWidgetListener->WindowActivated();
|
||||
}
|
||||
}
|
||||
|
||||
void nsCocoaWindow::CocoaSendToplevelDeactivateEvents() {
|
||||
if (mWidgetListener) {
|
||||
mWidgetListener->WindowDeactivated();
|
||||
}
|
||||
}
|
||||
|
||||
void nsCocoaWindow::CocoaWindowWillResize() { RollUpPopups(); }
|
||||
|
||||
void nsCocoaWindow::CocoaWindowDidResize() {
|
||||
if (IsInNativeFullscreenTransition()) {
|
||||
// We only run this logic once per transition.
|
||||
if (mFullscreenTransition.mResized) {
|
||||
return;
|
||||
}
|
||||
mFullscreenTransition.mResized = true;
|
||||
|
||||
ReportSizeEvent();
|
||||
|
||||
// In order to maintain a sane JS state, we immediately notify our
|
||||
// listeners that we have successfully entered or exited fullscreen.
|
||||
// Later on in our event loop, our delegate methods
|
||||
// windowDidEnterFullscreen or windowDidExitFullscreen will be called.
|
||||
// When that happens, we'll note that our transition is complete.
|
||||
// Because we notify our listeners before the transition is complete,
|
||||
// tests in our test harness will likely continue to send fullscreen
|
||||
// requests in response, for example to move on to a new testing
|
||||
// condition. That's fine, because until we mark our transition
|
||||
// complete, we'll turn those fullscreen requests into modifications
|
||||
// of mFullscreenTransition. Specifically, the logic in
|
||||
// DoMakeFullScreen will set the transition to revert on completion
|
||||
// if we receive a contraray request during the transition period.
|
||||
bool toFullscreen = (mFullscreenTransition.mState == FullscreenTransitionState::ToFullscreen);
|
||||
HandleNativeFullscreenTransition(toFullscreen);
|
||||
return;
|
||||
}
|
||||
|
||||
// Resizing might have changed our zoom state.
|
||||
DispatchSizeModeEvent();
|
||||
ReportSizeEvent();
|
||||
}
|
||||
|
||||
- (void)windowDidResize:(NSNotification*)aNotification {
|
||||
BaseWindow* window = [aNotification object];
|
||||
[window updateTrackingArea];
|
||||
|
||||
if (!mGeckoWindow) return;
|
||||
|
||||
// Resizing might have changed our zoom state.
|
||||
mGeckoWindow->DispatchSizeModeEvent();
|
||||
mGeckoWindow->ReportSizeEvent();
|
||||
mGeckoWindow->CocoaWindowDidResize();
|
||||
}
|
||||
|
||||
- (void)windowDidChangeScreen:(NSNotification*)aNotification {
|
||||
|
@ -2739,12 +2816,45 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
mGeckoWindow->ReportMoveEvent();
|
||||
}
|
||||
|
||||
void nsCocoaWindow::HandleNativeFullscreenTransition(bool aFullscreen) {
|
||||
bool hide = mFullscreenTransition.mHideOnCompletion;
|
||||
bool revert = mFullscreenTransition.mRevertOnCompletion;
|
||||
|
||||
if ((mInFullScreenMode != aFullscreen) && IsInNativeFullscreenTransition()) {
|
||||
// We're still transitioning, but act as if we've finished so our listeners get
|
||||
// the early notification they expect. If that causes a listener to re-trigger
|
||||
// fullscreen again, we'll handle that through the revert mechanism.
|
||||
UpdateFullscreenState(aFullscreen, true);
|
||||
return;
|
||||
}
|
||||
|
||||
EndNativeFullscreenTransition();
|
||||
|
||||
if (hide) {
|
||||
Show(false);
|
||||
}
|
||||
|
||||
if (revert) {
|
||||
MOZ_ALWAYS_SUCCEEDS(NS_DispatchToCurrentThread(NewRunnableMethod<bool, bool>(
|
||||
"RevertingFullscreen", this, &nsCocoaWindow::DoMakeFullScreen, !aFullscreen, true)));
|
||||
}
|
||||
}
|
||||
|
||||
void nsCocoaWindow::HandleNativeFullscreenTransitionFailure(bool aFullscreen) {
|
||||
if (IsInNativeFullscreenTransition()) {
|
||||
EndNativeFullscreenTransition();
|
||||
} else {
|
||||
mFullscreenTransition.Reset();
|
||||
}
|
||||
UpdateFullscreenState(!aFullscreen, true);
|
||||
}
|
||||
|
||||
- (void)windowWillEnterFullScreen:(NSNotification*)notification {
|
||||
if (!mGeckoWindow) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->WillEnterFullScreen(true);
|
||||
mGeckoWindow->CocoaWindowWillEnterFullscreen(true);
|
||||
}
|
||||
|
||||
// Lion's full screen mode will bypass our internal fullscreen tracking, so
|
||||
|
@ -2755,7 +2865,14 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->EnteredFullScreen(true);
|
||||
// Exit early if we're not in a transition. This could happen if the NSWindow
|
||||
// delegate uses pattern windowWillEnter -> windowDidFail -> windowDidEnter,
|
||||
// which happens sometimes. In such a case, we want to ignore the final call.
|
||||
if (!mGeckoWindow->IsInNativeFullscreenTransition()) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->HandleNativeFullscreenTransition(true);
|
||||
|
||||
// On Yosemite, the NSThemeFrame class has two new properties --
|
||||
// titlebarView (an NSTitlebarView object) and titlebarContainerView (an
|
||||
|
@ -2785,8 +2902,7 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
if (!mGeckoWindow) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->WillEnterFullScreen(false);
|
||||
mGeckoWindow->CocoaWindowWillEnterFullscreen(false);
|
||||
}
|
||||
|
||||
- (void)windowDidExitFullScreen:(NSNotification*)notification {
|
||||
|
@ -2794,23 +2910,28 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->EnteredFullScreen(false);
|
||||
// Exit early if we're not in a transition. This could happen if the NSWindow
|
||||
// delegate uses pattern windowWillExit -> windowDidFail -> windowDidExit,
|
||||
// which happens sometimes. In such a case, we want to ignore the final call.
|
||||
if (!mGeckoWindow->IsInNativeFullscreenTransition()) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->HandleNativeFullscreenTransition(false);
|
||||
}
|
||||
|
||||
- (void)windowDidFailToEnterFullScreen:(NSWindow*)window {
|
||||
if (!mGeckoWindow) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->EnteredFullScreen(false);
|
||||
mGeckoWindow->HandleNativeFullscreenTransitionFailure(true);
|
||||
}
|
||||
|
||||
- (void)windowDidFailToExitFullScreen:(NSWindow*)window {
|
||||
if (!mGeckoWindow) {
|
||||
return;
|
||||
}
|
||||
|
||||
mGeckoWindow->EnteredFullScreen(true);
|
||||
mGeckoWindow->HandleNativeFullscreenTransitionFailure(false);
|
||||
}
|
||||
|
||||
- (void)windowDidBecomeMain:(NSNotification*)aNotification {
|
||||
|
@ -2985,20 +3106,15 @@ already_AddRefed<nsIWidget> nsIWidget::CreateChildWindow() {
|
|||
|
||||
- (void)sendToplevelActivateEvents {
|
||||
if (!mToplevelActiveState && mGeckoWindow) {
|
||||
nsIWidgetListener* listener = mGeckoWindow->GetWidgetListener();
|
||||
if (listener) {
|
||||
listener->WindowActivated();
|
||||
}
|
||||
mGeckoWindow->CocoaSendToplevelActivateEvents();
|
||||
|
||||
mToplevelActiveState = true;
|
||||
}
|
||||
}
|
||||
|
||||
- (void)sendToplevelDeactivateEvents {
|
||||
if (mToplevelActiveState && mGeckoWindow) {
|
||||
nsIWidgetListener* listener = mGeckoWindow->GetWidgetListener();
|
||||
if (listener) {
|
||||
listener->WindowDeactivated();
|
||||
}
|
||||
mGeckoWindow->CocoaSendToplevelDeactivateEvents();
|
||||
mToplevelActiveState = false;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче