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
|
// Copyright 2013 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/frame/opaque_browser_frame_view_layout.h"
#include "base/command_line.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/ui/views/profiles/avatar_menu_button.h"
#include "chrome/browser/ui/views/tabs/tab_strip.h"
#include "chrome/common/chrome_switches.h"
#include "components/signin/core/common/profile_management_switches.h"
#include "ui/gfx/font.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/controls/label.h"
#if defined(ENABLE_SUPERVISED_USERS)
#include "chrome/browser/ui/views/profiles/supervised_user_avatar_label.h"
#endif
namespace {
// Besides the frame border, there's another 9 px of empty space atop the
// window in restored mode, to use to drag the window around.
const int kNonClientRestoredExtraThickness = 9;
// The titlebar never shrinks too short to show the caption button plus some
// padding below it.
const int kCaptionButtonHeightWithPadding = 19;
// There is a 5 px gap between the title text and the caption buttons.
const int kTitleLogoSpacing = 5;
// The frame border is only visible in restored mode and is hardcoded to 4 px on
// each side regardless of the system window border size.
const int kFrameBorderThickness = 4;
// The titlebar has a 2 px 3D edge along the top and bottom.
const int kTitlebarTopAndBottomEdgeThickness = 2;
// The icon is inset 2 px from the left frame border.
const int kIconLeftSpacing = 2;
// There is a 4 px gap between the icon and the title text.
const int kIconTitleSpacing = 4;
// The avatar ends 2 px above the bottom of the tabstrip (which, given the
// way the tabstrip draws its bottom edge, will appear like a 1 px gap to the
// user).
const int kAvatarBottomSpacing = 2;
// Space between the frame border and the edge of the avatar.
const int kAvatarOuterSpacing = 2;
// Space between the edge of the avatar and the tabstrip.
const int kAvatarInnerSpacing = 4;
#if defined(ENABLE_SUPERVISED_USERS)
// Space between the trailing edge of the avatar label and the tabstrip.
const int kSupervisedUserAvatarLabelInnerSpacing = 10;
#endif
// How far the new avatar button is from the closest caption button.
const int kNewAvatarButtonOffset = 5;
// When the title bar is in its normal two row mode (usually the case for
// restored windows), the New Tab button isn't at the same height as the caption
// buttons, but the space will look cluttered if it actually slides under them,
// so we stop it when the gap between the two is down to 5 px.
const int kNewTabCaptionNormalSpacing = 5;
// When the title bar is condensed to one row (as when maximized), the New Tab
// button and the caption buttons are at similar vertical coordinates, so we
// need to reserve a larger, 16 px gap to avoid looking too cluttered.
const int kNewTabCaptionCondensedSpacing = 16;
// If there are no caption buttons to the right of the New Tab button, we
// reserve a small 5px gap, regardless of whether the window is maximized. This
// overrides the two previous constants.
const int kNewTabNoCaptionButtonsSpacing = 5;
// The top 3 px of the tabstrip is shadow; in maximized mode we push this off
// the top of the screen so the tabs appear flush against the screen edge.
const int kTabstripTopShadowThickness = 3;
// How far to indent the tabstrip from the left side of the screen when there
// is no avatar icon.
const int kTabStripIndent = -6;
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
// Default extra space between the top of the frame and the top of the window
// caption buttons.
const int kExtraCaption = 2;
// Default extra spacing between individual window caption buttons.
const int kCaptionButtonSpacing = 2;
#else
const int kExtraCaption = 0;
const int kCaptionButtonSpacing = 0;
#endif
} // namespace
///////////////////////////////////////////////////////////////////////////////
// OpaqueBrowserFrameView, public:
OpaqueBrowserFrameViewLayout::OpaqueBrowserFrameViewLayout(
OpaqueBrowserFrameViewLayoutDelegate* delegate)
: delegate_(delegate),
leading_button_start_(0),
trailing_button_start_(0),
minimum_size_for_buttons_(0),
has_leading_buttons_(false),
has_trailing_buttons_(false),
extra_caption_y_(kExtraCaption),
window_caption_spacing_(kCaptionButtonSpacing),
minimize_button_(nullptr),
maximize_button_(nullptr),
restore_button_(nullptr),
close_button_(nullptr),
window_icon_(nullptr),
window_title_(nullptr),
#if defined(ENABLE_SUPERVISED_USERS)
supervised_user_avatar_label_(nullptr),
#endif
avatar_button_(nullptr),
new_avatar_button_(nullptr) {
trailing_buttons_.push_back(views::FRAME_BUTTON_MINIMIZE);
trailing_buttons_.push_back(views::FRAME_BUTTON_MAXIMIZE);
trailing_buttons_.push_back(views::FRAME_BUTTON_CLOSE);
}
OpaqueBrowserFrameViewLayout::~OpaqueBrowserFrameViewLayout() {}
void OpaqueBrowserFrameViewLayout::SetButtonOrdering(
const std::vector<views::FrameButton>& leading_buttons,
const std::vector<views::FrameButton>& trailing_buttons) {
leading_buttons_ = leading_buttons;
trailing_buttons_ = trailing_buttons;
}
gfx::Rect OpaqueBrowserFrameViewLayout::GetBoundsForTabStrip(
const gfx::Size& tabstrip_preferred_size,
int available_width) const {
available_width -= trailing_button_start_;
available_width -= leading_button_start_;
const int caption_spacing = NewTabCaptionSpacing();
const int tabstrip_width = available_width - caption_spacing;
gfx::Rect bounds(leading_button_start_, GetTabStripInsetsTop(false),
std::max(0, tabstrip_width),
tabstrip_preferred_size.height());
int leading_tabstrip_indent = kTabStripIndent;
if (delegate_->ShouldShowAvatar() && !ShouldAvatarBeOnRight()) {
#if defined(ENABLE_SUPERVISED_USERS)
if (supervised_user_avatar_label_ &&
supervised_user_avatar_label_->bounds().width())
leading_tabstrip_indent += kSupervisedUserAvatarLabelInnerSpacing;
else
leading_tabstrip_indent += kAvatarInnerSpacing;
#else
leading_tabstrip_indent += kAvatarInnerSpacing;
#endif
}
bounds.Inset(leading_tabstrip_indent, 0, 0, 0);
return bounds;
}
gfx::Size OpaqueBrowserFrameViewLayout::GetMinimumSize(
int available_width) const {
gfx::Size min_size = delegate_->GetBrowserViewMinimumSize();
int border_thickness = NonClientBorderThickness();
min_size.Enlarge(2 * border_thickness,
NonClientTopBorderHeight(false) + border_thickness);
// Ensure that we can, at minimum, hold our window controls and avatar icon.
min_size.set_width(std::max(min_size.width(), minimum_size_for_buttons_));
// Ensure that the minimum width is enough to hold a minimum width tab strip
// at its usual insets.
if (delegate_->IsTabStripVisible()) {
gfx::Size preferred_size = delegate_->GetTabstripPreferredSize();
const int min_tabstrip_width = preferred_size.width();
const int caption_spacing = NewTabCaptionSpacing();
min_size.Enlarge(min_tabstrip_width + caption_spacing, 0);
}
return min_size;
}
gfx::Rect OpaqueBrowserFrameViewLayout::GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const {
int top_height = NonClientTopBorderHeight(false);
int border_thickness = NonClientBorderThickness();
return gfx::Rect(std::max(0, client_bounds.x() - border_thickness),
std::max(0, client_bounds.y() - top_height),
client_bounds.width() + (2 * border_thickness),
client_bounds.height() + top_height + border_thickness);
}
int OpaqueBrowserFrameViewLayout::FrameBorderThickness(bool restored) const {
return (!restored && (IsTitleBarCondensed() ||
delegate_->IsFullscreen())) ?
0 : kFrameBorderThickness;
}
int OpaqueBrowserFrameViewLayout::NonClientBorderThickness() const {
// When we fill the screen, we don't show a client edge.
return FrameBorderThickness(false) +
((IsTitleBarCondensed() || delegate_->IsFullscreen()) ?
0 : views::NonClientFrameView::kClientEdgeThickness);
}
int OpaqueBrowserFrameViewLayout::NonClientTopBorderHeight(
bool restored) const {
if (delegate_->ShouldShowWindowTitle()) {
return std::max(FrameBorderThickness(restored) + delegate_->GetIconSize(),
CaptionButtonY(restored) + kCaptionButtonHeightWithPadding) +
TitlebarBottomThickness(restored);
}
int thickness = FrameBorderThickness(restored);
if (!restored && delegate_->IsTabStripVisible() &&
(!delegate_->ShouldLeaveOffsetNearTopBorder() || IsTitleBarCondensed())) {
thickness -= kTabstripTopShadowThickness;
}
return thickness;
}
int OpaqueBrowserFrameViewLayout::GetTabStripInsetsTop(bool restored) const {
return NonClientTopBorderHeight(restored) + ((!restored &&
(!delegate_->ShouldLeaveOffsetNearTopBorder() ||
IsTitleBarCondensed() ||
delegate_->IsFullscreen())) ?
0 : kNonClientRestoredExtraThickness);
}
int OpaqueBrowserFrameViewLayout::TitlebarBottomThickness(bool restored) const {
return kTitlebarTopAndBottomEdgeThickness +
((!restored && IsTitleBarCondensed()) ? 0 :
views::NonClientFrameView::kClientEdgeThickness);
}
int OpaqueBrowserFrameViewLayout::CaptionButtonY(bool restored) const {
// Maximized buttons start at window top, since the window has no border. This
// offset is for the image (the actual clickable bounds extend all the way to
// the top to take Fitts' Law into account).
return ((!restored && IsTitleBarCondensed()) ?
FrameBorderThickness(false) :
views::NonClientFrameView::kFrameShadowThickness) + extra_caption_y_;
}
gfx::Rect OpaqueBrowserFrameViewLayout::IconBounds() const {
return window_icon_bounds_;
}
gfx::Rect OpaqueBrowserFrameViewLayout::CalculateClientAreaBounds(
int width,
int height) const {
int top_height = NonClientTopBorderHeight(false);
int border_thickness = NonClientBorderThickness();
return gfx::Rect(border_thickness, top_height,
std::max(0, width - (2 * border_thickness)),
std::max(0, height - top_height - border_thickness));
}
bool OpaqueBrowserFrameViewLayout::IsTitleBarCondensed() const {
// If there are no caption buttons, there is no need to have an uncondensed
// title bar. If the window is maximized, the title bar is condensed
// regardless of whether there are caption buttons.
return !delegate_->ShouldShowCaptionButtons() || delegate_->IsMaximized();
}
///////////////////////////////////////////////////////////////////////////////
// OpaqueBrowserFrameView, private:
bool OpaqueBrowserFrameViewLayout::ShouldAvatarBeOnRight() const {
// The avatar should be shown either on the end of the left or the beginning
// of the right depending on which side has fewer buttons.
return trailing_buttons_.size() < leading_buttons_.size();
}
int OpaqueBrowserFrameViewLayout::NewTabCaptionSpacing() const {
return has_trailing_buttons_
? (IsTitleBarCondensed() ? kNewTabCaptionCondensedSpacing
: kNewTabCaptionNormalSpacing)
: kNewTabNoCaptionButtonsSpacing;
}
void OpaqueBrowserFrameViewLayout::LayoutWindowControls(views::View* host) {
int caption_y = CaptionButtonY(false);
// Keep a list of all buttons that we don't show.
std::vector<views::FrameButton> buttons_not_shown;
buttons_not_shown.push_back(views::FRAME_BUTTON_MAXIMIZE);
buttons_not_shown.push_back(views::FRAME_BUTTON_MINIMIZE);
buttons_not_shown.push_back(views::FRAME_BUTTON_CLOSE);
if (delegate_->ShouldShowCaptionButtons()) {
for (std::vector<views::FrameButton>::const_iterator it =
leading_buttons_.begin(); it != leading_buttons_.end(); ++it) {
ConfigureButton(host, *it, ALIGN_LEADING, caption_y);
buttons_not_shown.erase(
std::remove(buttons_not_shown.begin(), buttons_not_shown.end(), *it),
buttons_not_shown.end());
}
for (std::vector<views::FrameButton>::const_reverse_iterator it =
trailing_buttons_.rbegin(); it != trailing_buttons_.rend(); ++it) {
ConfigureButton(host, *it, ALIGN_TRAILING, caption_y);
buttons_not_shown.erase(
std::remove(buttons_not_shown.begin(), buttons_not_shown.end(), *it),
buttons_not_shown.end());
}
}
for (std::vector<views::FrameButton>::const_iterator it =
buttons_not_shown.begin(); it != buttons_not_shown.end(); ++it) {
HideButton(*it);
}
}
void OpaqueBrowserFrameViewLayout::LayoutTitleBar(views::View* host) {
bool use_hidden_icon_location = true;
int size = delegate_->GetIconSize();
int frame_thickness = FrameBorderThickness(false);
bool should_show_icon = delegate_->ShouldShowWindowIcon() && window_icon_;
bool should_show_title = delegate_->ShouldShowWindowTitle() && window_title_;
if (should_show_icon || should_show_title) {
use_hidden_icon_location = false;
// Our frame border has a different "3D look" than Windows'. Theirs has
// a more complex gradient on the top that they push their icon/title
// below; then the maximized window cuts this off and the icon/title are
// centered in the remaining space. Because the apparent shape of our
// border is simpler, using the same positioning makes things look
// slightly uncentered with restored windows, so when the window is
// restored, instead of calculating the remaining space from below the
// frame border, we calculate from below the 3D edge.
int unavailable_px_at_top = IsTitleBarCondensed() ?
frame_thickness : kTitlebarTopAndBottomEdgeThickness;
// When the icon is shorter than the minimum space we reserve for the
// caption button, we vertically center it. We want to bias rounding to
// put extra space above the icon, since the 3D edge (+ client edge, for
// restored windows) below looks (to the eye) more like additional space
// than does the 3D edge (or nothing at all, for maximized windows)
// above; hence the +1.
int y = unavailable_px_at_top + (NonClientTopBorderHeight(false) -
unavailable_px_at_top - size -
TitlebarBottomThickness(false) + 1) / 2;
window_icon_bounds_ = gfx::Rect(leading_button_start_ + kIconLeftSpacing, y,
size, size);
leading_button_start_ += size + kIconLeftSpacing;
minimum_size_for_buttons_ += size + kIconLeftSpacing;
}
if (should_show_icon)
window_icon_->SetBoundsRect(window_icon_bounds_);
if (window_title_) {
window_title_->SetVisible(should_show_title);
if (should_show_title) {
window_title_->SetText(delegate_->GetWindowTitle());
int text_width = std::max(
0, host->width() - trailing_button_start_ - kTitleLogoSpacing -
leading_button_start_ - kIconTitleSpacing);
window_title_->SetBounds(leading_button_start_ + kIconTitleSpacing,
window_icon_bounds_.y(),
text_width, window_icon_bounds_.height());
leading_button_start_ += text_width + kIconTitleSpacing;
}
}
if (use_hidden_icon_location) {
if (has_leading_buttons_) {
// There are window button icons on the left. Don't size the hidden window
// icon that people can double click on to close the window.
window_icon_bounds_ = gfx::Rect();
} else {
// We set the icon bounds to a small rectangle in the top leading corner
// if there are no icons on the leading side.
window_icon_bounds_ = gfx::Rect(
frame_thickness + kIconLeftSpacing, frame_thickness, size, size);
}
}
}
void OpaqueBrowserFrameViewLayout::LayoutNewStyleAvatar(views::View* host) {
DCHECK(switches::IsNewAvatarMenu());
if (!new_avatar_button_)
return;
int button_width = new_avatar_button_->GetPreferredSize().width();
int button_width_with_offset = button_width + kNewAvatarButtonOffset;
int button_x =
host->width() - trailing_button_start_ - button_width_with_offset;
int button_y = CaptionButtonY(!IsTitleBarCondensed());
minimum_size_for_buttons_ += button_width_with_offset;
trailing_button_start_ += button_width_with_offset;
// In non-maximized mode, allow the new tab button to completely slide under
// the avatar button.
if (!IsTitleBarCondensed()) {
trailing_button_start_ -=
TabStrip::kNewTabButtonAssetWidth + kNewTabCaptionNormalSpacing;
}
// Do not include the 1px padding that is added for the caption buttons.
new_avatar_button_->SetBounds(
button_x, button_y, button_width, kCaptionButtonHeightWithPadding - 1);
}
void OpaqueBrowserFrameViewLayout::LayoutAvatar(views::View* host) {
// Even though the avatar is used for both incognito and profiles we always
// use the incognito icon to layout the avatar button. The profile icon
// can be customized so we can't depend on its size to perform layout.
gfx::ImageSkia incognito_icon = delegate_->GetOTRAvatarIcon();
bool avatar_on_right = ShouldAvatarBeOnRight();
int avatar_bottom = GetTabStripInsetsTop(false) +
delegate_->GetTabStripHeight() - kAvatarBottomSpacing;
int avatar_restored_y = avatar_bottom - incognito_icon.height();
int avatar_x = avatar_on_right ?
host->width() - trailing_button_start_ - kAvatarOuterSpacing -
incognito_icon.width() :
leading_button_start_ + kAvatarOuterSpacing;
int avatar_y = IsTitleBarCondensed() ?
(NonClientTopBorderHeight(false) + kTabstripTopShadowThickness) :
avatar_restored_y;
avatar_bounds_.SetRect(
avatar_x,
avatar_y,
incognito_icon.width(),
delegate_->ShouldShowAvatar() ? (avatar_bottom - avatar_y) : 0);
if (avatar_button_) {
avatar_button_->set_button_on_right(avatar_on_right);
avatar_button_->SetBoundsRect(avatar_bounds_);
int edge_offset;
#if defined(ENABLE_SUPERVISED_USERS)
if (supervised_user_avatar_label_) {
supervised_user_avatar_label_->SetLabelOnRight(avatar_on_right);
// Space between the bottom of the avatar and the bottom of the avatar
// label.
const int kSupervisedUserAvatarLabelBottomSpacing = 3;
gfx::Size label_size = supervised_user_avatar_label_->GetPreferredSize();
// The outside edge of the avatar label should be just outside that of the
// avatar menu button.
int avatar_label_x = avatar_on_right ?
(host->width() - trailing_button_start_ - label_size.width()) :
leading_button_start_;
gfx::Rect label_bounds(
avatar_label_x,
avatar_bottom - kSupervisedUserAvatarLabelBottomSpacing -
label_size.height(),
label_size.width(),
delegate_->ShouldShowAvatar() ? label_size.height() : 0);
supervised_user_avatar_label_->SetBoundsRect(label_bounds);
edge_offset = label_size.width();
} else {
edge_offset = kAvatarOuterSpacing + incognito_icon.width();
}
#else
edge_offset = kAvatarOuterSpacing + incognito_icon.width();
#endif
if (avatar_on_right)
trailing_button_start_ += edge_offset;
else
leading_button_start_ += edge_offset;
// We just add the avatar button size to the minimum size because clicking
// the avatar label does the same thing as clicking the avatar button.
minimum_size_for_buttons_ += kAvatarOuterSpacing + incognito_icon.width();
}
}
void OpaqueBrowserFrameViewLayout::ConfigureButton(
views::View* host,
views::FrameButton button_id,
ButtonAlignment alignment,
int caption_y) {
switch (button_id) {
case views::FRAME_BUTTON_MINIMIZE: {
minimize_button_->SetVisible(true);
SetBoundsForButton(host, minimize_button_, alignment, caption_y);
break;
}
case views::FRAME_BUTTON_MAXIMIZE: {
// When the window is restored, we show a maximized button; otherwise, we
// show a restore button.
bool is_restored = !delegate_->IsMaximized() && !delegate_->IsMinimized();
views::ImageButton* invisible_button = is_restored ?
restore_button_ : maximize_button_;
invisible_button->SetVisible(false);
views::ImageButton* visible_button = is_restored ?
maximize_button_ : restore_button_;
visible_button->SetVisible(true);
SetBoundsForButton(host, visible_button, alignment, caption_y);
break;
}
case views::FRAME_BUTTON_CLOSE: {
close_button_->SetVisible(true);
SetBoundsForButton(host, close_button_, alignment, caption_y);
break;
}
}
}
void OpaqueBrowserFrameViewLayout::HideButton(views::FrameButton button_id) {
switch (button_id) {
case views::FRAME_BUTTON_MINIMIZE:
minimize_button_->SetVisible(false);
break;
case views::FRAME_BUTTON_MAXIMIZE:
restore_button_->SetVisible(false);
maximize_button_->SetVisible(false);
break;
case views::FRAME_BUTTON_CLOSE:
close_button_->SetVisible(false);
break;
}
}
void OpaqueBrowserFrameViewLayout::SetBoundsForButton(
views::View* host,
views::ImageButton* button,
ButtonAlignment alignment,
int caption_y) {
gfx::Size button_size = button->GetPreferredSize();
button->SetImageAlignment(
(alignment == ALIGN_LEADING) ?
views::ImageButton::ALIGN_RIGHT : views::ImageButton::ALIGN_LEFT,
views::ImageButton::ALIGN_BOTTOM);
// There should always be the same number of non-shadow pixels visible to the
// side of the caption buttons. In maximized mode we extend buttons to the
// screen top and the rightmost button to the screen right (or leftmost button
// to the screen left, for left-aligned buttons) to obey Fitts' Law.
bool title_bar_condensed = IsTitleBarCondensed();
// When we are the first button on the leading side and are the close
// button, we must flip ourselves, because the close button assets have
// a little notch to fit in the rounded frame.
button->SetDrawImageMirrored(alignment == ALIGN_LEADING &&
!has_leading_buttons_ &&
button == close_button_);
// If the window is maximized, align the buttons to its upper edge.
int extra_height = title_bar_condensed ? extra_caption_y_ : 0;
switch (alignment) {
case ALIGN_LEADING: {
if (has_leading_buttons_)
leading_button_start_ += window_caption_spacing_;
// If we're the first button on the left and maximized, add width to the
// right hand side of the screen.
int extra_width = (title_bar_condensed && !has_leading_buttons_) ?
(kFrameBorderThickness -
views::NonClientFrameView::kFrameShadowThickness) : 0;
button->SetBounds(
leading_button_start_,
caption_y - extra_height,
button_size.width() + extra_width,
button_size.height() + extra_height);
leading_button_start_ += extra_width + button_size.width();
minimum_size_for_buttons_ += extra_width + button_size.width();
has_leading_buttons_ = true;
break;
}
case ALIGN_TRAILING: {
if (has_trailing_buttons_)
trailing_button_start_ += window_caption_spacing_;
// If we're the first button on the right and maximized, add width to the
// right hand side of the screen.
int extra_width = (title_bar_condensed && !has_trailing_buttons_) ?
(kFrameBorderThickness -
views::NonClientFrameView::kFrameShadowThickness) : 0;
button->SetBounds(
host->width() - trailing_button_start_ - extra_width -
button_size.width(),
caption_y - extra_height,
button_size.width() + extra_width,
button_size.height() + extra_height);
trailing_button_start_ += extra_width + button_size.width();
minimum_size_for_buttons_ += extra_width + button_size.width();
has_trailing_buttons_ = true;
break;
}
}
}
void OpaqueBrowserFrameViewLayout::SetView(int id, views::View* view) {
// Why do things this way instead of having an Init() method, where we're
// passed the views we'll handle? Because OpaqueBrowserFrameView doesn't own
// all the views which are part of it. The avatar stuff, for example, will be
// added and removed by the base class of OpaqueBrowserFrameView.
switch (id) {
case VIEW_ID_MINIMIZE_BUTTON:
if (view) {
DCHECK_EQ(std::string(views::ImageButton::kViewClassName),
view->GetClassName());
}
minimize_button_ = static_cast<views::ImageButton*>(view);
break;
case VIEW_ID_MAXIMIZE_BUTTON:
if (view) {
DCHECK_EQ(std::string(views::ImageButton::kViewClassName),
view->GetClassName());
}
maximize_button_ = static_cast<views::ImageButton*>(view);
break;
case VIEW_ID_RESTORE_BUTTON:
if (view) {
DCHECK_EQ(std::string(views::ImageButton::kViewClassName),
view->GetClassName());
}
restore_button_ = static_cast<views::ImageButton*>(view);
break;
case VIEW_ID_CLOSE_BUTTON:
if (view) {
DCHECK_EQ(std::string(views::ImageButton::kViewClassName),
view->GetClassName());
}
close_button_ = static_cast<views::ImageButton*>(view);
break;
case VIEW_ID_WINDOW_ICON:
window_icon_ = view;
break;
case VIEW_ID_WINDOW_TITLE:
if (view) {
DCHECK_EQ(std::string(views::Label::kViewClassName),
view->GetClassName());
}
window_title_ = static_cast<views::Label*>(view);
break;
#if defined(ENABLE_SUPERVISED_USERS)
case VIEW_ID_SUPERVISED_USER_AVATAR_LABEL:
supervised_user_avatar_label_ =
static_cast<SupervisedUserAvatarLabel*>(view);
break;
#endif
case VIEW_ID_AVATAR_BUTTON:
if (view) {
DCHECK_EQ(std::string(AvatarMenuButton::kViewClassName),
view->GetClassName());
}
avatar_button_ = static_cast<AvatarMenuButton*>(view);
break;
case VIEW_ID_NEW_AVATAR_BUTTON:
new_avatar_button_ = view;
break;
default:
NOTIMPLEMENTED() << "Unknown view id " << id;
break;
}
}
///////////////////////////////////////////////////////////////////////////////
// OpaqueBrowserFrameView, views::LayoutManager:
void OpaqueBrowserFrameViewLayout::Layout(views::View* host) {
// Reset all our data so that everything is invisible.
int thickness = FrameBorderThickness(false);
leading_button_start_ = thickness;
trailing_button_start_ = thickness;
minimum_size_for_buttons_ = leading_button_start_ + trailing_button_start_;
has_leading_buttons_ = false;
has_trailing_buttons_ = false;
LayoutWindowControls(host);
LayoutTitleBar(host);
// We now add a single pixel to the leading spacing. We do this because the
// avatar and tab strip start one pixel inward compared to where things start
// on the trailing side.
leading_button_start_++;
if (delegate_->IsRegularOrGuestSession() && switches::IsNewAvatarMenu())
LayoutNewStyleAvatar(host);
else
LayoutAvatar(host);
client_view_bounds_ = CalculateClientAreaBounds(
host->width(), host->height());
}
gfx::Size OpaqueBrowserFrameViewLayout::GetPreferredSize(
const views::View* host) const {
// This is never used; NonClientView::GetPreferredSize() will be called
// instead.
NOTREACHED();
return gfx::Size();
}
void OpaqueBrowserFrameViewLayout::ViewAdded(views::View* host,
views::View* view) {
SetView(view->id(), view);
}
void OpaqueBrowserFrameViewLayout::ViewRemoved(views::View* host,
views::View* view) {
SetView(view->id(), nullptr);
}
|