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
|
/*
* This file is part of the select element renderer in WebCore.
*
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
* Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2015 Apple Inc. All rights reserved.
* 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "RenderMenuList.h"
#include "AXObjectCache.h"
#include "AccessibilityMenuList.h"
#include "CSSFontSelector.h"
#include "Chrome.h"
#include "ColorBlending.h"
#include "DocumentInlines.h"
#include "ElementInlines.h"
#include "HTMLNames.h"
#include "HTMLOptionElement.h"
#include "HTMLOptGroupElement.h"
#include "HTMLSelectElement.h"
#include "LayoutIntegrationLineLayout.h"
#include "LocalFrame.h"
#include "LocalFrameView.h"
#include "NodeRenderStyle.h"
#include "Page.h"
#include "PopupMenu.h"
#include "RenderBoxInlines.h"
#include "RenderBoxModelObjectInlines.h"
#include "RenderChildIterator.h"
#include "RenderElementInlines.h"
#include "RenderScrollbar.h"
#include "RenderStyleSetters.h"
#include "RenderText.h"
#include "RenderTheme.h"
#include "RenderTreeBuilder.h"
#include "RenderView.h"
#include "StyleResolver.h"
#include "TextRun.h"
#include <math.h>
#include <wtf/TZoneMallocInlines.h>
#if PLATFORM(IOS_FAMILY)
#include "LocalizedStrings.h"
#include "RenderThemeIOS.h"
#endif
namespace WebCore {
using namespace HTMLNames;
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(RenderMenuList);
#if PLATFORM(IOS_FAMILY)
static size_t selectedOptionCount(const RenderMenuList& renderMenuList)
{
const auto& listItems = renderMenuList.selectElement().listItems();
size_t numberOfItems = listItems.size();
size_t count = 0;
for (size_t i = 0; i < numberOfItems; ++i) {
auto* option = dynamicDowncast<HTMLOptionElement>(*listItems[i]);
if (option && option->selected())
++count;
}
return count;
}
#endif
RenderMenuList::RenderMenuList(HTMLSelectElement& element, RenderStyle&& style)
: RenderFlexibleBox(Type::MenuList, element, WTFMove(style))
, m_needsOptionsWidthUpdate(true)
, m_optionsWidth(0)
#if !PLATFORM(IOS_FAMILY)
, m_popupIsVisible(false)
#endif
{
ASSERT(isRenderMenuList());
}
// Do not add any code in below destructor. Add it to willBeDestroyed() instead.
RenderMenuList::~RenderMenuList() = default;
void RenderMenuList::willBeDestroyed()
{
#if !PLATFORM(IOS_FAMILY)
if (m_popup)
m_popup->disconnectClient();
m_popup = nullptr;
#endif
RenderFlexibleBox::willBeDestroyed();
}
void RenderMenuList::setInnerRenderer(RenderBlock& innerRenderer)
{
ASSERT(!m_innerBlock.get());
m_innerBlock = innerRenderer;
adjustInnerStyle();
}
void RenderMenuList::adjustInnerStyle()
{
auto& innerStyle = m_innerBlock->mutableStyle();
innerStyle.setFlexGrow(1);
innerStyle.setFlexShrink(1);
// min-width: 0; is needed for correct shrinking.
innerStyle.setLogicalMinWidth(Length(0, LengthType::Fixed));
// Use margin:auto instead of align-items:center to get safe centering, i.e.
// when the content overflows, treat it the same as align-items: flex-start.
// But we only do that for the cases where html.css would otherwise use center.
if (style().alignItems().position() == ItemPosition::Center) {
innerStyle.setMarginBefore(Length());
innerStyle.setMarginAfter(Length());
innerStyle.setAlignSelfPosition(ItemPosition::FlexStart);
}
auto paddingBox = theme().popupInternalPaddingBox(style());
if (!writingMode().isHorizontal())
paddingBox = LengthBox(paddingBox.left().value(), paddingBox.top().value(), paddingBox.right().value(), paddingBox.bottom().value());
innerStyle.setPaddingBox(WTFMove(paddingBox));
if (document().page()->chrome().selectItemWritingDirectionIsNatural()) {
// Items in the popup will not respect the CSS text-align and direction properties,
// so we must adjust our own style to match.
innerStyle.setTextAlign(TextAlignMode::Left);
TextDirection direction = (m_buttonText && m_buttonText->text().defaultWritingDirection() == U_RIGHT_TO_LEFT) ? TextDirection::RTL : TextDirection::LTR;
innerStyle.setDirection(direction);
#if PLATFORM(IOS_FAMILY)
} else if (document().page()->chrome().selectItemAlignmentFollowsMenuWritingDirection()) {
innerStyle.setTextAlign(writingMode().isBidiLTR() ? TextAlignMode::Left : TextAlignMode::Right);
TextDirection direction;
UnicodeBidi unicodeBidi;
if (multiple() && selectedOptionCount(*this) != 1) {
direction = (m_buttonText && m_buttonText->text().defaultWritingDirection() == U_RIGHT_TO_LEFT) ? TextDirection::RTL : TextDirection::LTR;
unicodeBidi = UnicodeBidi::Normal;
} else if (m_optionStyle) {
direction = m_optionStyle->writingMode().bidiDirection();
unicodeBidi = m_optionStyle->unicodeBidi();
} else {
direction = style().writingMode().bidiDirection();
unicodeBidi = style().unicodeBidi();
}
innerStyle.setDirection(direction);
innerStyle.setUnicodeBidi(unicodeBidi);
}
#else
} else if (m_optionStyle && document().page()->chrome().selectItemAlignmentFollowsMenuWritingDirection()) {
if ((m_optionStyle->writingMode().bidiDirection() != innerStyle.writingMode().bidiDirection()
|| m_optionStyle->unicodeBidi() != innerStyle.unicodeBidi()))
m_innerBlock->setNeedsLayoutAndPrefWidthsRecalc();
innerStyle.setTextAlign(writingMode().isBidiLTR() ? TextAlignMode::Left : TextAlignMode::Right);
innerStyle.setDirection(m_optionStyle->writingMode().bidiDirection());
innerStyle.setUnicodeBidi(m_optionStyle->unicodeBidi());
}
#endif // !PLATFORM(IOS_FAMILY)
if (m_innerBlock && m_innerBlock->layoutBox()) {
if (auto* inlineFormattingContextRoot = dynamicDowncast<RenderBlockFlow>(*m_innerBlock); inlineFormattingContextRoot && inlineFormattingContextRoot->inlineLayout())
inlineFormattingContextRoot->inlineLayout()->rootStyleWillChange(*inlineFormattingContextRoot, innerStyle);
if (auto* lineLayout = LayoutIntegration::LineLayout::containing(*m_innerBlock))
lineLayout->styleWillChange(*m_innerBlock, innerStyle, StyleDifference::Layout);
LayoutIntegration::LineLayout::updateStyle(*m_innerBlock);
for (auto& child : childrenOfType<RenderText>(*m_innerBlock))
LayoutIntegration::LineLayout::updateStyle(child);
}
}
HTMLSelectElement& RenderMenuList::selectElement() const
{
return downcast<HTMLSelectElement>(nodeForNonAnonymous());
}
void RenderMenuList::didAttachChild(RenderObject& child, RenderObject*)
{
if (CheckedPtr cache = document().existingAXObjectCache())
cache->childrenChanged(this, &child);
}
void RenderMenuList::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
{
RenderBlock::styleDidChange(diff, oldStyle);
if (m_innerBlock) // RenderBlock handled updating the anonymous block's style.
adjustInnerStyle();
bool fontChanged = !oldStyle || !oldStyle->fontCascadeEqual(style());
if (fontChanged) {
updateOptionsWidth();
m_needsOptionsWidthUpdate = false;
}
}
void RenderMenuList::updateOptionsWidth()
{
float maxOptionWidth = 0;
const auto& listItems = selectElement().listItems();
int size = listItems.size();
for (int i = 0; i < size; ++i) {
RefPtr option = dynamicDowncast<HTMLOptionElement>(listItems[i].get());
if (!option)
continue;
String text = option->textIndentedToRespectGroupLabel();
text = applyTextTransform(style(), text);
if (theme().popupOptionSupportsTextIndent()) {
// Add in the option's text indent. We can't calculate percentage values for now.
float optionWidth = 0;
if (auto* optionStyle = option->computedStyleForEditability())
optionWidth += minimumValueForLength(optionStyle->textIndent(), 0);
if (!text.isEmpty()) {
const FontCascade& font = style().fontCascade();
TextRun run = RenderBlock::constructTextRun(text, style());
optionWidth += font.width(run);
}
maxOptionWidth = std::max(maxOptionWidth, optionWidth);
} else if (!text.isEmpty()) {
const FontCascade& font = style().fontCascade();
TextRun run = RenderBlock::constructTextRun(text, style());
maxOptionWidth = std::max(maxOptionWidth, font.width(run));
}
}
int width = static_cast<int>(ceilf(maxOptionWidth));
if (m_optionsWidth == width)
return;
m_optionsWidth = width;
if (parent())
setNeedsLayoutAndPrefWidthsRecalc();
}
void RenderMenuList::updateFromElement()
{
if (m_needsOptionsWidthUpdate) {
updateOptionsWidth();
m_needsOptionsWidthUpdate = false;
}
#if !PLATFORM(IOS_FAMILY)
if (m_popupIsVisible)
m_popup->updateFromElement();
else
#endif
setTextFromOption(selectElement().selectedIndex());
}
void RenderMenuList::setTextFromOption(int optionIndex)
{
const auto& listItems = selectElement().listItems();
int size = listItems.size();
int i = selectElement().optionToListIndex(optionIndex);
String text = emptyString();
if (i >= 0 && i < size) {
if (RefPtr option = dynamicDowncast<HTMLOptionElement>(*listItems[i])) {
text = option->textIndentedToRespectGroupLabel();
auto* style = option->computedStyleForEditability();
m_optionStyle = style ? RenderStyle::clonePtr(*style) : nullptr;
}
}
#if PLATFORM(IOS_FAMILY)
if (multiple()) {
size_t count = selectedOptionCount(*this);
if (count != 1)
text = htmlSelectMultipleItems(count);
}
#endif
setText(text.trim(deprecatedIsSpaceOrNewline));
didUpdateActiveOption(optionIndex);
}
void RenderMenuList::setText(const String& s)
{
String textToUse = s.isEmpty() ? "\n"_str : s;
if (m_buttonText)
m_buttonText->setText(textToUse.impl(), true);
else {
auto newButtonText = createRenderer<RenderText>(Type::Text, document(), textToUse);
m_buttonText = *newButtonText;
// FIXME: This mutation should go through the normal RenderTreeBuilder path.
if (RenderTreeBuilder::current())
RenderTreeBuilder::current()->attach(*this, WTFMove(newButtonText));
else
RenderTreeBuilder(*document().renderView()).attach(*this, WTFMove(newButtonText));
}
adjustInnerStyle();
}
String RenderMenuList::text() const
{
return m_buttonText ? m_buttonText->text() : String();
}
LayoutRect RenderMenuList::controlClipRect(const LayoutPoint& additionalOffset) const
{
// Clip to the intersection of the content box and the content box for the inner box
// This will leave room for the arrows which sit in the inner box padding,
// and if the inner box ever spills out of the outer box, that will get clipped too.
LayoutRect outerBox(additionalOffset.x() + borderLeft() + paddingLeft(),
additionalOffset.y() + borderTop() + paddingTop(),
contentBoxWidth(),
contentBoxHeight());
LayoutRect innerBox(additionalOffset.x() + m_innerBlock->x() + m_innerBlock->paddingLeft(),
additionalOffset.y() + m_innerBlock->y() + m_innerBlock->paddingTop(),
m_innerBlock->contentBoxWidth(),
m_innerBlock->contentBoxHeight());
return intersection(outerBox, innerBox);
}
void RenderMenuList::computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const
{
// FIXME: Fix field-sizing: content with size containment
// https://bugs.webkit.org/show_bug.cgi?id=269169
if (style().fieldSizing() == FieldSizing::Content)
return RenderFlexibleBox::computeIntrinsicLogicalWidths(minLogicalWidth, maxLogicalWidth);
maxLogicalWidth = shouldApplySizeContainment() ? theme().minimumMenuListSize(style()) : std::max(m_optionsWidth, theme().minimumMenuListSize(style()));
maxLogicalWidth += m_innerBlock->paddingStart() + m_innerBlock->paddingEnd();
if (shouldApplySizeOrInlineSizeContainment()) {
if (auto logicalWidth = explicitIntrinsicInnerLogicalWidth())
maxLogicalWidth = logicalWidth.value();
}
auto& logicalWidth = style().logicalWidth();
if (logicalWidth.isCalculated())
minLogicalWidth = std::max(0_lu, valueForLength(logicalWidth, 0_lu));
else if (!logicalWidth.isPercent())
minLogicalWidth = maxLogicalWidth;
}
void RenderMenuList::computePreferredLogicalWidths()
{
if (style().fieldSizing() == FieldSizing::Content) {
RenderFlexibleBox::computePreferredLogicalWidths();
return;
}
m_minPreferredLogicalWidth = 0;
m_maxPreferredLogicalWidth = 0;
if (style().logicalWidth().isFixed() && style().logicalWidth().value() > 0)
m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = adjustContentBoxLogicalWidthForBoxSizing(style().logicalWidth());
else
computeIntrinsicLogicalWidths(m_minPreferredLogicalWidth, m_maxPreferredLogicalWidth);
RenderBox::computePreferredLogicalWidths(style().logicalMinWidth(), style().logicalMaxWidth(), writingMode().isHorizontal() ? horizontalBorderAndPaddingExtent() : verticalBorderAndPaddingExtent());
setPreferredLogicalWidthsDirty(false);
}
#if PLATFORM(IOS_FAMILY)
NO_RETURN_DUE_TO_ASSERT
void RenderMenuList::showPopup()
{
ASSERT_NOT_REACHED();
}
#else
void RenderMenuList::showPopup()
{
if (m_popupIsVisible)
return;
ASSERT(m_innerBlock);
if (!m_popup)
m_popup = document().page()->chrome().createPopupMenu(*this);
m_popupIsVisible = true;
// Compute the top left taking transforms into account, but use
// the actual width of the element to size the popup.
FloatPoint absTopLeft = localToAbsolute(FloatPoint(), UseTransforms);
IntRect absBounds = absoluteBoundingBoxRectIgnoringTransforms();
absBounds.setLocation(roundedIntPoint(absTopLeft));
m_popup->show(absBounds, view().frameView(), selectElement().optionToListIndex(selectElement().selectedIndex())); // May destroy `this`.
}
#endif
void RenderMenuList::hidePopup()
{
#if !PLATFORM(IOS_FAMILY)
if (m_popup)
m_popup->hide();
#endif
}
void RenderMenuList::valueChanged(unsigned listIndex, bool fireOnChange)
{
// Check to ensure a page navigation has not occurred while
// the popup was up.
if (&document() != document().frame()->document())
return;
selectElement().optionSelectedByUser(selectElement().listToOptionIndex(listIndex), fireOnChange);
}
void RenderMenuList::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
{
selectElement().listBoxSelectItem(listIndex, allowMultiplySelections, shift, fireOnChangeNow);
}
bool RenderMenuList::multiple() const
{
return selectElement().multiple();
}
void RenderMenuList::didSetSelectedIndex(int listIndex)
{
didUpdateActiveOption(selectElement().listToOptionIndex(listIndex));
}
void RenderMenuList::didUpdateActiveOption(int optionIndex)
{
if (!AXObjectCache::accessibilityEnabled())
return;
CheckedPtr axCache = document().existingAXObjectCache();
if (!axCache)
return;
if (m_lastActiveIndex == optionIndex)
return;
m_lastActiveIndex = optionIndex;
int listIndex = selectElement().optionToListIndex(optionIndex);
if (listIndex < 0 || listIndex >= static_cast<int>(selectElement().listItems().size()))
return;
auto* axObject = axCache->get(this);
if (RefPtr menuList = dynamicDowncast<AccessibilityMenuList>(axObject))
menuList->didUpdateActiveOption(optionIndex);
}
String RenderMenuList::itemText(unsigned listIndex) const
{
auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size())
return String();
String itemString;
auto& element = *listItems[listIndex];
if (auto* optGroup = dynamicDowncast<HTMLOptGroupElement>(element))
itemString = optGroup->groupLabelText();
else if (auto* option = dynamicDowncast<HTMLOptionElement>(element))
itemString = option->textIndentedToRespectGroupLabel();
return applyTextTransform(style(), itemString);
}
String RenderMenuList::itemLabel(unsigned) const
{
return String();
}
String RenderMenuList::itemIcon(unsigned) const
{
return String();
}
String RenderMenuList::itemAccessibilityText(unsigned listIndex) const
{
// Allow the accessible name be changed if necessary.
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size())
return String();
return listItems[listIndex]->attributeWithoutSynchronization(aria_labelAttr);
}
String RenderMenuList::itemToolTip(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size())
return String();
return listItems[listIndex]->title();
}
bool RenderMenuList::itemIsEnabled(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size())
return false;
HTMLElement* element = listItems[listIndex].get();
if (!is<HTMLOptionElement>(*element))
return false;
bool groupEnabled = true;
if (Element* parentElement = element->parentElement()) {
if (is<HTMLOptGroupElement>(*parentElement))
groupEnabled = !parentElement->isDisabledFormControl();
}
if (!groupEnabled)
return false;
return !element->isDisabledFormControl();
}
PopupMenuStyle RenderMenuList::itemStyle(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size()) {
// If we are making an out of bounds access, then we want to use the style
// of a different option element (index 0). However, if there isn't an option element
// before at index 0, we fall back to the menu's style.
if (!listIndex)
return menuStyle();
// Try to retrieve the style of an option element we know exists (index 0).
listIndex = 0;
}
HTMLElement* element = listItems[listIndex].get();
Color itemBackgroundColor;
bool itemHasCustomBackgroundColor;
getItemBackgroundColor(listIndex, itemBackgroundColor, itemHasCustomBackgroundColor);
auto* style = element->computedStyleForEditability();
if (!style)
return menuStyle();
return PopupMenuStyle(style->visitedDependentColorWithColorFilter(CSSPropertyColor), itemBackgroundColor, style->fontCascade(), style->visibility() == Visibility::Visible,
style->display() == DisplayType::None, true, style->textIndent(), style->writingMode().bidiDirection(), isOverride(style->unicodeBidi()),
itemHasCustomBackgroundColor ? PopupMenuStyle::CustomBackgroundColor : PopupMenuStyle::DefaultBackgroundColor);
}
void RenderMenuList::getItemBackgroundColor(unsigned listIndex, Color& itemBackgroundColor, bool& itemHasCustomBackgroundColor) const
{
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size()) {
itemBackgroundColor = style().visitedDependentColorWithColorFilter(CSSPropertyBackgroundColor);
itemHasCustomBackgroundColor = false;
return;
}
HTMLElement* element = listItems[listIndex].get();
Color backgroundColor;
if (auto* style = element->computedStyleForEditability())
backgroundColor = style->visitedDependentColorWithColorFilter(CSSPropertyBackgroundColor);
itemHasCustomBackgroundColor = backgroundColor.isValid() && backgroundColor.isVisible();
// If the item has an opaque background color, return that.
if (backgroundColor.isOpaque()) {
itemBackgroundColor = backgroundColor;
return;
}
// Otherwise, the item's background is overlayed on top of the menu background.
backgroundColor = blendSourceOver(style().visitedDependentColorWithColorFilter(CSSPropertyBackgroundColor), backgroundColor);
if (backgroundColor.isOpaque()) {
itemBackgroundColor = backgroundColor;
return;
}
// If the menu background is not opaque, then add an opaque white background behind.
itemBackgroundColor = blendSourceOver(Color::white, backgroundColor);
}
PopupMenuStyle RenderMenuList::menuStyle() const
{
const RenderStyle& styleToUse = m_innerBlock ? m_innerBlock->style() : style();
IntRect absBounds = absoluteBoundingBoxRectIgnoringTransforms();
return PopupMenuStyle(styleToUse.visitedDependentColorWithColorFilter(CSSPropertyColor), styleToUse.visitedDependentColorWithColorFilter(CSSPropertyBackgroundColor),
styleToUse.fontCascade(), styleToUse.usedVisibility() == Visibility::Visible, styleToUse.display() == DisplayType::None,
style().hasUsedAppearance() && style().usedAppearance() == StyleAppearance::Menulist, styleToUse.textIndent(),
style().writingMode().bidiDirection(), isOverride(style().unicodeBidi()), PopupMenuStyle::DefaultBackgroundColor,
PopupMenuStyle::SelectPopup, theme().popupMenuSize(styleToUse, absBounds));
}
HostWindow* RenderMenuList::hostWindow() const
{
return RenderFlexibleBox::hostWindow();
}
Ref<Scrollbar> RenderMenuList::createScrollbar(ScrollableArea& scrollableArea, ScrollbarOrientation orientation, ScrollbarWidth widthStyle)
{
bool usesLegacyScrollbarStyle = style().usesLegacyScrollbarStyle();
if (usesLegacyScrollbarStyle)
return RenderScrollbar::createCustomScrollbar(scrollableArea, orientation, &selectElement());
return Scrollbar::createNativeScrollbar(scrollableArea, orientation, widthStyle);
}
int RenderMenuList::clientInsetLeft() const
{
return 0;
}
int RenderMenuList::clientInsetRight() const
{
return 0;
}
const int endOfLinePadding = 2;
LayoutUnit RenderMenuList::clientPaddingLeft() const
{
if ((style().usedAppearance() == StyleAppearance::Menulist || style().usedAppearance() == StyleAppearance::MenulistButton) && writingMode().isBidiRTL()) {
// For these appearance values, the theme applies padding to leave room for the
// drop-down button. But leaving room for the button inside the popup menu itself
// looks strange, so we return a small default padding to avoid having a large empty
// space appear on the side of the popup menu.
return endOfLinePadding;
}
// If the appearance isn't MenulistPart, then the select is styled (non-native), so
// we want to return the user specified padding.
return paddingLeft() + m_innerBlock->paddingLeft();
}
LayoutUnit RenderMenuList::clientPaddingRight() const
{
if ((style().usedAppearance() == StyleAppearance::Menulist || style().usedAppearance() == StyleAppearance::MenulistButton) && style().writingMode().isBidiLTR())
return endOfLinePadding;
return paddingRight() + m_innerBlock->paddingRight();
}
int RenderMenuList::listSize() const
{
return selectElement().listItems().size();
}
int RenderMenuList::selectedIndex() const
{
return selectElement().optionToListIndex(selectElement().selectedIndex());
}
void RenderMenuList::popupDidHide()
{
#if !PLATFORM(IOS_FAMILY)
// PopupMenuMac::show in WebKitLegacy can call this callback even when popup had already been dismissed.
m_popupIsVisible = false;
#endif
}
bool RenderMenuList::itemIsSeparator(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
return listIndex < listItems.size() && listItems[listIndex]->hasTagName(hrTag);
}
bool RenderMenuList::itemIsLabel(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
return listIndex < listItems.size() && is<HTMLOptGroupElement>(*listItems[listIndex]);
}
bool RenderMenuList::itemIsSelected(unsigned listIndex) const
{
const auto& listItems = selectElement().listItems();
if (listIndex >= listItems.size())
return false;
auto* option = dynamicDowncast<HTMLOptionElement>(listItems[listIndex].get());
return option && option->selected();
}
void RenderMenuList::setTextFromItem(unsigned listIndex)
{
setTextFromOption(selectElement().listToOptionIndex(listIndex));
}
FontSelector* RenderMenuList::fontSelector() const
{
return &document().fontSelector();
}
#if PLATFORM(IOS_FAMILY)
void RenderMenuList::layout()
{
RenderFlexibleBox::layout();
// Ideally, we should not be adjusting styles during layout. However, for a
// pill-shaped appearance, the horizontal border radius is dependent on the
// computed height of the box. This means that the appearance cannot be declared
// prior to layout, since CSS only allows the horizontal border radius to be
// dependent on the computed width of the box.
//
// Ignoring the style's border radius and forcing a pill-shaped appearance at
// paint time is not an option, since focus rings and tap highlights will not
// use the correct border radius. Consequently, we need to adjust the border
// radius here.
//
// Note that similar adjustments are made in RenderSliderThumb, RenderButton
// and RenderTextControlSingleLine.
RenderThemeIOS::adjustRoundBorderRadius(mutableStyle(), *this);
}
#endif
}
|