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

Unified Diff: ui/wm/core/shadow.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/wm/core/shadow.h ('k') | ui/wm/core/shadow_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wm/core/shadow.cc
diff --git a/ui/wm/core/shadow.cc b/ui/wm/core/shadow.cc
deleted file mode 100644
index 4b621225844350015c2aa58d4dfbfb0dcd1a7414..0000000000000000000000000000000000000000
--- a/ui/wm/core/shadow.cc
+++ /dev/null
@@ -1,203 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/wm/core/shadow.h"
-
-#include "third_party/skia/include/core/SkBitmap.h"
-#include "ui/base/resource/resource_bundle.h"
-#include "ui/compositor/layer.h"
-#include "ui/compositor/scoped_layer_animation_settings.h"
-#include "ui/resources/grit/ui_resources.h"
-
-namespace {
-
-// Shadow opacity for different styles.
-const float kActiveShadowOpacity = 1.0f;
-const float kInactiveShadowOpacity = 0.2f;
-const float kSmallShadowOpacity = 1.0f;
-
-// Shadow aperture for different styles.
-// Note that this may be greater than interior inset to allow shadows with
-// curved corners that extend inwards beyond a window's borders.
-const int kActiveInteriorAperture = 134;
-const int kInactiveInteriorAperture = 134;
-const int kSmallInteriorAperture = 9;
-
-// Interior inset for different styles.
-const int kActiveInteriorInset = 64;
-const int kInactiveInteriorInset = 64;
-const int kSmallInteriorInset = 4;
-
-// Duration for opacity animation in milliseconds.
-const int kShadowAnimationDurationMs = 100;
-
-float GetOpacityForStyle(wm::Shadow::Style style) {
- switch (style) {
- case wm::Shadow::STYLE_ACTIVE:
- return kActiveShadowOpacity;
- case wm::Shadow::STYLE_INACTIVE:
- return kInactiveShadowOpacity;
- case wm::Shadow::STYLE_SMALL:
- return kSmallShadowOpacity;
- }
- return 1.0f;
-}
-
-int GetShadowApertureForStyle(wm::Shadow::Style style) {
- switch (style) {
- case wm::Shadow::STYLE_ACTIVE:
- return kActiveInteriorAperture;
- case wm::Shadow::STYLE_INACTIVE:
- return kInactiveInteriorAperture;
- case wm::Shadow::STYLE_SMALL:
- return kSmallInteriorAperture;
- }
- return 0;
-}
-
-int GetInteriorInsetForStyle(wm::Shadow::Style style) {
- switch (style) {
- case wm::Shadow::STYLE_ACTIVE:
- return kActiveInteriorInset;
- case wm::Shadow::STYLE_INACTIVE:
- return kInactiveInteriorInset;
- case wm::Shadow::STYLE_SMALL:
- return kSmallInteriorInset;
- }
- return 0;
-}
-
-} // namespace
-
-namespace wm {
-
-Shadow::Shadow() : style_(STYLE_ACTIVE), interior_inset_(0) {
-}
-
-Shadow::~Shadow() {
-}
-
-void Shadow::Init(Style style) {
- style_ = style;
-
- layer_.reset(new ui::Layer(ui::LAYER_NOT_DRAWN));
- shadow_layer_.reset(new ui::Layer(ui::LAYER_NINE_PATCH));
- layer()->Add(shadow_layer_.get());
-
- UpdateImagesForStyle();
- shadow_layer_->set_name("Shadow");
- shadow_layer_->SetVisible(true);
- shadow_layer_->SetFillsBoundsOpaquely(false);
- shadow_layer_->SetOpacity(GetOpacityForStyle(style_));
-}
-
-void Shadow::SetContentBounds(const gfx::Rect& content_bounds) {
- content_bounds_ = content_bounds;
- UpdateLayerBounds();
-}
-
-void Shadow::SetStyle(Style style) {
- if (style_ == style)
- return;
-
- Style old_style = style_;
- style_ = style;
-
- // Stop waiting for any as yet unfinished implicit animations.
- StopObservingImplicitAnimations();
-
- // If we're switching to or from the small style, don't bother with
- // animations.
- if (style == STYLE_SMALL || old_style == STYLE_SMALL) {
- UpdateImagesForStyle();
- shadow_layer_->SetOpacity(GetOpacityForStyle(style));
- return;
- }
-
- // If we're becoming active, switch images now. Because the inactive image
- // has a very low opacity the switch isn't noticeable and this approach
- // allows us to use only a single set of shadow images at a time.
- if (style == STYLE_ACTIVE) {
- UpdateImagesForStyle();
- // Opacity was baked into inactive image, start opacity low to match.
- shadow_layer_->SetOpacity(kInactiveShadowOpacity);
- }
-
- {
- // Property sets within this scope will be implicitly animated.
- ui::ScopedLayerAnimationSettings settings(shadow_layer_->GetAnimator());
- settings.AddObserver(this);
- settings.SetTransitionDuration(
- base::TimeDelta::FromMilliseconds(kShadowAnimationDurationMs));
- switch (style_) {
- case STYLE_ACTIVE:
- shadow_layer_->SetOpacity(kActiveShadowOpacity);
- break;
- case STYLE_INACTIVE:
- shadow_layer_->SetOpacity(kInactiveShadowOpacity);
- break;
- default:
- NOTREACHED() << "Unhandled style " << style_;
- break;
- }
- }
-}
-
-void Shadow::OnImplicitAnimationsCompleted() {
- // If we just finished going inactive, switch images. This doesn't cause
- // a visual pop because the inactive image opacity is so low.
- if (style_ == STYLE_INACTIVE) {
- UpdateImagesForStyle();
- // Opacity is baked into inactive image, so set fully opaque.
- shadow_layer_->SetOpacity(1.0f);
- }
-}
-
-void Shadow::UpdateImagesForStyle() {
- ResourceBundle& res = ResourceBundle::GetSharedInstance();
- gfx::Image image;
- switch (style_) {
- case STYLE_ACTIVE:
- image = res.GetImageNamed(IDR_AURA_SHADOW_ACTIVE);
- break;
- case STYLE_INACTIVE:
- image = res.GetImageNamed(IDR_AURA_SHADOW_INACTIVE);
- break;
- case STYLE_SMALL:
- image = res.GetImageNamed(IDR_WINDOW_BUBBLE_SHADOW_SMALL);
- break;
- default:
- NOTREACHED() << "Unhandled style " << style_;
- break;
- }
-
- shadow_layer_->UpdateNinePatchLayerBitmap(image.AsBitmap());
- image_size_ = image.Size();
- interior_inset_ = GetInteriorInsetForStyle(style_);
-
- // Image sizes may have changed.
- UpdateLayerBounds();
-}
-
-void Shadow::UpdateLayerBounds() {
- // Update bounds based on content bounds and interior inset.
- gfx::Rect layer_bounds = content_bounds_;
- layer_bounds.Inset(-interior_inset_, -interior_inset_);
- layer()->SetBounds(layer_bounds);
- shadow_layer_->SetBounds(gfx::Rect(layer_bounds.size()));
-
- // Update the shadow aperture and border for style. Note that border is in
- // layer space and it cannot exceed the bounds of the layer.
- int aperture = GetShadowApertureForStyle(style_);
- int aperture_x = std::min(aperture, layer_bounds.width() / 2);
- int aperture_y = std::min(aperture, layer_bounds.height() / 2);
- shadow_layer_->UpdateNinePatchLayerAperture(
- gfx::Rect(aperture_x, aperture_y,
- image_size_.width() - aperture_x * 2,
- image_size_.height() - aperture_y * 2));
- shadow_layer_->UpdateNinePatchLayerBorder(
- gfx::Rect(aperture_x, aperture_y, aperture_x * 2, aperture_y * 2));
-}
-
-} // namespace wm
« no previous file with comments | « ui/wm/core/shadow.h ('k') | ui/wm/core/shadow_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698