1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
// 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 "chrome/browser/ui/views/dropdown_bar_host.h"
#include <algorithm>
#include "chrome/browser/ui/view_ids.h"
#include "chrome/browser/ui/views/dropdown_bar_host_delegate.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/theme_copying_widget.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/gfx/animation/slide_animation.h"
#include "ui/gfx/scrollbar_size.h"
#include "ui/views/focus/external_focus_tracker.h"
#include "ui/views/widget/widget.h"
// static
bool DropdownBarHost::disable_animations_during_testing_ = false;
////////////////////////////////////////////////////////////////////////////////
// DropdownBarHost, public:
DropdownBarHost::DropdownBarHost(BrowserView* browser_view)
: browser_view_(browser_view),
view_(nullptr),
delegate_(nullptr),
focus_manager_(nullptr),
esc_accel_target_registered_(false),
is_visible_(false) {}
void DropdownBarHost::Init(views::View* host_view,
views::View* view,
DropdownBarHostDelegate* delegate) {
DCHECK(view);
DCHECK(delegate);
view_ = view;
delegate_ = delegate;
// The |clip_view| exists to paint to a layer so that it can clip descendent
// Views which also paint to a Layer. See http://crbug.com/589497
std::unique_ptr<views::View> clip_view(new views::View());
clip_view->SetPaintToLayer();
clip_view->layer()->SetFillsBoundsOpaquely(false);
clip_view->layer()->SetMasksToBounds(true);
clip_view->AddChildView(view_);
// Initialize the host.
host_.reset(new ThemeCopyingWidget(browser_view_->GetWidget()));
views::Widget::InitParams params(views::Widget::InitParams::TYPE_CONTROL);
params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
params.parent = browser_view_->GetWidget()->GetNativeView();
params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
host_->Init(params);
host_->SetContentsView(clip_view.release());
SetHostViewNative(host_view);
// Start listening to focus changes, so we can register and unregister our
// own handler for Escape.
focus_manager_ = host_->GetFocusManager();
if (focus_manager_) {
focus_manager_->AddFocusChangeListener(this);
} else {
// In some cases (see bug http://crbug.com/17056) it seems we may not have
// a focus manager. Please reopen the bug if you hit this.
NOTREACHED();
}
animation_.reset(new gfx::SlideAnimation(this));
// Update the widget and |view_| bounds to the hidden state.
AnimationProgressed(animation_.get());
}
DropdownBarHost::~DropdownBarHost() {
focus_manager_->RemoveFocusChangeListener(this);
focus_tracker_.reset(NULL);
}
void DropdownBarHost::Show(bool animate) {
// Stores the currently focused view, and tracks focus changes so that we can
// restore focus when the dropdown widget is closed.
focus_tracker_.reset(new views::ExternalFocusTracker(view_, focus_manager_));
SetDialogPosition(GetDialogPosition(gfx::Rect()));
// If we're in the middle of a close animation, stop it and skip to the end.
// This ensures that the state is consistent and prepared to show the drop-
// down bar.
if (animation_->IsClosing())
StopAnimation();
host_->Show();
bool was_visible = is_visible_;
is_visible_ = true;
if (!animate || disable_animations_during_testing_) {
animation_->Reset(1);
AnimationProgressed(animation_.get());
} else if (!was_visible) {
// Don't re-start the animation.
animation_->Reset();
animation_->Show();
}
if (!was_visible)
OnVisibilityChanged();
}
void DropdownBarHost::SetFocusAndSelection() {
delegate_->SetFocusAndSelection(true);
}
bool DropdownBarHost::IsAnimating() const {
return animation_->is_animating();
}
void DropdownBarHost::Hide(bool animate) {
if (!IsVisible())
return;
if (animate && !disable_animations_during_testing_ &&
!animation_->IsClosing()) {
animation_->Hide();
} else {
if (animation_->IsClosing()) {
// If we're in the middle of a close animation, skip immediately to the
// end of the animation.
StopAnimation();
} else {
// Otherwise we need to set both the animation state to ended and the
// DropdownBarHost state to ended/hidden, otherwise the next time we try
// to show the bar, it might refuse to do so. Note that we call
// AnimationEnded ourselves as Reset does not call it if we are not
// animating here.
animation_->Reset();
AnimationEnded(animation_.get());
}
}
}
void DropdownBarHost::StopAnimation() {
animation_->End();
}
bool DropdownBarHost::IsVisible() const {
return is_visible_;
}
void DropdownBarHost::SetDialogPosition(const gfx::Rect& new_pos) {
view_->SetSize(new_pos.size());
if (new_pos.IsEmpty())
return;
host()->SetBounds(new_pos);
}
////////////////////////////////////////////////////////////////////////////////
// DropdownBarHost, views::FocusChangeListener implementation:
void DropdownBarHost::OnWillChangeFocus(views::View* focused_before,
views::View* focused_now) {
// First we need to determine if one or both of the views passed in are child
// views of our view.
bool our_view_before = focused_before && view_->Contains(focused_before);
bool our_view_now = focused_now && view_->Contains(focused_now);
// When both our_view_before and our_view_now are false, it means focus is
// changing hands elsewhere in the application (and we shouldn't do anything).
// Similarly, when both are true, focus is changing hands within the dropdown
// widget (and again, we should not do anything). We therefore only need to
// look at when we gain initial focus and when we loose it.
if (!our_view_before && our_view_now) {
// We are gaining focus from outside the dropdown widget so we must register
// a handler for Escape.
RegisterAccelerators();
} else if (our_view_before && !our_view_now) {
// We are losing focus to something outside our widget so we restore the
// original handler for Escape.
UnregisterAccelerators();
}
}
void DropdownBarHost::OnDidChangeFocus(views::View* focused_before,
views::View* focused_now) {
}
////////////////////////////////////////////////////////////////////////////////
// DropdownBarHost, gfx::AnimationDelegate implementation:
void DropdownBarHost::AnimationProgressed(const gfx::Animation* animation) {
// First, we calculate how many pixels to slide the widget.
gfx::Size pref_size = view_->GetPreferredSize();
int view_offset = static_cast<int>((animation_->GetCurrentValue() - 1.0) *
pref_size.height());
// This call makes sure |view_| appears in the right location, the size and
// shape is correct and that it slides in the right direction.
view_->SetPosition(gfx::Point(0, view_offset));
}
void DropdownBarHost::AnimationEnded(const gfx::Animation* animation) {
if (!animation_->IsShowing()) {
// Animation has finished closing.
host_->Hide();
is_visible_ = false;
OnVisibilityChanged();
} else {
// Animation has finished opening.
}
}
////////////////////////////////////////////////////////////////////////////////
// DropdownBarHost protected:
void DropdownBarHost::ResetFocusTracker() {
focus_tracker_.reset(NULL);
}
void DropdownBarHost::OnVisibilityChanged() {
}
void DropdownBarHost::GetWidgetBounds(gfx::Rect* bounds) {
DCHECK(bounds);
*bounds = browser_view_->bounds();
}
void DropdownBarHost::RegisterAccelerators() {
DCHECK(!esc_accel_target_registered_);
ui::Accelerator escape(ui::VKEY_ESCAPE, ui::EF_NONE);
focus_manager_->RegisterAccelerator(
escape, ui::AcceleratorManager::kNormalPriority, this);
esc_accel_target_registered_ = true;
}
void DropdownBarHost::UnregisterAccelerators() {
DCHECK(esc_accel_target_registered_);
ui::Accelerator escape(ui::VKEY_ESCAPE, ui::EF_NONE);
focus_manager_->UnregisterAccelerator(escape, this);
esc_accel_target_registered_ = false;
}
|