2009-09-10 18:07:56 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Aaron Leventhal <aaronl@netscape.com> (original author)
|
|
|
|
* Kyle Yuan <kyle.yuan@sun.com>
|
|
|
|
* Alexander Surkov <surkov.alexander@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsXULComboboxAccessible.h"
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
#include "States.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
#include "nsAccessibilityService.h"
|
2010-06-08 09:39:58 -07:00
|
|
|
#include "nsCoreUtils.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
#include "nsIDOMXULMenuListElement.h"
|
|
|
|
#include "nsIDOMXULSelectCntrlItemEl.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULComboboxAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsXULComboboxAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULComboboxAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsAccessibleWrap(aContent, aShell)
|
2009-09-10 18:07:56 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULComboboxAccessible::NativeRole()
|
2009-09-10 18:07:56 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
if (mContent->AttrValueIs(kNameSpaceID_None, nsAccessibilityAtoms::type,
|
2010-09-04 19:14:01 -07:00
|
|
|
nsAccessibilityAtoms::autocomplete, eIgnoreCase))
|
|
|
|
return nsIAccessibleRole::ROLE_AUTOCOMPLETE;
|
|
|
|
return nsIAccessibleRole::ROLE_COMBOBOX;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsXULComboboxAccessible::NativeState()
|
2009-09-10 18:07:56 -07:00
|
|
|
{
|
|
|
|
// As a nsComboboxAccessible we can have the following states:
|
|
|
|
// STATE_FOCUSED
|
|
|
|
// STATE_FOCUSABLE
|
|
|
|
// STATE_HASPOPUP
|
|
|
|
// STATE_EXPANDED
|
|
|
|
// STATE_COLLAPSED
|
|
|
|
|
|
|
|
// Get focus status from base class
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 states = nsAccessible::NativeState();
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMenuListElement> menuList(do_QueryInterface(mContent));
|
2009-09-10 18:07:56 -07:00
|
|
|
if (menuList) {
|
|
|
|
PRBool isOpen;
|
|
|
|
menuList->GetOpen(&isOpen);
|
|
|
|
if (isOpen) {
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::EXPANDED;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
else {
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::COLLAPSED;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::HASPOPUP | states::FOCUSABLE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
return states;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULComboboxAccessible::GetValue(nsAString& aValue)
|
|
|
|
{
|
|
|
|
aValue.Truncate();
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// The value is the option or text shown entered in the combobox.
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMenuListElement> menuList(do_QueryInterface(mContent));
|
2009-09-10 18:07:56 -07:00
|
|
|
if (menuList)
|
|
|
|
return menuList->GetLabel(aValue);
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2011-04-23 06:14:05 -07:00
|
|
|
void
|
|
|
|
nsXULComboboxAccessible::Description(nsString& aDescription)
|
2009-09-10 18:07:56 -07:00
|
|
|
{
|
|
|
|
aDescription.Truncate();
|
|
|
|
// Use description of currently focused option
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMenuListElement> menuListElm(do_QueryInterface(mContent));
|
2009-09-10 18:07:56 -07:00
|
|
|
if (!menuListElm)
|
2011-04-23 06:14:05 -07:00
|
|
|
return;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> focusedOptionItem;
|
|
|
|
menuListElm->GetSelectedItem(getter_AddRefs(focusedOptionItem));
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIContent> focusedOptionContent =
|
|
|
|
do_QueryInterface(focusedOptionItem);
|
|
|
|
if (focusedOptionContent) {
|
2011-04-23 06:14:05 -07:00
|
|
|
nsAccessible* focusedOptionAcc = GetAccService()->
|
|
|
|
GetAccessibleInWeakShell(focusedOptionContent, mWeakShell);
|
|
|
|
if (focusedOptionAcc)
|
|
|
|
focusedOptionAcc->Description(aDescription);
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsXULComboboxAccessible::GetAllowsAnonChildAccessibles()
|
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
if (mContent->NodeInfo()->Equals(nsAccessibilityAtoms::textbox, kNameSpaceID_XUL) ||
|
|
|
|
mContent->AttrValueIs(kNameSpaceID_None, nsAccessibilityAtoms::editable,
|
|
|
|
nsAccessibilityAtoms::_true, eIgnoreCase)) {
|
2009-09-10 18:07:56 -07:00
|
|
|
// Both the XUL <textbox type="autocomplete"> and <menulist editable="true"> widgets
|
|
|
|
// use nsXULComboboxAccessible. We need to walk the anonymous children for these
|
|
|
|
// so that the entry field is a child
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Argument of PR_FALSE indicates we don't walk anonymous children for
|
|
|
|
// menuitems
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULComboboxAccessible::GetNumActions(PRUint8 *aNumActions)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumActions);
|
|
|
|
|
|
|
|
// Just one action (click).
|
|
|
|
*aNumActions = 1;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULComboboxAccessible::DoAction(PRUint8 aIndex)
|
|
|
|
{
|
|
|
|
if (aIndex != nsXULComboboxAccessible::eAction_Click) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Programmaticaly toggle the combo box.
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMenuListElement> menuList(do_QueryInterface(mContent));
|
2009-09-10 18:07:56 -07:00
|
|
|
if (!menuList) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
PRBool isDroppedDown;
|
|
|
|
menuList->GetOpen(&isDroppedDown);
|
|
|
|
return menuList->SetOpen(!isDroppedDown);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULComboboxAccessible::GetActionName(PRUint8 aIndex, nsAString& aName)
|
|
|
|
{
|
|
|
|
if (aIndex != nsXULComboboxAccessible::eAction_Click) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Our action name is the reverse of our state:
|
|
|
|
// if we are close -> open is our name.
|
|
|
|
// if we are open -> close is our name.
|
|
|
|
// Uses the frame to get the state, updated on every click.
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULMenuListElement> menuList(do_QueryInterface(mContent));
|
2009-09-10 18:07:56 -07:00
|
|
|
if (!menuList) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
PRBool isDroppedDown;
|
|
|
|
menuList->GetOpen(&isDroppedDown);
|
|
|
|
if (isDroppedDown)
|
|
|
|
aName.AssignLiteral("close");
|
|
|
|
else
|
|
|
|
aName.AssignLiteral("open");
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|