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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
|
// Copyright (c) 2011 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/autocomplete/autocomplete_popup_contents_view.h"
#include "base/compiler_specific.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autocomplete/autocomplete_edit_view.h"
#include "chrome/browser/autocomplete/autocomplete_popup_model.h"
#include "chrome/browser/instant/instant_confirm_dialog.h"
#include "chrome/browser/instant/promo_counter.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/views/autocomplete/autocomplete_result_view.h"
#include "chrome/browser/ui/views/bubble/bubble_border.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "third_party/skia/include/core/SkShader.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/theme_provider.h"
#include "ui/gfx/canvas_skia.h"
#include "ui/gfx/insets.h"
#include "ui/gfx/path.h"
#include "unicode/ubidi.h"
#include "views/controls/button/text_button.h"
#include "views/controls/label.h"
#include "views/layout/grid_layout.h"
#include "views/layout/layout_constants.h"
#include "views/painter.h"
#include "views/widget/widget.h"
#include "views/window/window.h"
#if defined(OS_WIN)
#include <commctrl.h>
#include <dwmapi.h>
#include <objidl.h>
#include "base/win/scoped_gdi_object.h"
#include "views/widget/widget_win.h"
#endif
#if defined(TOOLKIT_USES_GTK)
#include "ui/gfx/skia_utils_gtk.h"
#endif
namespace {
const SkAlpha kGlassPopupAlpha = 240;
const SkAlpha kOpaquePopupAlpha = 255;
// The size delta between the font used for the edit and the result rows. Passed
// to gfx::Font::DeriveFont.
#if defined(OS_CHROMEOS)
// Don't adjust the size on Chrome OS (http://crbug.com/61433).
const int kEditFontAdjust = 0;
#else
const int kEditFontAdjust = -1;
#endif
// Horizontal padding between the buttons on the opt in promo.
const int kOptInButtonPadding = 2;
// Padding around the opt in view.
const int kOptInLeftPadding = 12;
const int kOptInRightPadding = 10;
const int kOptInTopPadding = 6;
const int kOptInBottomPadding = 5;
// Horizontal/Vertical inset of the promo background.
const int kOptInBackgroundHInset = 6;
const int kOptInBackgroundVInset = 2;
// Border for instant opt-in buttons. Consists of two 9 patch painters: one for
// the normal state, the other for the pressed state.
class OptInButtonBorder : public views::Border {
public:
OptInButtonBorder() {
border_painter_.reset(CreatePainter(IDR_OPT_IN_BUTTON));
border_pushed_painter_.reset(CreatePainter(IDR_OPT_IN_BUTTON_P));
}
virtual void Paint(const views::View& view, gfx::Canvas* canvas) const {
views::Painter* painter;
if (static_cast<const views::CustomButton&>(view).state() ==
views::CustomButton::BS_PUSHED) {
painter = border_pushed_painter_.get();
} else {
painter = border_painter_.get();
}
painter->Paint(view.width(), view.height(), canvas);
}
virtual void GetInsets(gfx::Insets* insets) const {
insets->Set(3, 8, 3, 8);
}
private:
// Creates 9 patch painter from the image with the id |image_id|.
views::Painter* CreatePainter(int image_id) {
SkBitmap* image =
ResourceBundle::GetSharedInstance().GetBitmapNamed(image_id);
int w = image->width() / 2;
if (image->width() % 2 == 0)
w--;
int h = image->height() / 2;
if (image->height() % 2 == 0)
h--;
gfx::Insets insets(h, w, h, w);
return views::Painter::CreateImagePainter(*image, insets, true);
}
scoped_ptr<views::Painter> border_painter_;
scoped_ptr<views::Painter> border_pushed_painter_;
DISALLOW_COPY_AND_ASSIGN(OptInButtonBorder);
};
} // namespace
class AutocompletePopupContentsView::InstantOptInView
: public views::View,
public views::ButtonListener {
public:
InstantOptInView(AutocompletePopupContentsView* contents_view,
const gfx::Font& label_font,
const gfx::Font& button_font)
: contents_view_(contents_view),
bg_painter_(views::Painter::CreateVerticalGradient(
SkColorSetRGB(255, 242, 183),
SkColorSetRGB(250, 230, 145))) {
views::Label* label = new views::Label(
UTF16ToWide(l10n_util::GetStringUTF16(IDS_INSTANT_OPT_IN_LABEL)));
label->SetFont(label_font);
views::GridLayout* layout = new views::GridLayout(this);
layout->SetInsets(kOptInTopPadding, kOptInLeftPadding,
kOptInBottomPadding, kOptInRightPadding);
SetLayoutManager(layout);
const int first_column_set = 1;
views::GridLayout::Alignment v_align = views::GridLayout::CENTER;
views::ColumnSet* column_set = layout->AddColumnSet(first_column_set);
column_set->AddColumn(views::GridLayout::TRAILING, v_align, 1,
views::GridLayout::USE_PREF, 0, 0);
column_set->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
column_set->AddColumn(views::GridLayout::CENTER, v_align, 0,
views::GridLayout::USE_PREF, 0, 0);
column_set->AddPaddingColumn(0, kOptInButtonPadding);
column_set->AddColumn(views::GridLayout::CENTER, v_align, 0,
views::GridLayout::USE_PREF, 0, 0);
column_set->LinkColumnSizes(2, 4, -1);
layout->StartRow(0, first_column_set);
layout->AddView(label);
layout->AddView(CreateButton(IDS_INSTANT_OPT_IN_ENABLE, button_font));
layout->AddView(CreateButton(IDS_INSTANT_OPT_IN_NO_THANKS, button_font));
}
virtual void ButtonPressed(views::Button* sender, const views::Event& event) {
contents_view_->UserPressedOptIn(
sender->tag() == IDS_INSTANT_OPT_IN_ENABLE);
// WARNING: we've been deleted.
}
virtual void OnPaint(gfx::Canvas* canvas) {
canvas->Save();
canvas->TranslateInt(kOptInBackgroundHInset, kOptInBackgroundVInset);
bg_painter_->Paint(width() - kOptInBackgroundHInset * 2,
height() - kOptInBackgroundVInset * 2, canvas);
canvas->DrawRectInt(ResourceBundle::toolbar_separator_color, 0, 0,
width() - kOptInBackgroundHInset * 2,
height() - kOptInBackgroundVInset * 2);
canvas->Restore();
}
private:
// Creates and returns a button configured for the opt-in promo.
views::View* CreateButton(int id, const gfx::Font& font) {
// NOTE: we can't use NativeButton as the popup is a layered window and
// native buttons don't draw in layered windows.
// TODO: these buttons look crap. Figure out the right border/background to
// use.
views::TextButton* button =
new views::TextButton(this, UTF16ToWide(l10n_util::GetStringUTF16(id)));
button->set_border(new OptInButtonBorder());
button->SetNormalHasBorder(true);
button->set_tag(id);
button->SetFont(font);
button->set_animate_on_state_change(false);
return button;
}
AutocompletePopupContentsView* contents_view_;
scoped_ptr<views::Painter> bg_painter_;
DISALLOW_COPY_AND_ASSIGN(InstantOptInView);
};
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, public:
AutocompletePopupContentsView::AutocompletePopupContentsView(
const gfx::Font& font,
AutocompleteEditView* edit_view,
AutocompleteEditModel* edit_model,
Profile* profile,
const views::View* location_bar)
: model_(new AutocompletePopupModel(this, edit_model, profile)),
opt_in_view_(NULL),
edit_view_(edit_view),
location_bar_(location_bar),
result_font_(font.DeriveFont(kEditFontAdjust)),
result_bold_font_(result_font_.DeriveFont(0, gfx::Font::BOLD)),
ignore_mouse_drag_(false),
ALLOW_THIS_IN_INITIALIZER_LIST(size_animation_(this)) {
// The following little dance is required because set_border() requires a
// pointer to a non-const object.
BubbleBorder* bubble_border = new BubbleBorder(BubbleBorder::NONE);
bubble_border_ = bubble_border;
set_border(bubble_border);
// The contents is owned by the LocationBarView.
set_parent_owned(false);
}
AutocompletePopupContentsView::~AutocompletePopupContentsView() {
// We don't need to do anything with |popup_| here. The OS either has already
// closed the window, in which case it's been deleted, or it will soon, in
// which case there's nothing we need to do.
}
gfx::Rect AutocompletePopupContentsView::GetPopupBounds() const {
if (!size_animation_.is_animating())
return target_bounds_;
gfx::Rect current_frame_bounds = start_bounds_;
int total_height_delta = target_bounds_.height() - start_bounds_.height();
// Round |current_height_delta| instead of truncating so we won't leave single
// white pixels at the bottom of the popup as long when animating very small
// height differences.
int current_height_delta = static_cast<int>(
size_animation_.GetCurrentValue() * total_height_delta - 0.5);
current_frame_bounds.set_height(
current_frame_bounds.height() + current_height_delta);
return current_frame_bounds;
}
void AutocompletePopupContentsView::LayoutChildren() {
gfx::Rect contents_rect = GetContentsBounds();
int top = contents_rect.y();
for (int i = 0; i < child_count(); ++i) {
View* v = GetChildViewAt(i);
if (v->IsVisible()) {
v->SetBounds(contents_rect.x(), top, contents_rect.width(),
v->GetPreferredSize().height());
top = v->bounds().bottom();
}
}
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, AutocompletePopupView overrides:
bool AutocompletePopupContentsView::IsOpen() const {
return (popup_ != NULL);
}
void AutocompletePopupContentsView::InvalidateLine(size_t line) {
GetChildViewAt(static_cast<int>(line))->SchedulePaint();
}
void AutocompletePopupContentsView::UpdatePopupAppearance() {
if (model_->result().empty()) {
// No matches, close any existing popup.
if (popup_ != NULL) {
size_animation_.Stop();
// NOTE: Do NOT use CloseNow() here, as we may be deep in a callstack
// triggered by the popup receiving a message (e.g. LBUTTONUP), and
// destroying the popup would cause us to read garbage when we unwind back
// to that level.
popup_->Close(); // This will eventually delete the popup.
popup_.reset();
}
return;
}
// Update the match cached by each row, in the process of doing so make sure
// we have enough row views.
size_t child_rv_count = child_count();
if (opt_in_view_) {
DCHECK(child_rv_count > 0);
child_rv_count--;
}
for (size_t i = 0; i < model_->result().size(); ++i) {
AutocompleteResultView* result_view;
if (i >= child_rv_count) {
result_view =
CreateResultView(this, i, result_font_, result_bold_font_);
AddChildViewAt(result_view, static_cast<int>(i));
} else {
result_view = static_cast<AutocompleteResultView*>(GetChildViewAt(i));
result_view->SetVisible(true);
}
result_view->SetMatch(GetMatchAtIndex(i));
}
for (size_t i = model_->result().size(); i < child_rv_count; ++i)
GetChildViewAt(i)->SetVisible(false);
PromoCounter* counter = model_->profile()->GetInstantPromoCounter();
if (!opt_in_view_ && counter && counter->ShouldShow(base::Time::Now())) {
opt_in_view_ = new InstantOptInView(this, result_bold_font_, result_font_);
AddChildView(opt_in_view_);
} else if (opt_in_view_ && (!counter ||
!counter->ShouldShow(base::Time::Now()))) {
delete opt_in_view_;
opt_in_view_ = NULL;
}
gfx::Rect new_target_bounds = CalculateTargetBounds(CalculatePopupHeight());
// If we're animating and our target height changes, reset the animation.
// NOTE: If we just reset blindly on _every_ update, then when the user types
// rapidly we could get "stuck" trying repeatedly to animate shrinking by the
// last few pixels to get to one visible result.
if (new_target_bounds.height() != target_bounds_.height())
size_animation_.Reset();
target_bounds_ = new_target_bounds;
if (popup_ == NULL) {
// If the popup is currently closed, we need to create it.
popup_ = (new AutocompletePopupClass)->AsWeakPtr();
views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP);
params.can_activate = false;
params.transparent = true;
params.parent = location_bar_->GetWidget()->GetNativeView();
params.bounds = GetPopupBounds();
popup_->GetWidget()->Init(params);
popup_->SetContentsView(this);
popup_->MoveAbove(popup_->GetRelativeWindowForPopup(
edit_view_->GetNativeView()));
popup_->Show();
} else {
// Animate the popup shrinking, but don't animate growing larger since that
// would make the popup feel less responsive.
start_bounds_ = GetWidget()->GetWindowScreenBounds();
if (target_bounds_.height() < start_bounds_.height())
size_animation_.Show();
else
start_bounds_ = target_bounds_;
popup_->SetBounds(GetPopupBounds());
}
SchedulePaint();
}
gfx::Rect AutocompletePopupContentsView::GetTargetBounds() {
return target_bounds_;
}
void AutocompletePopupContentsView::PaintUpdatesNow() {
// TODO(beng): remove this from the interface.
}
void AutocompletePopupContentsView::OnDragCanceled() {
ignore_mouse_drag_ = true;
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, AutocompleteResultViewModel implementation:
bool AutocompletePopupContentsView::IsSelectedIndex(size_t index) const {
return HasMatchAt(index) ? index == model_->selected_line() : false;
}
bool AutocompletePopupContentsView::IsHoveredIndex(size_t index) const {
return HasMatchAt(index) ? index == model_->hovered_line() : false;
}
const SkBitmap* AutocompletePopupContentsView::GetIconIfExtensionMatch(
size_t index) const {
if (!HasMatchAt(index))
return NULL;
return model_->GetIconIfExtensionMatch(GetMatchAtIndex(index));
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, AnimationDelegate implementation:
void AutocompletePopupContentsView::AnimationProgressed(
const ui::Animation* animation) {
// We should only be running the animation when the popup is already visible.
DCHECK(popup_ != NULL);
popup_->SetBounds(GetPopupBounds());
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, views::View overrides:
void AutocompletePopupContentsView::Layout() {
UpdateBlurRegion();
// Size our children to the available content area.
LayoutChildren();
// We need to manually schedule a paint here since we are a layered window and
// won't implicitly require painting until we ask for one.
SchedulePaint();
}
views::View* AutocompletePopupContentsView::GetEventHandlerForPoint(
const gfx::Point& point) {
// If there is no opt in view, then we want all mouse events. Otherwise let
// any descendants of the opt-in view get mouse events.
if (!opt_in_view_)
return this;
views::View* child = views::View::GetEventHandlerForPoint(point);
views::View* ancestor = child;
while (ancestor && ancestor != opt_in_view_)
ancestor = ancestor->parent();
return ancestor ? child : this;
}
bool AutocompletePopupContentsView::OnMousePressed(
const views::MouseEvent& event) {
ignore_mouse_drag_ = false; // See comment on |ignore_mouse_drag_| in header.
if (event.IsLeftMouseButton() || event.IsMiddleMouseButton()) {
size_t index = GetIndexForPoint(event.location());
model_->SetHoveredLine(index);
if (HasMatchAt(index) && event.IsLeftMouseButton())
model_->SetSelectedLine(index, false, false);
}
return true;
}
bool AutocompletePopupContentsView::OnMouseDragged(
const views::MouseEvent& event) {
if (event.IsLeftMouseButton() || event.IsMiddleMouseButton()) {
size_t index = GetIndexForPoint(event.location());
model_->SetHoveredLine(index);
if (!ignore_mouse_drag_ && HasMatchAt(index) && event.IsLeftMouseButton())
model_->SetSelectedLine(index, false, false);
}
return true;
}
void AutocompletePopupContentsView::OnMouseReleased(
const views::MouseEvent& event) {
if (ignore_mouse_drag_) {
OnMouseCaptureLost();
return;
}
size_t index = GetIndexForPoint(event.location());
if (event.IsOnlyMiddleMouseButton())
OpenIndex(index, NEW_BACKGROUND_TAB);
else if (event.IsOnlyLeftMouseButton())
OpenIndex(index, CURRENT_TAB);
}
void AutocompletePopupContentsView::OnMouseCaptureLost() {
ignore_mouse_drag_ = false;
}
void AutocompletePopupContentsView::OnMouseMoved(
const views::MouseEvent& event) {
model_->SetHoveredLine(GetIndexForPoint(event.location()));
}
void AutocompletePopupContentsView::OnMouseEntered(
const views::MouseEvent& event) {
model_->SetHoveredLine(GetIndexForPoint(event.location()));
}
void AutocompletePopupContentsView::OnMouseExited(
const views::MouseEvent& event) {
model_->SetHoveredLine(AutocompletePopupModel::kNoMatch);
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, protected:
void AutocompletePopupContentsView::PaintResultViews(gfx::CanvasSkia* canvas) {
canvas->drawColor(AutocompleteResultView::GetColor(
AutocompleteResultView::NORMAL, AutocompleteResultView::BACKGROUND));
View::PaintChildren(canvas);
}
int AutocompletePopupContentsView::CalculatePopupHeight() {
DCHECK_GE(static_cast<size_t>(child_count()), model_->result().size());
int popup_height = 0;
for (size_t i = 0; i < model_->result().size(); ++i)
popup_height += GetChildViewAt(i)->GetPreferredSize().height();
return popup_height +
(opt_in_view_ ? opt_in_view_->GetPreferredSize().height() : 0);
}
AutocompleteResultView* AutocompletePopupContentsView::CreateResultView(
AutocompleteResultViewModel* model,
int model_index,
const gfx::Font& font,
const gfx::Font& bold_font) {
return new AutocompleteResultView(model, model_index, font, bold_font);
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, views::View overrides, protected:
void AutocompletePopupContentsView::OnPaint(gfx::Canvas* canvas) {
// We paint our children in an unconventional way.
//
// Because the border of this view creates an anti-aliased round-rect region
// for the contents, we need to render our rectangular result child views into
// this round rect region. We can't use a simple clip because clipping is
// 1-bit and we get nasty jagged edges.
//
// Instead, we paint all our children into a second canvas and use that as a
// shader to fill a path representing the round-rect clipping region. This
// yields a nice anti-aliased edge.
gfx::CanvasSkia contents_canvas(width(), height(), true);
PaintResultViews(&contents_canvas);
// We want the contents background to be slightly transparent so we can see
// the blurry glass effect on DWM systems behind. We do this _after_ we paint
// the children since they paint text, and GDI will reset this alpha data if
// we paint text after this call.
MakeCanvasTransparent(&contents_canvas);
// Now paint the contents of the contents canvas into the actual canvas.
SkPaint paint;
paint.setAntiAlias(true);
SkShader* shader = SkShader::CreateBitmapShader(
contents_canvas.getDevice()->accessBitmap(false),
SkShader::kClamp_TileMode,
SkShader::kClamp_TileMode);
paint.setShader(shader);
shader->unref();
gfx::Path path;
MakeContentsPath(&path, GetContentsBounds());
canvas->AsCanvasSkia()->drawPath(path, paint);
// Now we paint the border, so it will be alpha-blended atop the contents.
// This looks slightly better in the corners than drawing the contents atop
// the border.
OnPaintBorder(canvas);
}
void AutocompletePopupContentsView::PaintChildren(gfx::Canvas* canvas) {
// We paint our children inside OnPaint().
}
////////////////////////////////////////////////////////////////////////////////
// AutocompletePopupContentsView, private:
bool AutocompletePopupContentsView::HasMatchAt(size_t index) const {
return index < model_->result().size();
}
const AutocompleteMatch& AutocompletePopupContentsView::GetMatchAtIndex(
size_t index) const {
return model_->result().match_at(index);
}
void AutocompletePopupContentsView::MakeContentsPath(
gfx::Path* path,
const gfx::Rect& bounding_rect) {
SkRect rect;
rect.set(SkIntToScalar(bounding_rect.x()),
SkIntToScalar(bounding_rect.y()),
SkIntToScalar(bounding_rect.right()),
SkIntToScalar(bounding_rect.bottom()));
SkScalar radius = SkIntToScalar(BubbleBorder::GetCornerRadius());
path->addRoundRect(rect, radius, radius);
}
void AutocompletePopupContentsView::UpdateBlurRegion() {
#if defined(OS_WIN)
// We only support background blurring on Vista with Aero-Glass enabled.
if (!views::WidgetWin::IsAeroGlassEnabled() || !GetWidget())
return;
// Provide a blurred background effect within the contents region of the
// popup.
DWM_BLURBEHIND bb = {0};
bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION;
bb.fEnable = true;
// Translate the contents rect into widget coordinates, since that's what
// DwmEnableBlurBehindWindow expects a region in.
gfx::Rect contents_rect = GetContentsBounds();
gfx::Point origin(contents_rect.origin());
views::View::ConvertPointToWidget(this, &origin);
contents_rect.set_origin(origin);
gfx::Path contents_path;
MakeContentsPath(&contents_path, contents_rect);
base::win::ScopedGDIObject<HRGN> popup_region;
popup_region.Set(contents_path.CreateNativeRegion());
bb.hRgnBlur = popup_region.Get();
DwmEnableBlurBehindWindow(GetWidget()->GetNativeView(), &bb);
#endif
}
void AutocompletePopupContentsView::MakeCanvasTransparent(
gfx::Canvas* canvas) {
// Allow the window blur effect to show through the popup background.
SkAlpha alpha = GetThemeProvider()->ShouldUseNativeFrame() ?
kGlassPopupAlpha : kOpaquePopupAlpha;
canvas->AsCanvasSkia()->drawColor(SkColorSetA(
AutocompleteResultView::GetColor(AutocompleteResultView::NORMAL,
AutocompleteResultView::BACKGROUND), alpha), SkXfermode::kDstIn_Mode);
}
void AutocompletePopupContentsView::OpenIndex(
size_t index,
WindowOpenDisposition disposition) {
if (!HasMatchAt(index))
return;
const AutocompleteMatch& match = model_->result().match_at(index);
// OpenURL() may close the popup, which will clear the result set and, by
// extension, |match| and its contents. So copy the relevant strings out to
// make sure they stay alive until the call completes.
const GURL url(match.destination_url);
string16 keyword;
const bool is_keyword_hint = model_->GetKeywordForMatch(match, &keyword);
edit_view_->OpenURL(url, disposition, match.transition, GURL(), index,
is_keyword_hint ? string16() : keyword);
}
size_t AutocompletePopupContentsView::GetIndexForPoint(
const gfx::Point& point) {
if (!HitTest(point))
return AutocompletePopupModel::kNoMatch;
int nb_match = model_->result().size();
DCHECK(nb_match <= child_count());
for (int i = 0; i < nb_match; ++i) {
views::View* child = GetChildViewAt(i);
gfx::Point point_in_child_coords(point);
View::ConvertPointToView(this, child, &point_in_child_coords);
if (child->HitTest(point_in_child_coords))
return i;
}
return AutocompletePopupModel::kNoMatch;
}
gfx::Rect AutocompletePopupContentsView::CalculateTargetBounds(int h) {
gfx::Rect location_bar_bounds(location_bar_->GetContentsBounds());
const views::Border* border = location_bar_->border();
if (border) {
// Adjust for the border so that the bubble and location bar borders are
// aligned.
gfx::Insets insets;
border->GetInsets(&insets);
location_bar_bounds.Inset(insets.left(), 0, insets.right(), 0);
} else {
// The normal location bar is drawn using a background graphic that includes
// the border, so we inset by enough to make the edges line up, and the
// bubble appear at the same height as the Star bubble.
location_bar_bounds.Inset(LocationBarView::kNormalHorizontalEdgeThickness,
0);
}
gfx::Point location_bar_origin(location_bar_bounds.origin());
views::View::ConvertPointToScreen(location_bar_, &location_bar_origin);
location_bar_bounds.set_origin(location_bar_origin);
return bubble_border_->GetBounds(
location_bar_bounds, gfx::Size(location_bar_bounds.width(), h));
}
void AutocompletePopupContentsView::UserPressedOptIn(bool opt_in) {
delete opt_in_view_;
opt_in_view_ = NULL;
PromoCounter* counter = model_->profile()->GetInstantPromoCounter();
DCHECK(counter);
counter->Hide();
if (opt_in) {
browser::ShowInstantConfirmDialogIfNecessary(
location_bar_->GetWindow()->GetNativeWindow(), model_->profile());
}
UpdatePopupAppearance();
}
|