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
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
|
// Copyright (c) 2010 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/views/tabs/tab_renderer.h"
#include <limits>
#include "app/animation_container.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "app/slide_animation.h"
#include "app/throb_animation.h"
#include "base/string_util.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/browser_theme_provider.h"
#include "chrome/browser/defaults.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/tabs/tab_strip_model.h"
#include "gfx/canvas.h"
#include "gfx/favicon_size.h"
#include "gfx/font.h"
#include "gfx/skbitmap_operations.h"
#include "grit/app_resources.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "views/widget/widget.h"
#include "views/window/non_client_view.h"
#include "views/window/window.h"
#ifdef WIN32
#include "app/win_util.h"
#endif
static const int kLeftPadding = 16;
static const int kTopPadding = 6;
static const int kRightPadding = 15;
static const int kBottomPadding = 5;
static const int kDropShadowHeight = 2;
static const int kToolbarOverlap = 1;
static const int kFavIconTitleSpacing = 4;
static const int kTitleCloseButtonSpacing = 5;
static const int kStandardTitleWidth = 175;
static const int kCloseButtonVertFuzz = 0;
static const int kCloseButtonHorzFuzz = 5;
static const int kSelectedTitleColor = SK_ColorBLACK;
// Vertical adjustment to the favicon when the tab has a large icon.
static const int kAppTapFaviconVerticalAdjustment = 2;
// When a non-mini-tab becomes a mini-tab the width of the tab animates. If
// the width of a mini-tab is >= kMiniTabRendererAsNormalTabWidth then the tab
// is rendered as a normal tab. This is done to avoid having the title
// immediately disappear when transitioning a tab from normal to mini-tab.
static const int kMiniTabRendererAsNormalTabWidth =
browser_defaults::kMiniTabWidth + 30;
// How long the hover state takes.
static const int kHoverDurationMs = 90;
// How long the pulse throb takes.
static const int kPulseDurationMs = 200;
// How opaque to make the hover state (out of 1).
static const double kHoverOpacity = 0.33;
// TODO(beng): (Cleanup) This stuff should move onto the class.
static gfx::Font* title_font = NULL;
static int title_font_height = 0;
static SkBitmap* close_button_n = NULL;
static SkBitmap* close_button_m = NULL;
static SkBitmap* close_button_h = NULL;
static SkBitmap* close_button_p = NULL;
static int close_button_height = 0;
static int close_button_width = 0;
static SkBitmap* waiting_animation_frames = NULL;
static SkBitmap* loading_animation_frames = NULL;
static SkBitmap* crashed_fav_icon = NULL;
static int loading_animation_frame_count = 0;
static int waiting_animation_frame_count = 0;
static int waiting_to_loading_frame_count_ratio = 0;
// Used when |render_as_new_tab| is true.
static SkBitmap* new_tab_mask = NULL;
static SkBitmap* new_tab_shadow = NULL;
TabRenderer::TabImage TabRenderer::tab_alpha = {0};
TabRenderer::TabImage TabRenderer::tab_active = {0};
TabRenderer::TabImage TabRenderer::tab_inactive = {0};
// Max opacity for the mini-tab title change animation.
const double kMiniTitleChangeThrobOpacity = 0.75;
// Duration for when the title of an inactive mini-tab changes.
const int kMiniTitleChangeThrobDuration = 1000;
// When the title of a mini-tab in the background changes the size of the icon
// animates. This is the max size we let the icon go to.
static const int kMiniTitleChangeMaxFaviconSize = 22;
namespace {
void InitResources() {
static bool initialized = false;
if (!initialized) {
// TODO(glen): Allow theming of these.
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
title_font = new gfx::Font(rb.GetFont(ResourceBundle::BaseFont));
title_font_height = title_font->height();
close_button_n = rb.GetBitmapNamed(IDR_TAB_CLOSE);
close_button_m = rb.GetBitmapNamed(IDR_TAB_CLOSE_MASK);
close_button_h = rb.GetBitmapNamed(IDR_TAB_CLOSE_H);
close_button_p = rb.GetBitmapNamed(IDR_TAB_CLOSE_P);
close_button_width = close_button_n->width();
close_button_height = close_button_n->height();
TabRenderer::LoadTabImages();
// The loading animation image is a strip of states. Each state must be
// square, so the height must divide the width evenly.
loading_animation_frames = rb.GetBitmapNamed(IDR_THROBBER);
DCHECK(loading_animation_frames);
DCHECK(loading_animation_frames->width() %
loading_animation_frames->height() == 0);
loading_animation_frame_count =
loading_animation_frames->width() / loading_animation_frames->height();
// We get a DIV0 further down when the throbber is replaced by an image
// which is taller than wide. In this case we cannot deduce an animation
// sequence from it since we assume that each animation frame has the width
// of the image's height.
if (loading_animation_frame_count == 0) {
#ifdef WIN32
// TODO(idanan): Remove this when we have a way to handle theme errors.
// See: http://code.google.com/p/chromium/issues/detail?id=12531
// For now, this is Windows-specific because some users have downloaded
// a DLL from outside of Google to override the theme.
std::wstring text = l10n_util::GetString(IDS_RESOURCE_ERROR);
std::wstring caption = l10n_util::GetString(IDS_RESOURCE_ERROR_CAPTION);
UINT flags = MB_OK | MB_ICONWARNING | MB_TOPMOST;
win_util::MessageBox(NULL, text, caption, flags);
#endif
CHECK(loading_animation_frame_count) << "Invalid throbber size. Width = "
<< loading_animation_frames->width() << ", height = "
<< loading_animation_frames->height();
}
waiting_animation_frames = rb.GetBitmapNamed(IDR_THROBBER_WAITING);
DCHECK(waiting_animation_frames);
DCHECK(waiting_animation_frames->width() %
waiting_animation_frames->height() == 0);
waiting_animation_frame_count =
waiting_animation_frames->width() / waiting_animation_frames->height();
waiting_to_loading_frame_count_ratio =
waiting_animation_frame_count / loading_animation_frame_count;
// TODO(beng): eventually remove this when we have a proper themeing system.
// themes not supporting IDR_THROBBER_WAITING are causing this
// value to be 0 which causes DIV0 crashes. The value of 5
// matches the current bitmaps in our source.
if (waiting_to_loading_frame_count_ratio == 0)
waiting_to_loading_frame_count_ratio = 5;
crashed_fav_icon = rb.GetBitmapNamed(IDR_SAD_FAVICON);
initialized = true;
}
}
int GetContentHeight() {
// The height of the content of the Tab is the largest of the favicon,
// the title text and the close button graphic.
int content_height = std::max(kFavIconSize, title_font_height);
return std::max(content_height, close_button_height);
}
////////////////////////////////////////////////////////////////////////////////
// TabCloseButton
//
// This is a Button subclass that causes middle clicks to be forwarded to the
// parent View by explicitly not handling them in OnMousePressed.
class TabCloseButton : public views::ImageButton {
public:
explicit TabCloseButton(views::ButtonListener* listener)
: views::ImageButton(listener) {
}
virtual ~TabCloseButton() {}
virtual bool OnMousePressed(const views::MouseEvent& event) {
bool handled = ImageButton::OnMousePressed(event);
// Explicitly mark midle-mouse clicks as non-handled to ensure the tab
// sees them.
return event.IsOnlyMiddleMouseButton() ? false : handled;
}
// We need to let the parent know about mouse state so that it
// can highlight itself appropriately. Note that Exit events
// fire before Enter events, so this works.
virtual void OnMouseEntered(const views::MouseEvent& event) {
CustomButton::OnMouseEntered(event);
GetParent()->OnMouseEntered(event);
}
virtual void OnMouseExited(const views::MouseEvent& event) {
CustomButton::OnMouseExited(event);
GetParent()->OnMouseExited(event);
}
private:
DISALLOW_EVIL_CONSTRUCTORS(TabCloseButton);
};
} // namespace
////////////////////////////////////////////////////////////////////////////////
// FaviconCrashAnimation
//
// A custom animation subclass to manage the favicon crash animation.
class TabRenderer::FavIconCrashAnimation : public Animation,
public AnimationDelegate {
public:
explicit FavIconCrashAnimation(TabRenderer* target)
: ALLOW_THIS_IN_INITIALIZER_LIST(Animation(1000, 25, this)),
target_(target) {
}
virtual ~FavIconCrashAnimation() {}
// Animation overrides:
virtual void AnimateToState(double state) {
const double kHidingOffset = 27;
if (state < .5) {
target_->SetFavIconHidingOffset(
static_cast<int>(floor(kHidingOffset * 2.0 * state)));
} else {
target_->DisplayCrashedFavIcon();
target_->SetFavIconHidingOffset(
static_cast<int>(
floor(kHidingOffset - ((state - .5) * 2.0 * kHidingOffset))));
}
}
// AnimationDelegate overrides:
virtual void AnimationCanceled(const Animation* animation) {
target_->SetFavIconHidingOffset(0);
}
private:
TabRenderer* target_;
DISALLOW_EVIL_CONSTRUCTORS(FavIconCrashAnimation);
};
////////////////////////////////////////////////////////////////////////////////
// TabRenderer, public:
TabRenderer::TabRenderer()
: animation_state_(ANIMATION_NONE),
animation_frame_(0),
showing_icon_(false),
showing_close_button_(false),
fav_icon_hiding_offset_(0),
close_button_color_(NULL),
crash_animation_(NULL),
should_display_crashed_favicon_(false),
theme_provider_(NULL) {
InitResources();
// Add the Close Button.
close_button_ = new TabCloseButton(this);
close_button_->SetImage(views::CustomButton::BS_NORMAL, close_button_n);
close_button_->SetImage(views::CustomButton::BS_HOT, close_button_h);
close_button_->SetImage(views::CustomButton::BS_PUSHED, close_button_p);
AddChildView(close_button_);
hover_animation_.reset(new SlideAnimation(this));
hover_animation_->SetSlideDuration(kHoverDurationMs);
pulse_animation_.reset(new ThrobAnimation(this));
pulse_animation_->SetSlideDuration(kPulseDurationMs);
}
TabRenderer::~TabRenderer() {
delete crash_animation_;
}
void TabRenderer::SizeToNewTabButtonImages() {
SetBounds(x(), y(), new_tab_shadow->width(), new_tab_shadow->height());
}
void TabRenderer::ViewHierarchyChanged(bool is_add, View* parent, View* child) {
if (parent->GetThemeProvider())
SetThemeProvider(parent->GetThemeProvider());
}
ThemeProvider* TabRenderer::GetThemeProvider() {
ThemeProvider* tp = View::GetThemeProvider();
if (tp)
return tp;
if (theme_provider_)
return theme_provider_;
return NULL;
}
void TabRenderer::UpdateData(TabContents* contents,
bool phantom,
bool loading_only) {
DCHECK(contents);
if (data_.phantom != phantom || !loading_only) {
data_.title = contents->GetTitle();
data_.off_the_record = contents->profile()->IsOffTheRecord();
data_.crashed = contents->is_crashed();
SkBitmap app_icon = contents->app_extension_icon();
if (!app_icon.empty())
data_.favicon = app_icon;
else
data_.favicon = contents->GetFavIcon();
data_.phantom = phantom;
// Sets the accessible name for the tab.
SetAccessibleName(UTF16ToWide(data_.title));
}
// TODO(glen): Temporary hax.
theme_provider_ = contents->profile()->GetThemeProvider();
// Loading state also involves whether we show the favicon, since that's where
// we display the throbber.
data_.loading = contents->is_loading();
data_.show_icon = contents->ShouldDisplayFavIcon();
}
void TabRenderer::UpdateFromModel() {
// Force a layout, since the tab may have grown a favicon.
Layout();
SchedulePaint();
if (data_.crashed) {
if (!should_display_crashed_favicon_ && !IsPerformingCrashAnimation())
StartCrashAnimation();
} else {
if (IsPerformingCrashAnimation())
StopCrashAnimation();
ResetCrashedFavIcon();
}
}
void TabRenderer::set_animating_mini_change(bool value) {
data_.animating_mini_change = value;
}
bool TabRenderer::IsSelected() const {
return true;
}
void TabRenderer::ValidateLoadingAnimation(AnimationState animation_state) {
if (animation_state_ != animation_state) {
// The waiting animation is the reverse of the loading animation, but at a
// different rate - the following reverses and scales the animation_frame_
// so that the frame is at an equivalent position when going from one
// animation to the other.
if (animation_state_ == ANIMATION_WAITING &&
animation_state == ANIMATION_LOADING) {
animation_frame_ = loading_animation_frame_count -
(animation_frame_ / waiting_to_loading_frame_count_ratio);
}
animation_state_ = animation_state;
}
if (animation_state_ != ANIMATION_NONE) {
animation_frame_ = ++animation_frame_ %
((animation_state_ == ANIMATION_WAITING) ?
waiting_animation_frame_count :
loading_animation_frame_count);
} else {
animation_frame_ = 0;
}
SchedulePaint();
}
void TabRenderer::StartPulse() {
pulse_animation_->Reset();
pulse_animation_->StartThrobbing(std::numeric_limits<int>::max());
}
void TabRenderer::StopPulse() {
if (pulse_animation_->IsAnimating())
pulse_animation_->Stop();
}
void TabRenderer::StartMiniTabTitleAnimation() {
if (!mini_title_animation_.get()) {
mini_title_animation_.reset(new ThrobAnimation(this));
mini_title_animation_->SetThrobDuration(kMiniTitleChangeThrobDuration);
}
if (!mini_title_animation_->IsAnimating()) {
mini_title_animation_->StartThrobbing(2);
} else if (mini_title_animation_->cycles_remaining() <= 2) {
// The title changed while we're already animating. Add at most one more
// cycle. This is done in an attempt to smooth out pages that continuously
// change the title.
mini_title_animation_->set_cycles_remaining(
mini_title_animation_->cycles_remaining() + 2);
}
}
void TabRenderer::StopMiniTabTitleAnimation() {
if (mini_title_animation_.get())
mini_title_animation_->Stop();
}
void TabRenderer::SetAnimationContainer(AnimationContainer* container) {
container_ = container;
pulse_animation_->SetContainer(container);
}
void TabRenderer::PaintIcon(gfx::Canvas* canvas) {
if (animation_state_ != ANIMATION_NONE) {
PaintLoadingAnimation(canvas);
} else {
canvas->save();
canvas->ClipRectInt(0, 0, width(), height());
if (should_display_crashed_favicon_) {
canvas->DrawBitmapInt(*crashed_fav_icon, 0, 0,
crashed_fav_icon->width(),
crashed_fav_icon->height(),
favicon_bounds_.x(),
favicon_bounds_.y() + fav_icon_hiding_offset_,
kFavIconSize, kFavIconSize,
true);
} else {
if (!data_.favicon.isNull()) {
// TODO(pkasting): Use code in tab_icon_view.cc:PaintIcon() (or switch
// to using that class to render the favicon).
int x = favicon_bounds_.x();
int y = favicon_bounds_.y() + fav_icon_hiding_offset_;
// TODO(sky): this isn't right for app tabs, but we're redoing this
// effect separately.
int size = data_.favicon.width();
if (mini() && mini_title_animation_.get() &&
mini_title_animation_->IsAnimating()) {
int throb_size = mini_title_animation_->CurrentValueBetween(
size, kMiniTitleChangeMaxFaviconSize);
x -= (throb_size - size) / 2;
y -= (throb_size - size) / 2;
size = throb_size;
}
canvas->DrawBitmapInt(data_.favicon, 0, 0,
data_.favicon.width(),
data_.favicon.height(),
x, y, size, size,
true);
}
}
canvas->restore();
}
}
// static
gfx::Size TabRenderer::GetMinimumUnselectedSize() {
InitResources();
gfx::Size minimum_size;
minimum_size.set_width(kLeftPadding + kRightPadding);
// Since we use bitmap images, the real minimum height of the image is
// defined most accurately by the height of the end cap images.
minimum_size.set_height(tab_active.image_l->height());
return minimum_size;
}
// static
gfx::Size TabRenderer::GetMinimumSelectedSize() {
gfx::Size minimum_size = GetMinimumUnselectedSize();
minimum_size.set_width(kLeftPadding + kFavIconSize + kRightPadding);
return minimum_size;
}
// static
gfx::Size TabRenderer::GetStandardSize() {
gfx::Size standard_size = GetMinimumUnselectedSize();
standard_size.set_width(
standard_size.width() + kFavIconTitleSpacing + kStandardTitleWidth);
return standard_size;
}
// static
int TabRenderer::GetMiniWidth() {
return browser_defaults::kMiniTabWidth;
}
////////////////////////////////////////////////////////////////////////////////
// TabRenderer, protected:
std::wstring TabRenderer::GetTitle() const {
return UTF16ToWideHack(data_.title);
}
void TabRenderer::OnMouseEntered(const views::MouseEvent& e) {
hover_animation_->SetTweenType(SlideAnimation::EASE_OUT);
hover_animation_->Show();
}
void TabRenderer::OnMouseExited(const views::MouseEvent& e) {
hover_animation_->SetTweenType(SlideAnimation::EASE_IN);
hover_animation_->Hide();
}
////////////////////////////////////////////////////////////////////////////////
// TabRenderer, views::View overrides:
void TabRenderer::Paint(gfx::Canvas* canvas) {
if (data_.render_as_new_tab) {
PaintAsNewTab(canvas);
return;
}
// Don't paint if we're narrower than we can render correctly. (This should
// only happen during animations).
if (width() < GetMinimumUnselectedSize().width() && !mini())
return;
// See if the model changes whether the icons should be painted.
const bool show_icon = ShouldShowIcon() && !phantom();
const bool show_close_button = ShouldShowCloseBox();
if (show_icon != showing_icon_ ||
show_close_button != showing_close_button_)
Layout();
PaintTabBackground(canvas);
SkColor title_color = GetThemeProvider()->
GetColor(IsSelected() ?
BrowserThemeProvider::COLOR_TAB_TEXT :
BrowserThemeProvider::COLOR_BACKGROUND_TAB_TEXT);
if (!mini() || width() > kMiniTabRendererAsNormalTabWidth)
PaintTitle(title_color, canvas);
if (show_icon)
PaintIcon(canvas);
// If the close button color has changed, generate a new one.
if (!close_button_color_ || title_color != close_button_color_) {
close_button_color_ = title_color;
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
close_button_->SetBackground(close_button_color_,
rb.GetBitmapNamed(IDR_TAB_CLOSE),
rb.GetBitmapNamed(IDR_TAB_CLOSE_MASK));
}
}
void TabRenderer::Layout() {
gfx::Rect lb = GetLocalBounds(false);
if (lb.IsEmpty())
return;
lb.Inset(kLeftPadding, kTopPadding, kRightPadding, kBottomPadding);
// First of all, figure out who is tallest.
int content_height = GetContentHeight();
// Size the Favicon.
showing_icon_ = ShouldShowIcon();
if (showing_icon_) {
// Use the size of the favicon as apps use a bigger favicon size.
int favicon_size =
!data_.favicon.empty() ? data_.favicon.width() : kFavIconSize;
int favicon_top = kTopPadding + content_height / 2 - favicon_size / 2;
int favicon_left = lb.x();
if (favicon_size != kFavIconSize) {
favicon_left -= (favicon_size - kFavIconSize) / 2;
favicon_top -= kAppTapFaviconVerticalAdjustment;
}
favicon_bounds_.SetRect(favicon_left, favicon_top,
favicon_size, favicon_size);
if ((mini() || data_.animating_mini_change) &&
width() < kMiniTabRendererAsNormalTabWidth) {
// Adjust the location of the favicon when transitioning from a normal
// tab to a mini-tab.
int mini_delta = kMiniTabRendererAsNormalTabWidth - GetMiniWidth();
int ideal_delta = width() - GetMiniWidth();
if (ideal_delta < mini_delta) {
int ideal_x = (GetMiniWidth() - favicon_size) / 2;
int x = favicon_bounds_.x() + static_cast<int>(
(1 - static_cast<float>(ideal_delta) /
static_cast<float>(mini_delta)) *
(ideal_x - favicon_bounds_.x()));
favicon_bounds_.set_x(x);
}
}
} else {
favicon_bounds_.SetRect(lb.x(), lb.y(), 0, 0);
}
// Size the Close button.
showing_close_button_ = ShouldShowCloseBox();
if (showing_close_button_) {
int close_button_top =
kTopPadding + kCloseButtonVertFuzz +
(content_height - close_button_height) / 2;
// If the ratio of the close button size to tab width exceeds the maximum.
close_button_->SetBounds(lb.width() + kCloseButtonHorzFuzz,
close_button_top, close_button_width,
close_button_height);
close_button_->SetVisible(true);
} else {
close_button_->SetBounds(0, 0, 0, 0);
close_button_->SetVisible(false);
}
int title_left = favicon_bounds_.right() + kFavIconTitleSpacing;
int title_top = kTopPadding + (content_height - title_font_height) / 2;
// Size the Title text to fill the remaining space.
if (!mini() || width() >= kMiniTabRendererAsNormalTabWidth) {
// If the user has big fonts, the title will appear rendered too far down
// on the y-axis if we use the regular top padding, so we need to adjust it
// so that the text appears centered.
gfx::Size minimum_size = GetMinimumUnselectedSize();
int text_height = title_top + title_font_height + kBottomPadding;
if (text_height > minimum_size.height())
title_top -= (text_height - minimum_size.height()) / 2;
int title_width;
if (close_button_->IsVisible()) {
title_width = std::max(close_button_->x() -
kTitleCloseButtonSpacing - title_left, 0);
} else {
title_width = std::max(lb.width() - title_left, 0);
}
title_bounds_.SetRect(title_left, title_top, title_width,
title_font_height);
} else {
title_bounds_.SetRect(title_left, title_top, 0, 0);
}
// Certain UI elements within the Tab (the favicon, etc.) are not represented
// as child Views (which is the preferred method). Instead, these UI elements
// are drawn directly on the canvas from within Tab::Paint(). The Tab's child
// Views (for example, the Tab's close button which is a views::Button
// instance) are automatically mirrored by the mirroring infrastructure in
// views. The elements Tab draws directly on the canvas need to be manually
// mirrored if the View's layout is right-to-left.
favicon_bounds_.set_x(MirroredLeftPointForRect(favicon_bounds_));
title_bounds_.set_x(MirroredLeftPointForRect(title_bounds_));
}
void TabRenderer::ThemeChanged() {
LoadTabImages();
View::ThemeChanged();
}
///////////////////////////////////////////////////////////////////////////////
// TabRenderer, AnimationDelegate implementation:
void TabRenderer::AnimationProgressed(const Animation* animation) {
SchedulePaint();
}
void TabRenderer::AnimationCanceled(const Animation* animation) {
AnimationEnded(animation);
}
void TabRenderer::AnimationEnded(const Animation* animation) {
SchedulePaint();
}
////////////////////////////////////////////////////////////////////////////////
// TabRenderer, private
void TabRenderer::PaintTitle(SkColor title_color, gfx::Canvas* canvas) {
// Paint the Title.
string16 title = data_.title;
if (title.empty()) {
title = data_.loading ?
l10n_util::GetStringUTF16(IDS_TAB_LOADING_TITLE) :
TabContents::GetDefaultTitle();
} else {
Browser::FormatTitleForDisplay(&title);
}
canvas->DrawStringInt(UTF16ToWideHack(title), *title_font, title_color,
title_bounds_.x(), title_bounds_.y(),
title_bounds_.width(), title_bounds_.height());
}
void TabRenderer::PaintTabBackground(gfx::Canvas* canvas) {
if (IsSelected()) {
PaintActiveTabBackground(canvas);
} else {
PaintInactiveTabBackground(canvas);
double throb_value = GetThrobValue();
if (throb_value > 0) {
SkRect bounds;
bounds.set(0, 0, SkIntToScalar(width()), SkIntToScalar(height()));
canvas->saveLayerAlpha(&bounds, static_cast<int>(throb_value * 0xff),
SkCanvas::kARGB_ClipLayer_SaveFlag);
canvas->drawARGB(0, 255, 255, 255, SkXfermode::kClear_Mode);
PaintActiveTabBackground(canvas);
canvas->restore();
}
}
}
void TabRenderer::PaintInactiveTabBackground(gfx::Canvas* canvas) {
bool is_otr = data_.off_the_record;
// The tab image needs to be lined up with the background image
// so that it feels partially transparent. These offsets represent the tab
// position within the frame background image.
int offset = GetX(views::View::APPLY_MIRRORING_TRANSFORMATION) +
background_offset_.x();
int tab_id;
if (GetWidget() &&
GetWidget()->GetWindow()->GetNonClientView()->UseNativeFrame()) {
tab_id = IDR_THEME_TAB_BACKGROUND_V;
} else {
tab_id = is_otr ? IDR_THEME_TAB_BACKGROUND_INCOGNITO :
IDR_THEME_TAB_BACKGROUND;
}
SkBitmap* tab_bg = GetThemeProvider()->GetBitmapNamed(tab_id);
// If the theme is providing a custom background image, then its top edge
// should be at the top of the tab. Otherwise, we assume that the background
// image is a composited foreground + frame image.
int bg_offset_y = GetThemeProvider()->HasCustomImage(tab_id) ?
0 : background_offset_.y();
// Draw left edge. Don't draw over the toolbar, as we're not the foreground
// tab.
SkBitmap tab_l = SkBitmapOperations::CreateTiledBitmap(
*tab_bg, offset, bg_offset_y, tab_active.l_width, height());
SkBitmap theme_l =
SkBitmapOperations::CreateMaskedBitmap(tab_l, *tab_alpha.image_l);
canvas->DrawBitmapInt(theme_l,
0, 0, theme_l.width(), theme_l.height() - kToolbarOverlap,
0, 0, theme_l.width(), theme_l.height() - kToolbarOverlap,
false);
// Draw right edge. Again, don't draw over the toolbar.
SkBitmap tab_r = SkBitmapOperations::CreateTiledBitmap(*tab_bg,
offset + width() - tab_active.r_width, bg_offset_y,
tab_active.r_width, height());
SkBitmap theme_r =
SkBitmapOperations::CreateMaskedBitmap(tab_r, *tab_alpha.image_r);
canvas->DrawBitmapInt(theme_r,
0, 0, theme_r.width(), theme_r.height() - kToolbarOverlap,
width() - theme_r.width(), 0, theme_r.width(),
theme_r.height() - kToolbarOverlap, false);
// Draw center. Instead of masking out the top portion we simply skip over it
// by incrementing by kDropShadowHeight, since it's a simple rectangle. And
// again, don't draw over the toolbar.
canvas->TileImageInt(*tab_bg,
offset + tab_active.l_width, bg_offset_y + kDropShadowHeight,
tab_active.l_width, kDropShadowHeight,
width() - tab_active.l_width - tab_active.r_width,
height() - kDropShadowHeight - kToolbarOverlap);
// Now draw the highlights/shadows around the tab edge.
canvas->DrawBitmapInt(*tab_inactive.image_l, 0, 0);
canvas->TileImageInt(*tab_inactive.image_c,
tab_inactive.l_width, 0,
width() - tab_inactive.l_width - tab_inactive.r_width,
height());
canvas->DrawBitmapInt(*tab_inactive.image_r,
width() - tab_inactive.r_width, 0);
}
void TabRenderer::PaintActiveTabBackground(gfx::Canvas* canvas) {
int offset = GetX(views::View::APPLY_MIRRORING_TRANSFORMATION) +
background_offset_.x();
ThemeProvider* tp = GetThemeProvider();
if (!tp)
NOTREACHED() << "Unable to get theme provider";
SkBitmap* tab_bg = GetThemeProvider()->GetBitmapNamed(IDR_THEME_TOOLBAR);
// Draw left edge.
SkBitmap tab_l = SkBitmapOperations::CreateTiledBitmap(
*tab_bg, offset, 0, tab_active.l_width, height());
SkBitmap theme_l =
SkBitmapOperations::CreateMaskedBitmap(tab_l, *tab_alpha.image_l);
canvas->DrawBitmapInt(theme_l, 0, 0);
// Draw right edge.
SkBitmap tab_r = SkBitmapOperations::CreateTiledBitmap(*tab_bg,
offset + width() - tab_active.r_width, 0, tab_active.r_width, height());
SkBitmap theme_r =
SkBitmapOperations::CreateMaskedBitmap(tab_r, *tab_alpha.image_r);
canvas->DrawBitmapInt(theme_r, width() - tab_active.r_width, 0);
// Draw center. Instead of masking out the top portion we simply skip over it
// by incrementing by kDropShadowHeight, since it's a simple rectangle.
canvas->TileImageInt(*tab_bg,
offset + tab_active.l_width, kDropShadowHeight,
tab_active.l_width, kDropShadowHeight,
width() - tab_active.l_width - tab_active.r_width,
height() - kDropShadowHeight);
// Now draw the highlights/shadows around the tab edge.
canvas->DrawBitmapInt(*tab_active.image_l, 0, 0);
canvas->TileImageInt(*tab_active.image_c, tab_active.l_width, 0,
width() - tab_active.l_width - tab_active.r_width, height());
canvas->DrawBitmapInt(*tab_active.image_r, width() - tab_active.r_width, 0);
}
void TabRenderer::PaintLoadingAnimation(gfx::Canvas* canvas) {
SkBitmap* frames = (animation_state_ == ANIMATION_WAITING) ?
waiting_animation_frames : loading_animation_frames;
int image_size = frames->height();
int image_offset = animation_frame_ * image_size;
int dst_y = (height() - image_size) / 2;
// Just like with the Tab's title and favicon, the position for the page
// loading animation also needs to be mirrored if the View's UI layout is
// right-to-left.
int dst_x;
if (mini()) {
dst_x = favicon_bounds_.x();
} else {
if (UILayoutIsRightToLeft()) {
dst_x = width() - kLeftPadding - image_size;
} else {
dst_x = kLeftPadding;
}
}
canvas->DrawBitmapInt(*frames, image_offset, 0, image_size,
image_size, dst_x, dst_y, image_size, image_size,
false);
}
void TabRenderer::PaintAsNewTab(gfx::Canvas* canvas) {
bool is_otr = data_.off_the_record;
// The tab image needs to be lined up with the background image
// so that it feels partially transparent. These offsets represent the tab
// position within the frame background image.
int offset = GetX(views::View::APPLY_MIRRORING_TRANSFORMATION) +
background_offset_.x();
int tab_id;
if (GetWidget() &&
GetWidget()->GetWindow()->GetNonClientView()->UseNativeFrame()) {
tab_id = IDR_THEME_TAB_BACKGROUND_V;
} else {
tab_id = is_otr ? IDR_THEME_TAB_BACKGROUND_INCOGNITO :
IDR_THEME_TAB_BACKGROUND;
}
SkBitmap* tab_bg = GetThemeProvider()->GetBitmapNamed(tab_id);
// If the theme is providing a custom background image, then its top edge
// should be at the top of the tab. Otherwise, we assume that the background
// image is a composited foreground + frame image.
int bg_offset_y = GetThemeProvider()->HasCustomImage(tab_id) ?
0 : background_offset_.y();
SkBitmap image = SkBitmapOperations::CreateTiledBitmap(
*tab_bg, offset, bg_offset_y, new_tab_mask->width(),
new_tab_mask->height());
image = SkBitmapOperations::CreateMaskedBitmap(image, *new_tab_mask);
canvas->DrawBitmapInt(image,
0, 0, image.width(), image.height(),
0, 0, image.width(), image.height(),
false);
canvas->DrawBitmapInt(*new_tab_shadow,
0, 0, new_tab_shadow->width(), new_tab_shadow->height(),
0, 0, new_tab_shadow->width(), new_tab_shadow->height(),
false);
}
int TabRenderer::IconCapacity() const {
if (height() < GetMinimumUnselectedSize().height())
return 0;
return (width() - kLeftPadding - kRightPadding) / kFavIconSize;
}
bool TabRenderer::ShouldShowIcon() const {
if (mini() && height() >= GetMinimumUnselectedSize().height())
return true;
if (!data_.show_icon) {
return false;
} else if (IsSelected()) {
// The selected tab clips favicon before close button.
return IconCapacity() >= 2;
}
// Non-selected tabs clip close button before favicon.
return IconCapacity() >= 1;
}
bool TabRenderer::ShouldShowCloseBox() const {
// The selected tab never clips close button.
return !mini() && (IsSelected() || IconCapacity() >= 3);
}
double TabRenderer::GetThrobValue() {
if (data_.alpha != 1)
return data_.alpha;
if (pulse_animation_->IsAnimating())
return pulse_animation_->GetCurrentValue() * kHoverOpacity;
return hover_animation_.get() ?
kHoverOpacity * hover_animation_->GetCurrentValue() : 0;
}
////////////////////////////////////////////////////////////////////////////////
// TabRenderer, private:
void TabRenderer::StartCrashAnimation() {
if (!crash_animation_)
crash_animation_ = new FavIconCrashAnimation(this);
crash_animation_->Stop();
crash_animation_->Start();
}
void TabRenderer::StopCrashAnimation() {
if (!crash_animation_)
return;
crash_animation_->Stop();
}
bool TabRenderer::IsPerformingCrashAnimation() const {
return crash_animation_ && crash_animation_->IsAnimating();
}
void TabRenderer::SetFavIconHidingOffset(int offset) {
fav_icon_hiding_offset_ = offset;
SchedulePaint();
}
void TabRenderer::DisplayCrashedFavIcon() {
should_display_crashed_favicon_ = true;
}
void TabRenderer::ResetCrashedFavIcon() {
should_display_crashed_favicon_ = false;
}
// static
void TabRenderer::LoadTabImages() {
// We're not letting people override tab images just yet.
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
tab_alpha.image_l = rb.GetBitmapNamed(IDR_TAB_ALPHA_LEFT);
tab_alpha.image_r = rb.GetBitmapNamed(IDR_TAB_ALPHA_RIGHT);
tab_active.image_l = rb.GetBitmapNamed(IDR_TAB_ACTIVE_LEFT);
tab_active.image_c = rb.GetBitmapNamed(IDR_TAB_ACTIVE_CENTER);
tab_active.image_r = rb.GetBitmapNamed(IDR_TAB_ACTIVE_RIGHT);
tab_active.l_width = tab_active.image_l->width();
tab_active.r_width = tab_active.image_r->width();
tab_inactive.image_l = rb.GetBitmapNamed(IDR_TAB_INACTIVE_LEFT);
tab_inactive.image_c = rb.GetBitmapNamed(IDR_TAB_INACTIVE_CENTER);
tab_inactive.image_r = rb.GetBitmapNamed(IDR_TAB_INACTIVE_RIGHT);
tab_inactive.l_width = tab_inactive.image_l->width();
tab_inactive.r_width = tab_inactive.image_r->width();
loading_animation_frames = rb.GetBitmapNamed(IDR_THROBBER);
waiting_animation_frames = rb.GetBitmapNamed(IDR_THROBBER_WAITING);
new_tab_mask = rb.GetBitmapNamed(IDR_TAB_ALPHA_NEW_TAB);
new_tab_shadow = rb.GetBitmapNamed(IDR_TAB_NEW_TAB_SHADOW);
}
void TabRenderer::SetBlocked(bool blocked) {
if (data_.blocked == blocked)
return;
data_.blocked = blocked;
if (blocked)
StartPulse();
else
StopPulse();
}
|