OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1681 | 1681 |
1682 bool shouldAnchorAndRescaleViewport = settings()->mainFrameResizesAreOrienta
tionChanges() | 1682 bool shouldAnchorAndRescaleViewport = settings()->mainFrameResizesAreOrienta
tionChanges() |
1683 && m_size.width && contentsSize().width() && newSize.width != m_size.wid
th && !m_fullscreenController->isFullscreen(); | 1683 && m_size.width && contentsSize().width() && newSize.width != m_size.wid
th && !m_fullscreenController->isFullscreen(); |
1684 float oldPageScaleFactor = pageScaleFactor(); | 1684 float oldPageScaleFactor = pageScaleFactor(); |
1685 float oldMinimumPageScaleFactor = minimumPageScaleFactor(); | 1685 float oldMinimumPageScaleFactor = minimumPageScaleFactor(); |
1686 | 1686 |
1687 m_size = newSize; | 1687 m_size = newSize; |
1688 | 1688 |
1689 ViewportAnchor viewportAnchor(&localFrameRootTemporary()->frame()->eventHand
ler()); | 1689 ViewportAnchor viewportAnchor(&localFrameRootTemporary()->frame()->eventHand
ler()); |
1690 if (shouldAnchorAndRescaleViewport) { | 1690 if (shouldAnchorAndRescaleViewport) { |
1691 viewportAnchor.setAnchor(view->visibleContentRect(), | 1691 viewportAnchor.setAnchor( |
1692 FloatSize(viewportAnchorXCoord, viewportAnchorY
Coord)); | 1692 view->visibleContentRect(), |
| 1693 visibleRectInDocument(), |
| 1694 FloatSize(viewportAnchorXCoord, viewportAnchorYCoord)); |
1693 } | 1695 } |
1694 | 1696 |
1695 // FIXME: TextAutosizer does not yet support out-of-process frames. | 1697 // FIXME: TextAutosizer does not yet support out-of-process frames. |
1696 if (mainFrameImpl() && mainFrameImpl()->frame()->isLocalFrame()) | 1698 if (mainFrameImpl() && mainFrameImpl()->frame()->isLocalFrame()) |
1697 { | 1699 { |
1698 // Avoids unnecessary invalidations while various bits of state in TextA
utosizer are updated. | 1700 // Avoids unnecessary invalidations while various bits of state in TextA
utosizer are updated. |
1699 TextAutosizer::DeferUpdatePageInfo deferUpdatePageInfo(page()); | 1701 TextAutosizer::DeferUpdatePageInfo deferUpdatePageInfo(page()); |
1700 performResize(); | 1702 performResize(); |
1701 } else { | 1703 } else { |
1702 performResize(); | 1704 performResize(); |
1703 } | 1705 } |
1704 | 1706 |
1705 if (settings()->viewportEnabled() && !m_fixedLayoutSizeLock) { | 1707 if (settings()->viewportEnabled() && !m_fixedLayoutSizeLock) { |
1706 // Relayout immediately to recalculate the minimum scale limit. | 1708 // Relayout immediately to recalculate the minimum scale limit. |
1707 if (view->needsLayout()) | 1709 if (view->needsLayout()) |
1708 view->layout(); | 1710 view->layout(); |
1709 | 1711 |
1710 if (shouldAnchorAndRescaleViewport) { | 1712 if (shouldAnchorAndRescaleViewport) { |
1711 float newPageScaleFactor = oldPageScaleFactor / oldMinimumPageScaleF
actor * minimumPageScaleFactor(); | 1713 float newPageScaleFactor = oldPageScaleFactor / oldMinimumPageScaleF
actor * minimumPageScaleFactor(); |
1712 IntSize scaledViewportSize = newSize; | 1714 newPageScaleFactor = clampPageScaleFactorToLimits(newPageScaleFactor
); |
1713 scaledViewportSize.scale(1 / newPageScaleFactor); | 1715 |
1714 setPageScaleFactor(newPageScaleFactor, viewportAnchor.computeOrigin(
scaledViewportSize)); | 1716 FloatSize pinchViewportSize = FloatSize(newSize); |
| 1717 pinchViewportSize.scale(1 / newPageScaleFactor); |
| 1718 |
| 1719 IntPoint mainFrameOrigin; |
| 1720 FloatPoint pinchViewportOrigin; |
| 1721 viewportAnchor.computeOrigins(*view, pinchViewportSize, |
| 1722 &mainFrameOrigin, &pinchViewportOrigin); |
| 1723 scrollAndRescaleViewports(newPageScaleFactor, mainFrameOrigin, pinch
ViewportOrigin); |
1715 } | 1724 } |
1716 } | 1725 } |
1717 | 1726 |
1718 sendResizeEventAndRepaint(); | 1727 sendResizeEventAndRepaint(); |
1719 } | 1728 } |
1720 | 1729 |
| 1730 IntRect WebViewImpl::visibleRectInDocument() const |
| 1731 { |
| 1732 if (pinchVirtualViewportEnabled()) { |
| 1733 // Inner viewport in the document coordinates |
| 1734 return enclosedIntRect(page()->frameHost().pinchViewport().visibleRectIn
Document()); |
| 1735 } |
| 1736 |
| 1737 // Outer viewport in the document coordinates |
| 1738 return localFrameRootTemporary()->frameView()->visibleContentRect(); |
| 1739 } |
| 1740 |
1721 void WebViewImpl::willEndLiveResize() | 1741 void WebViewImpl::willEndLiveResize() |
1722 { | 1742 { |
1723 if (mainFrameImpl() && mainFrameImpl()->frameView()) | 1743 if (mainFrameImpl() && mainFrameImpl()->frameView()) |
1724 mainFrameImpl()->frameView()->willEndLiveResize(); | 1744 mainFrameImpl()->frameView()->willEndLiveResize(); |
1725 | 1745 |
1726 LocalFrame* frame = mainFrameImpl()->frame(); | 1746 LocalFrame* frame = mainFrameImpl()->frame(); |
1727 WebPluginContainerImpl* pluginContainer = WebLocalFrameImpl::pluginContainer
FromFrame(frame); | 1747 WebPluginContainerImpl* pluginContainer = WebLocalFrameImpl::pluginContainer
FromFrame(frame); |
1728 if (pluginContainer) | 1748 if (pluginContainer) |
1729 pluginContainer->willEndLiveResize(); | 1749 pluginContainer->willEndLiveResize(); |
1730 } | 1750 } |
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2906 WebFloatPoint WebViewImpl::pinchViewportOffset() const | 2926 WebFloatPoint WebViewImpl::pinchViewportOffset() const |
2907 { | 2927 { |
2908 ASSERT(page()); | 2928 ASSERT(page()); |
2909 | 2929 |
2910 if (!pinchVirtualViewportEnabled()) | 2930 if (!pinchVirtualViewportEnabled()) |
2911 return WebFloatPoint(); | 2931 return WebFloatPoint(); |
2912 | 2932 |
2913 return page()->frameHost().pinchViewport().visibleRect().location(); | 2933 return page()->frameHost().pinchViewport().visibleRect().location(); |
2914 } | 2934 } |
2915 | 2935 |
| 2936 void WebViewImpl::scrollAndRescaleViewports(float scaleFactor, |
| 2937 const IntPoint & mainFrameOrigin, |
| 2938 const FloatPoint & pinchViewportOrigin) |
| 2939 { |
| 2940 // Old way |
| 2941 if (!pinchVirtualViewportEnabled()) { |
| 2942 setPageScaleFactor(scaleFactor, mainFrameOrigin); |
| 2943 return; |
| 2944 } |
| 2945 |
| 2946 if (!page()) |
| 2947 return; |
| 2948 |
| 2949 if (!mainFrameImpl()) |
| 2950 return; |
| 2951 |
| 2952 FrameView * view = mainFrameImpl()->frameView(); |
| 2953 if (!view) |
| 2954 return; |
| 2955 |
| 2956 // Order is important: pinch viewport location is clamped based on |
| 2957 // main frame scroll position and pinch viewport scale. |
| 2958 |
| 2959 // Set outer viewport position. |
| 2960 view->setScrollOffset(mainFrameOrigin); |
| 2961 |
| 2962 // Set the scale. |
| 2963 setPageScaleFactor(scaleFactor); |
| 2964 |
| 2965 // Set inner viewport position. |
| 2966 page()->frameHost().pinchViewport().setLocation(pinchViewportOrigin); |
| 2967 } |
| 2968 |
2916 void WebViewImpl::setPageScaleFactor(float scaleFactor) | 2969 void WebViewImpl::setPageScaleFactor(float scaleFactor) |
2917 { | 2970 { |
2918 ASSERT(page()); | 2971 ASSERT(page()); |
2919 | 2972 |
2920 scaleFactor = clampPageScaleFactorToLimits(scaleFactor); | 2973 scaleFactor = clampPageScaleFactorToLimits(scaleFactor); |
2921 if (scaleFactor == pageScaleFactor()) | 2974 if (scaleFactor == pageScaleFactor()) |
2922 return; | 2975 return; |
2923 | 2976 |
2924 // TODO(bokan): Old-style pinch path. Remove when we're migrated to | 2977 // TODO(bokan): Old-style pinch path. Remove when we're migrated to |
2925 // virtual viewport pinch. | 2978 // virtual viewport pinch. |
(...skipping 22 matching lines...) Expand all Loading... |
2948 newScrollOffset = clampOffsetAtScale(newScrollOffset, scaleFactor); | 3001 newScrollOffset = clampOffsetAtScale(newScrollOffset, scaleFactor); |
2949 | 3002 |
2950 if (pinchVirtualViewportEnabled()) | 3003 if (pinchVirtualViewportEnabled()) |
2951 setPageScaleFactor(scaleFactor); | 3004 setPageScaleFactor(scaleFactor); |
2952 // Note, we don't set the offset in the new path. This method is going | 3005 // Note, we don't set the offset in the new path. This method is going |
2953 // away for the new pinch model so that's ok. | 3006 // away for the new pinch model so that's ok. |
2954 else | 3007 else |
2955 page()->setPageScaleFactor(scaleFactor, newScrollOffset); | 3008 page()->setPageScaleFactor(scaleFactor, newScrollOffset); |
2956 } | 3009 } |
2957 | 3010 |
2958 | |
2959 float WebViewImpl::deviceScaleFactor() const | 3011 float WebViewImpl::deviceScaleFactor() const |
2960 { | 3012 { |
2961 if (!page()) | 3013 if (!page()) |
2962 return 1; | 3014 return 1; |
2963 | 3015 |
2964 return page()->deviceScaleFactor(); | 3016 return page()->deviceScaleFactor(); |
2965 } | 3017 } |
2966 | 3018 |
2967 void WebViewImpl::setDeviceScaleFactor(float scaleFactor) | 3019 void WebViewImpl::setDeviceScaleFactor(float scaleFactor) |
2968 { | 3020 { |
(...skipping 1346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4315 const PageScaleConstraints& constraints = m_pageScaleConstraintsSet.pageDefi
nedConstraints(); | 4367 const PageScaleConstraints& constraints = m_pageScaleConstraintsSet.pageDefi
nedConstraints(); |
4316 | 4368 |
4317 if (!mainFrameImpl() || !mainFrameImpl()->frameView()) | 4369 if (!mainFrameImpl() || !mainFrameImpl()->frameView()) |
4318 return false; | 4370 return false; |
4319 | 4371 |
4320 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width | 4372 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width |
4321 || (constraints.minimumScale == constraints.maximumScale && constraints.
minimumScale != -1); | 4373 || (constraints.minimumScale == constraints.maximumScale && constraints.
minimumScale != -1); |
4322 } | 4374 } |
4323 | 4375 |
4324 } // namespace blink | 4376 } // namespace blink |
OLD | NEW |