blob: ef08308f7e72cb9f8a9583d836a6c233dfe2149d [file] [log] [blame]
// 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/views/controls/glow_hover_controller.h"
#include "ui/views/view.h"
namespace views {
// Amount to scale the opacity.
static const double kSubtleOpacityScale = 0.45;
static const double kPronouncedOpacityScale = 1.0;
// How long the hover state takes.
static const int kTrackHoverDurationMs = 400;
GlowHoverController::GlowHoverController(views::View* view)
: view_(view),
animation_(this),
opacity_scale_(kSubtleOpacityScale) {
animation_.set_delegate(this);
}
GlowHoverController::~GlowHoverController() {
}
void GlowHoverController::SetAnimationContainer(
gfx::AnimationContainer* container) {
animation_.SetContainer(container);
}
void GlowHoverController::SetLocation(const gfx::Point& location) {
location_ = location;
if (ShouldDraw())
view_->SchedulePaint();
}
void GlowHoverController::Show(Style style) {
switch (style) {
case SUBTLE:
opacity_scale_ = kSubtleOpacityScale;
animation_.SetSlideDuration(kTrackHoverDurationMs);
animation_.SetTweenType(gfx::Tween::EASE_OUT);
animation_.Show();
break;
case PRONOUNCED:
opacity_scale_ = kPronouncedOpacityScale;
// Force the end state to show immediately.
animation_.Show();
animation_.End();
break;
}
}
void GlowHoverController::Hide() {
animation_.SetTweenType(gfx::Tween::EASE_IN);
animation_.Hide();
}
void GlowHoverController::HideImmediately() {
if (ShouldDraw())
view_->SchedulePaint();
animation_.Reset();
}
double GlowHoverController::GetAnimationValue() const {
return animation_.GetCurrentValue();
}
SkAlpha GlowHoverController::GetAlpha() const {
return static_cast<SkAlpha>(animation_.CurrentValueBetween(
0, gfx::ToRoundedInt(255 * opacity_scale_)));
}
bool GlowHoverController::ShouldDraw() const {
return animation_.IsShowing() || animation_.is_animating();
}
void GlowHoverController::AnimationEnded(const gfx::Animation* animation) {
view_->SchedulePaint();
}
void GlowHoverController::AnimationProgressed(const gfx::Animation* animation) {
view_->SchedulePaint();
}
} // namespace views