fullscreen_exit_bubble_views.cc revision eb525c5499e34cc9c4b825d6d9e75bb07cc06ace
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/views/fullscreen_exit_bubble_views.h"
6
7#include "base/message_loop.h"
8#include "base/strings/utf_string_conversions.h"
9#include "chrome/app/chrome_command_ids.h"
10#include "chrome/browser/ui/fullscreen/fullscreen_controller.h"
11#include "chrome/browser/ui/views/frame/browser_view.h"
12#include "chrome/browser/ui/views/frame/immersive_mode_controller.h"
13#include "chrome/browser/ui/views/frame/top_container_view.h"
14#include "chrome/common/chrome_notification_types.h"
15#include "content/public/browser/notification_service.h"
16#include "googleurl/src/gurl.h"
17#include "grit/generated_resources.h"
18#include "grit/ui_strings.h"
19#include "ui/base/animation/slide_animation.h"
20#include "ui/base/keycodes/keyboard_codes.h"
21#include "ui/base/l10n/l10n_util.h"
22#include "ui/base/resource/resource_bundle.h"
23#include "ui/gfx/canvas.h"
24#include "ui/gfx/screen.h"
25#include "ui/views/bubble/bubble_border.h"
26#include "ui/views/controls/button/label_button.h"
27#include "ui/views/controls/link.h"
28#include "ui/views/controls/link_listener.h"
29#include "ui/views/layout/box_layout.h"
30#include "ui/views/layout/grid_layout.h"
31#include "ui/views/view.h"
32#include "ui/views/widget/widget.h"
33
34#if defined(OS_WIN)
35#include "ui/base/l10n/l10n_util_win.h"
36#endif
37
38// FullscreenExitView ----------------------------------------------------------
39
40namespace {
41
42// Space between the site info label and the buttons / link.
43const int kMiddlePaddingPx = 30;
44
45class ButtonView : public views::View {
46 public:
47  ButtonView(views::ButtonListener* listener, int between_button_spacing);
48  virtual ~ButtonView();
49
50  // Returns an empty size when the view is not visible.
51  virtual gfx::Size GetPreferredSize() OVERRIDE;
52
53  views::LabelButton* accept_button() const { return accept_button_; }
54  views::LabelButton* deny_button() const { return deny_button_; }
55
56 private:
57  views::LabelButton* accept_button_;
58  views::LabelButton* deny_button_;
59
60  DISALLOW_COPY_AND_ASSIGN(ButtonView);
61};
62
63ButtonView::ButtonView(views::ButtonListener* listener,
64                       int between_button_spacing)
65    : accept_button_(NULL),
66      deny_button_(NULL) {
67  accept_button_ = new views::LabelButton(listener, string16());
68  accept_button_->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON);
69  accept_button_->set_focusable(false);
70  AddChildView(accept_button_);
71
72  deny_button_ = new views::LabelButton(listener, string16());
73  deny_button_->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON);
74  deny_button_->set_focusable(false);
75  AddChildView(deny_button_);
76
77  SetLayoutManager(new views::BoxLayout(views::BoxLayout::kHorizontal, 0, 0,
78                                        between_button_spacing));
79}
80
81ButtonView::~ButtonView() {
82}
83
84gfx::Size ButtonView::GetPreferredSize() {
85  return visible() ? views::View::GetPreferredSize() : gfx::Size();
86}
87
88}  // namespace
89
90class FullscreenExitBubbleViews::FullscreenExitView
91    : public views::View,
92      public views::ButtonListener,
93      public views::LinkListener {
94 public:
95  FullscreenExitView(FullscreenExitBubbleViews* bubble,
96                     const string16& accelerator,
97                     const GURL& url,
98                     FullscreenExitBubbleType bubble_type);
99  virtual ~FullscreenExitView();
100
101  // views::ButtonListener
102  virtual void ButtonPressed(views::Button* sender,
103                             const ui::Event& event) OVERRIDE;
104
105  // views::LinkListener
106  virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
107
108  void UpdateContent(const GURL& url, FullscreenExitBubbleType bubble_type);
109
110 private:
111  FullscreenExitBubbleViews* bubble_;
112
113  // Clickable hint text for exiting fullscreen mode.
114  views::Link* link_;
115  // Instruction for exiting mouse lock.
116  views::Label* mouse_lock_exit_instruction_;
117  // Informational label: 'www.foo.com has gone fullscreen'.
118  views::Label* message_label_;
119  ButtonView* button_view_;
120  const string16 browser_fullscreen_exit_accelerator_;
121
122  DISALLOW_COPY_AND_ASSIGN(FullscreenExitView);
123};
124
125FullscreenExitBubbleViews::FullscreenExitView::FullscreenExitView(
126    FullscreenExitBubbleViews* bubble,
127    const string16& accelerator,
128    const GURL& url,
129    FullscreenExitBubbleType bubble_type)
130    : bubble_(bubble),
131      link_(NULL),
132      mouse_lock_exit_instruction_(NULL),
133      message_label_(NULL),
134      button_view_(NULL),
135      browser_fullscreen_exit_accelerator_(accelerator) {
136  views::BubbleBorder* bubble_border = new views::BubbleBorder(
137      views::BubbleBorder::NONE, views::BubbleBorder::SHADOW, SK_ColorWHITE);
138  set_background(new views::BubbleBackground(bubble_border));
139  set_border(bubble_border);
140  set_focusable(false);
141
142  ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
143  message_label_ = new views::Label();
144  message_label_->SetFont(rb.GetFont(ui::ResourceBundle::MediumFont));
145
146  mouse_lock_exit_instruction_ = new views::Label();
147  mouse_lock_exit_instruction_->set_collapse_when_hidden(true);
148  mouse_lock_exit_instruction_->SetText(bubble_->GetInstructionText());
149  mouse_lock_exit_instruction_->SetFont(
150      rb.GetFont(ui::ResourceBundle::MediumFont));
151
152  link_ = new views::Link();
153  link_->set_collapse_when_hidden(true);
154  link_->set_focusable(false);
155#if defined(OS_CHROMEOS)
156  // On CrOS, the link text doesn't change, since it doesn't show the shortcut.
157  link_->SetText(l10n_util::GetStringUTF16(IDS_EXIT_FULLSCREEN_MODE));
158#endif
159  link_->set_listener(this);
160  link_->SetFont(rb.GetFont(ui::ResourceBundle::MediumFont));
161  link_->SetPressedColor(message_label_->enabled_color());
162  link_->SetEnabledColor(message_label_->enabled_color());
163  link_->SetVisible(false);
164
165  link_->SetBackgroundColor(background()->get_color());
166  message_label_->SetBackgroundColor(background()->get_color());
167  mouse_lock_exit_instruction_->SetBackgroundColor(background()->get_color());
168
169  button_view_ = new ButtonView(this, kPaddingPx);
170  button_view_->accept_button()->SetText(bubble->GetAllowButtonText());
171
172  views::GridLayout* layout = new views::GridLayout(this);
173  views::ColumnSet* columns = layout->AddColumnSet(0);
174  columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, 0,
175                     views::GridLayout::USE_PREF, 0, 0);
176  columns->AddPaddingColumn(1, kMiddlePaddingPx);
177  columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, 0,
178                     views::GridLayout::USE_PREF, 0, 0);
179  columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, 0,
180                     views::GridLayout::USE_PREF, 0, 0);
181  columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, 0,
182                     views::GridLayout::USE_PREF, 0, 0);
183
184  layout->StartRow(0, 0);
185  layout->AddView(message_label_);
186  layout->AddView(button_view_);
187  layout->AddView(mouse_lock_exit_instruction_);
188  layout->AddView(link_);
189
190  gfx::Insets padding(kPaddingPx, kPaddingPx, kPaddingPx, kPaddingPx);
191  padding += GetInsets();
192  layout->SetInsets(padding);
193  SetLayoutManager(layout);
194
195  UpdateContent(url, bubble_type);
196}
197
198FullscreenExitBubbleViews::FullscreenExitView::~FullscreenExitView() {
199}
200
201void FullscreenExitBubbleViews::FullscreenExitView::ButtonPressed(
202    views::Button* sender,
203    const ui::Event& event) {
204  if (sender == button_view_->accept_button())
205    bubble_->Accept();
206  else
207    bubble_->Cancel();
208}
209
210void FullscreenExitBubbleViews::FullscreenExitView::LinkClicked(
211    views::Link* link,
212    int event_flags) {
213  bubble_->ToggleFullscreen();
214}
215
216void FullscreenExitBubbleViews::FullscreenExitView::UpdateContent(
217    const GURL& url,
218    FullscreenExitBubbleType bubble_type) {
219  DCHECK_NE(FEB_TYPE_NONE, bubble_type);
220
221  message_label_->SetText(bubble_->GetCurrentMessageText());
222  if (fullscreen_bubble::ShowButtonsForType(bubble_type)) {
223    link_->SetVisible(false);
224    mouse_lock_exit_instruction_->SetVisible(false);
225    button_view_->SetVisible(true);
226    button_view_->deny_button()->SetText(bubble_->GetCurrentDenyButtonText());
227    button_view_->deny_button()->set_min_size(gfx::Size());
228  } else {
229    bool link_visible = true;
230    string16 accelerator;
231    if (bubble_type == FEB_TYPE_BROWSER_FULLSCREEN_EXIT_INSTRUCTION ||
232        bubble_type == FEB_TYPE_BROWSER_EXTENSION_FULLSCREEN_EXIT_INSTRUCTION) {
233      accelerator = browser_fullscreen_exit_accelerator_;
234    } else if (bubble_type == FEB_TYPE_FULLSCREEN_EXIT_INSTRUCTION) {
235      accelerator = l10n_util::GetStringUTF16(IDS_APP_ESC_KEY);
236    } else {
237      link_visible = false;
238    }
239#if !defined(OS_CHROMEOS)
240    if (link_visible) {
241      link_->SetText(
242          l10n_util::GetStringUTF16(IDS_EXIT_FULLSCREEN_MODE) +
243          UTF8ToUTF16(" ") +
244          l10n_util::GetStringFUTF16(IDS_EXIT_FULLSCREEN_MODE_ACCELERATOR,
245              accelerator));
246    }
247#endif
248    link_->SetVisible(link_visible);
249    mouse_lock_exit_instruction_->SetVisible(!link_visible);
250    button_view_->SetVisible(false);
251  }
252}
253
254
255// FullscreenExitBubbleViews ---------------------------------------------------
256
257FullscreenExitBubbleViews::FullscreenExitBubbleViews(
258    BrowserView* browser_view,
259    const GURL& url,
260    FullscreenExitBubbleType bubble_type)
261    : FullscreenExitBubble(browser_view->browser(), url, bubble_type),
262      browser_view_(browser_view),
263      popup_(NULL),
264      animation_(new ui::SlideAnimation(this)),
265      animated_attribute_(ANIMATED_ATTRIBUTE_BOUNDS) {
266  animation_->Reset(1);
267
268  // Create the contents view.
269  ui::Accelerator accelerator(ui::VKEY_UNKNOWN, ui::EF_NONE);
270  bool got_accelerator = browser_view_->GetWidget()->GetAccelerator(
271      IDC_FULLSCREEN, &accelerator);
272  DCHECK(got_accelerator);
273  view_ = new FullscreenExitView(
274      this, accelerator.GetShortcutText(), url, bubble_type_);
275
276  // TODO(yzshen): Change to use the new views bubble, BubbleDelegateView.
277  // Initialize the popup.
278  popup_ = new views::Widget;
279  views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP);
280  params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
281  params.can_activate = false;
282  params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
283  params.parent = browser_view_->GetWidget()->GetNativeView();
284  params.bounds = GetPopupRect(false);
285  popup_->Init(params);
286  gfx::Size size = GetPopupRect(true).size();
287  popup_->SetContentsView(view_);
288  // We set layout manager to NULL to prevent the widget from sizing its
289  // contents to the same size as itself. This prevents the widget contents from
290  // shrinking while we animate the height of the popup to give the impression
291  // that it is sliding off the top of the screen.
292  popup_->GetRootView()->SetLayoutManager(NULL);
293  view_->SetBounds(0, 0, size.width(), size.height());
294  popup_->Show();  // This does not activate the popup.
295
296  popup_->AddObserver(this);
297
298  registrar_.Add(
299      this,
300      chrome::NOTIFICATION_FULLSCREEN_CHANGED,
301      content::Source<FullscreenController>(
302          browser_view_->browser()->fullscreen_controller()));
303
304  UpdateForImmersiveState();
305}
306
307FullscreenExitBubbleViews::~FullscreenExitBubbleViews() {
308  popup_->RemoveObserver(this);
309  ImmersiveModeController* immersive_controller =
310      browser_view_->immersive_mode_controller();
311  // |immersive_controller| may already have been destroyed.
312  if (immersive_controller)
313    immersive_controller->UnanchorWidgetFromTopContainer(popup_);
314
315  // This is tricky.  We may be in an ATL message handler stack, in which case
316  // the popup cannot be deleted yet.  We also can't set the popup's ownership
317  // model to NATIVE_WIDGET_OWNS_WIDGET because if the user closed the last tab
318  // while in fullscreen mode, Windows has already destroyed the popup HWND by
319  // the time we get here, and thus either the popup will already have been
320  // deleted (if we set this in our constructor) or the popup will never get
321  // another OnFinalMessage() call (if not, as currently).  So instead, we tell
322  // the popup to synchronously hide, and then asynchronously close and delete
323  // itself.
324  popup_->Close();
325  base::MessageLoop::current()->DeleteSoon(FROM_HERE, popup_);
326}
327
328void FullscreenExitBubbleViews::UpdateContent(
329    const GURL& url,
330    FullscreenExitBubbleType bubble_type) {
331  DCHECK_NE(FEB_TYPE_NONE, bubble_type);
332  if (bubble_type_ == bubble_type && url_ == url)
333    return;
334
335  url_ = url;
336  bubble_type_ = bubble_type;
337  view_->UpdateContent(url_, bubble_type_);
338
339  gfx::Size size = GetPopupRect(true).size();
340  view_->SetSize(size);
341  popup_->SetBounds(GetPopupRect(false));
342  Show();
343
344  // Stop watching the mouse even if UpdateMouseWatcher() will start watching
345  // it again so that the popup with the new content is visible for at least
346  // |kInitialDelayMs|.
347  StopWatchingMouse();
348
349  UpdateMouseWatcher();
350}
351
352void FullscreenExitBubbleViews::UpdateMouseWatcher() {
353  bool should_watch_mouse = false;
354  if (popup_->IsVisible())
355    should_watch_mouse = !fullscreen_bubble::ShowButtonsForType(bubble_type_);
356  else
357    should_watch_mouse = CanMouseTriggerSlideIn();
358
359  if (should_watch_mouse == IsWatchingMouse())
360    return;
361
362  if (should_watch_mouse)
363    StartWatchingMouse();
364  else
365    StopWatchingMouse();
366}
367
368void FullscreenExitBubbleViews::UpdateForImmersiveState() {
369  ImmersiveModeController* immersive_controller =
370      browser_view_->immersive_mode_controller();
371
372  AnimatedAttribute expected_animated_attribute =
373      immersive_controller->IsEnabled() ?
374          ANIMATED_ATTRIBUTE_OPACITY : ANIMATED_ATTRIBUTE_BOUNDS;
375  if (animated_attribute_ != expected_animated_attribute) {
376    // If an animation is currently in progress, skip to the end because
377    // switching the animated attribute midway through the animation looks
378    // weird.
379    animation_->End();
380
381    animated_attribute_ = expected_animated_attribute;
382
383    // We may have finished hiding |popup_|. However, the bounds animation
384    // assumes |popup_| has the opacity when it is fully shown and the opacity
385    // animation assumes |popup_| has the bounds when |popup_| is fully shown.
386    if (animated_attribute_ == ANIMATED_ATTRIBUTE_BOUNDS)
387      popup_->SetOpacity(255);
388    else
389      UpdateBounds();
390  }
391
392  if (immersive_controller->IsEnabled()) {
393    // In immersive mode, anchor |popup_| to the top container. This repositions
394    // the top container so that it stays |kPopupTopPx| below the top container
395    // when the top container animates its position (top container reveals /
396    // unreveals) or the top container bounds change (eg bookmark bar is shown).
397    immersive_controller->AnchorWidgetToTopContainer(popup_, kPopupTopPx);
398  } else {
399    immersive_controller->UnanchorWidgetFromTopContainer(popup_);
400  }
401
402  UpdateMouseWatcher();
403}
404
405void FullscreenExitBubbleViews::UpdateBounds() {
406  gfx::Rect popup_rect(GetPopupRect(false));
407  if (popup_rect.IsEmpty()) {
408    popup_->Hide();
409  } else {
410    popup_->SetBounds(popup_rect);
411    view_->SetY(popup_rect.height() - view_->height());
412    popup_->Show();
413  }
414}
415
416views::View* FullscreenExitBubbleViews::GetBrowserRootView() const {
417  return browser_view_->GetWidget()->GetRootView();
418}
419
420void FullscreenExitBubbleViews::AnimationProgressed(
421    const ui::Animation* animation) {
422  if (animated_attribute_ == ANIMATED_ATTRIBUTE_OPACITY) {
423    int opacity = animation_->CurrentValueBetween(0, 255);
424    if (opacity == 0) {
425      popup_->Hide();
426    } else {
427      popup_->Show();
428      popup_->SetOpacity(opacity);
429    }
430  } else {
431    UpdateBounds();
432  }
433}
434
435void FullscreenExitBubbleViews::AnimationEnded(
436    const ui::Animation* animation) {
437  AnimationProgressed(animation);
438}
439
440gfx::Rect FullscreenExitBubbleViews::GetPopupRect(
441    bool ignore_animation_state) const {
442  gfx::Size size(view_->GetPreferredSize());
443  // NOTE: don't use the bounds of the root_view_. On linux GTK changing window
444  // size is async. Instead we use the size of the screen.
445  gfx::Screen* screen =
446      gfx::Screen::GetScreenFor(browser_view_->GetWidget()->GetNativeView());
447  gfx::Rect screen_bounds = screen->GetDisplayNearestWindow(
448      browser_view_->GetWidget()->GetNativeView()).bounds();
449  int x = screen_bounds.x() + (screen_bounds.width() - size.width()) / 2;
450
451  int top_container_bottom = screen_bounds.y();
452  if (browser_view_->immersive_mode_controller()->IsEnabled()) {
453    // Skip querying the top container height in non-immersive fullscreen
454    // because:
455    // - The top container height is always zero in non-immersive fullscreen.
456    // - Querying the top container height may return the height before entering
457    //   fullscreen because layout is disabled while entering fullscreen.
458    // A visual glitch due to the delayed layout is avoided in immersive
459    // fullscreen because entering fullscreen starts with the top container
460    // revealed. When revealed, the top container has the same height as before
461    // entering fullscreen.
462    top_container_bottom =
463        browser_view_->top_container()->GetBoundsInScreen().bottom();
464  }
465  int y = top_container_bottom + kPopupTopPx;
466
467  if (!ignore_animation_state &&
468      animated_attribute_ == ANIMATED_ATTRIBUTE_BOUNDS) {
469    int total_height = size.height() + kPopupTopPx;
470    int popup_bottom = animation_->CurrentValueBetween(total_height, 0);
471    int y_offset = std::min(popup_bottom, kPopupTopPx);
472    size.set_height(size.height() - popup_bottom + y_offset);
473    y -= y_offset;
474  }
475  return gfx::Rect(gfx::Point(x, y), size);
476}
477
478gfx::Point FullscreenExitBubbleViews::GetCursorScreenPoint() {
479  gfx::Point cursor_pos = gfx::Screen::GetScreenFor(
480      browser_view_->GetWidget()->GetNativeView())->GetCursorScreenPoint();
481  views::View::ConvertPointToTarget(NULL, GetBrowserRootView(), &cursor_pos);
482  return cursor_pos;
483}
484
485bool FullscreenExitBubbleViews::WindowContainsPoint(gfx::Point pos) {
486  return GetBrowserRootView()->HitTestPoint(pos);
487}
488
489bool FullscreenExitBubbleViews::IsWindowActive() {
490  return browser_view_->GetWidget()->IsActive();
491}
492
493void FullscreenExitBubbleViews::Hide() {
494  animation_->SetSlideDuration(kSlideOutDurationMs);
495  animation_->Hide();
496}
497
498void FullscreenExitBubbleViews::Show() {
499  animation_->SetSlideDuration(kSlideInDurationMs);
500  animation_->Show();
501}
502
503bool FullscreenExitBubbleViews::IsAnimating() {
504  return animation_->is_animating();
505}
506
507bool FullscreenExitBubbleViews::CanMouseTriggerSlideIn() const {
508  return !browser_view_->immersive_mode_controller()->IsEnabled();
509}
510
511void FullscreenExitBubbleViews::Observe(
512    int type,
513    const content::NotificationSource& source,
514    const content::NotificationDetails& details) {
515  DCHECK_EQ(chrome::NOTIFICATION_FULLSCREEN_CHANGED, type);
516  UpdateForImmersiveState();
517}
518
519void FullscreenExitBubbleViews::OnWidgetVisibilityChanged(
520    views::Widget* widget,
521    bool visible) {
522  UpdateMouseWatcher();
523}
524