This source file includes following definitions.
- create
- isEnabled
- isSelected
- isSelectedOptionActive
- elementRect
- computeAccessibilityIsIgnored
- canSetSelectedAttribute
- stringValue
- actionElement
- parentObject
- setSelected
- listBoxOptionParentNode
- listBoxOptionIndex
#include "config.h"
#include "core/accessibility/AXListBoxOption.h"
#include "core/accessibility/AXObjectCache.h"
#include "core/html/HTMLOptGroupElement.h"
#include "core/html/HTMLOptionElement.h"
#include "core/html/HTMLSelectElement.h"
#include "core/rendering/RenderListBox.h"
namespace WebCore {
using namespace HTMLNames;
AXListBoxOption::AXListBoxOption()
: m_optionElement(0)
{
}
AXListBoxOption::~AXListBoxOption()
{
}
PassRefPtr<AXListBoxOption> AXListBoxOption::create()
{
return adoptRef(new AXListBoxOption());
}
bool AXListBoxOption::isEnabled() const
{
if (!m_optionElement)
return false;
if (isHTMLOptGroupElement(*m_optionElement))
return false;
if (equalIgnoringCase(getAttribute(aria_disabledAttr), "true"))
return false;
if (m_optionElement->hasAttribute(disabledAttr))
return false;
return true;
}
bool AXListBoxOption::isSelected() const
{
if (!isHTMLOptionElement(m_optionElement))
return false;
return toHTMLOptionElement(m_optionElement)->selected();
}
bool AXListBoxOption::isSelectedOptionActive() const
{
HTMLSelectElement* listBoxParentNode = listBoxOptionParentNode();
if (!listBoxParentNode)
return false;
return listBoxParentNode->activeSelectionEndListIndex() == listBoxOptionIndex();
}
LayoutRect AXListBoxOption::elementRect() const
{
LayoutRect rect;
if (!m_optionElement)
return rect;
HTMLSelectElement* listBoxParentNode = listBoxOptionParentNode();
if (!listBoxParentNode)
return rect;
RenderObject* listBoxRenderer = listBoxParentNode->renderer();
if (!listBoxRenderer)
return rect;
LayoutRect parentRect = listBoxRenderer->document().axObjectCache()->getOrCreate(listBoxRenderer)->elementRect();
int index = listBoxOptionIndex();
if (index != -1)
rect = toRenderListBox(listBoxRenderer)->itemBoundingBoxRect(parentRect.location(), index);
return rect;
}
bool AXListBoxOption::computeAccessibilityIsIgnored() const
{
if (!m_optionElement)
return true;
if (accessibilityIsIgnoredByDefault())
return true;
return parentObject()->accessibilityIsIgnored();
}
bool AXListBoxOption::canSetSelectedAttribute() const
{
if (!isHTMLOptionElement(m_optionElement))
return false;
if (m_optionElement->isDisabledFormControl())
return false;
HTMLSelectElement* selectElement = listBoxOptionParentNode();
if (selectElement && selectElement->isDisabledFormControl())
return false;
return true;
}
String AXListBoxOption::stringValue() const
{
if (!m_optionElement)
return String();
const AtomicString& ariaLabel = getAttribute(aria_labelAttr);
if (!ariaLabel.isNull())
return ariaLabel;
if (isHTMLOptionElement(*m_optionElement))
return toHTMLOptionElement(m_optionElement)->text();
if (isHTMLOptGroupElement(*m_optionElement))
return toHTMLOptGroupElement(m_optionElement)->groupLabelText();
return String();
}
Element* AXListBoxOption::actionElement() const
{
return m_optionElement;
}
AXObject* AXListBoxOption::parentObject() const
{
HTMLSelectElement* parentNode = listBoxOptionParentNode();
if (!parentNode)
return 0;
return m_optionElement->document().axObjectCache()->getOrCreate(parentNode);
}
void AXListBoxOption::setSelected(bool selected)
{
HTMLSelectElement* selectElement = listBoxOptionParentNode();
if (!selectElement)
return;
if (!canSetSelectedAttribute())
return;
bool isOptionSelected = isSelected();
if ((isOptionSelected && selected) || (!isOptionSelected && !selected))
return;
int optionIndex = selectElement->listToOptionIndex(listBoxOptionIndex());
selectElement->accessKeySetSelectedIndex(optionIndex);
}
HTMLSelectElement* AXListBoxOption::listBoxOptionParentNode() const
{
if (!m_optionElement)
return 0;
if (isHTMLOptionElement(*m_optionElement))
return toHTMLOptionElement(m_optionElement)->ownerSelectElement();
if (isHTMLOptGroupElement(*m_optionElement))
return toHTMLOptGroupElement(m_optionElement)->ownerSelectElement();
return 0;
}
int AXListBoxOption::listBoxOptionIndex() const
{
if (!m_optionElement)
return -1;
HTMLSelectElement* selectElement = listBoxOptionParentNode();
if (!selectElement)
return -1;
const Vector<HTMLElement*>& listItems = selectElement->listItems();
unsigned length = listItems.size();
for (unsigned i = 0; i < length; i++) {
if (listItems[i] == m_optionElement)
return i;
}
return -1;
}
}