Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: cc/layer_tree_host.cc

Issue 11550035: Implement pinch-zoom scaling for main-frame scrollbars and pinch-zoom overlay scrollbars. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revisions, force PZ scrollbars to always draw. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/layer_tree_host_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_tree_host.cc
diff --git a/cc/layer_tree_host.cc b/cc/layer_tree_host.cc
index c4e8dd43c6925406fe7273923314edcd073609f1..8099063522ee4f54f0112d2b769b74b949ab7551 100644
--- a/cc/layer_tree_host.cc
+++ b/cc/layer_tree_host.cc
@@ -23,7 +23,11 @@
#include "cc/math_util.h"
#include "cc/occlusion_tracker.h"
#include "cc/overdraw_metrics.h"
+#include "cc/pinch_zoom_scrollbar.h"
+#include "cc/pinch_zoom_scrollbar_geometry.h"
+#include "cc/pinch_zoom_scrollbar_painter.h"
#include "cc/prioritized_resource_manager.h"
+#include "cc/scrollbar_layer.h"
#include "cc/single_thread_proxy.h"
#include "cc/switches.h"
#include "cc/thread.h"
@@ -327,6 +331,13 @@ void LayerTreeHost::finishCommitOnImplThread(LayerTreeHostImpl* hostImpl)
syncTree->ResetContentsTexturesPurged();
}
+ syncTree->SetPinchZoomHorizontalLayerId(
+ m_pinchZoomScrollbarHorizontal ? m_pinchZoomScrollbarHorizontal->id() :
+ Layer::INVALID_ID);
danakj 2013/03/12 19:00:39 nit: this is strange indenting. normally it would
wjmaclean 2013/03/12 19:07:15 Done.
+ syncTree->SetPinchZoomVerticalLayerId(
+ m_pinchZoomScrollbarVertical ? m_pinchZoomScrollbarVertical->id() :
+ Layer::INVALID_ID);
+
if (!m_settings.implSidePainting) {
// If we're not in impl-side painting, the tree is immediately
// considered active.
@@ -339,9 +350,64 @@ void LayerTreeHost::finishCommitOnImplThread(LayerTreeHostImpl* hostImpl)
m_commitNumber++;
}
+void LayerTreeHost::setPinchZoomScrollbarsBoundsAndPosition()
+{
+ if (!m_pinchZoomScrollbarHorizontal || !m_pinchZoomScrollbarVertical)
+ return;
+
+ gfx::Size size = layoutViewportSize();
+ int trackWidth = PinchZoomScrollbarGeometry::kTrackWidth;
+
+ m_pinchZoomScrollbarHorizontal->SetBounds(gfx::Size(size.width() - trackWidth, trackWidth));
+ m_pinchZoomScrollbarHorizontal->SetPosition(gfx::PointF(0, size.height() - trackWidth));
+
+ m_pinchZoomScrollbarVertical->SetBounds(gfx::Size(trackWidth, size.height() - trackWidth));
+ m_pinchZoomScrollbarVertical->SetPosition(gfx::PointF(size.width() - trackWidth, 0));
+}
+
+static scoped_refptr<ScrollbarLayer> CreatePinchZoomScrollbar(
+ WebKit::WebScrollbar::Orientation orientation, LayerTreeHost* owner)
+{
+ scoped_refptr<ScrollbarLayer> scrollbarLayer = ScrollbarLayer::Create(
+ make_scoped_ptr(
+ new PinchZoomScrollbar(orientation, owner)).PassAs<WebKit::WebScrollbar>(),
+ scoped_ptr<ScrollbarThemePainter>(new PinchZoomScrollbarPainter).Pass(),
+ scoped_ptr<WebKit::WebScrollbarThemeGeometry>(
+ new PinchZoomScrollbarGeometry).Pass(),
+ Layer::PINCH_ZOOM_ROOT_SCROLL_LAYER_ID);
+ scrollbarLayer->SetIsDrawable(true);
danakj 2013/03/12 19:00:39 new statement shouldn't be indented like a continu
wjmaclean 2013/03/12 19:07:15 Actually, isn't it the case that this *is* a conti
wjmaclean 2013/03/12 19:11:02 Scrub that ... the indenting is wrong on the line
+ scrollbarLayer->SetOpacity(0);
danakj 2013/03/12 19:00:39 0.f
wjmaclean 2013/03/12 19:07:15 Done.
+ return scrollbarLayer;
+}
+
+void LayerTreeHost::createAndAddPinchZoomScrollbars()
+{
+ bool needsPropertiesUpdated = false;
+
+ if (!m_pinchZoomScrollbarHorizontal || !m_pinchZoomScrollbarVertical) {
+ m_pinchZoomScrollbarHorizontal = CreatePinchZoomScrollbar(WebKit::WebScrollbar::Horizontal, this);
+ m_pinchZoomScrollbarVertical = CreatePinchZoomScrollbar( WebKit::WebScrollbar::Vertical, this);
+ needsPropertiesUpdated = true;
+ }
+
+ DCHECK(m_pinchZoomScrollbarHorizontal && m_pinchZoomScrollbarVertical);
+
+ if (!m_pinchZoomScrollbarHorizontal->parent())
+ m_rootLayer->AddChild(m_pinchZoomScrollbarHorizontal);
enne (OOO) 2013/03/12 19:02:29 SetRootLayer will break this hookup. You need to
wjmaclean 2013/03/12 19:07:15 OK, working on it for next patch.
+
+ if (!m_pinchZoomScrollbarVertical->parent())
+ m_rootLayer->AddChild(m_pinchZoomScrollbarVertical);
+
+ if (needsPropertiesUpdated)
+ setPinchZoomScrollbarsBoundsAndPosition();
+}
+
void LayerTreeHost::willCommit()
{
m_client->willCommit();
+
+ if (m_settings.usePinchZoomScrollbars)
+ createAndAddPinchZoomScrollbars();
}
void LayerTreeHost::updateHudLayer()
@@ -502,6 +568,7 @@ void LayerTreeHost::setViewportSize(const gfx::Size& layoutViewportSize, const g
m_layoutViewportSize = layoutViewportSize;
m_deviceViewportSize = deviceViewportSize;
+ setPinchZoomScrollbarsBoundsAndPosition();
setNeedsCommit();
}
@@ -595,6 +662,11 @@ static Layer* findFirstScrollableLayer(Layer* layer)
return 0;
}
+const Layer* LayerTreeHost::rootScrollLayer() const
+{
+ return findFirstScrollableLayer(m_rootLayer.get());
+}
+
void LayerTreeHost::updateLayers(Layer* rootLayer, ResourceUpdateQueue& queue)
{
TRACE_EVENT0("cc", "LayerTreeHost::updateLayers");
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/layer_tree_host_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698