2000-12-31 16:12:15 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* ***** 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
|
|
|
|
* Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2012
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Jignesh Kakadiya (jigneshhk1992@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 "XULSelectControlAccessible.h"
|
|
|
|
|
|
|
|
#include "nsAccessibilityService.h"
|
|
|
|
#include "nsDocAccessible.h"
|
|
|
|
|
|
|
|
#include "nsIDOMXULContainerElement.h"
|
|
|
|
#include "nsIDOMXULSelectCntrlItemEl.h"
|
|
|
|
#include "nsIDOMXULMultSelectCntrlEl.h"
|
|
|
|
#include "nsIDOMKeyEvent.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMXULElement.h"
|
|
|
|
#include "nsIMutableArray.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/Element.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// XULSelectControlAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
XULSelectControlAccessible::
|
2012-02-07 17:23:12 -08:00
|
|
|
XULSelectControlAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsAccessibleWrap(aContent, aShell)
|
2000-12-31 16:12:15 -08:00
|
|
|
{
|
|
|
|
mSelectControl = do_QueryInterface(aContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// XULSelectControlAccessible: nsAccessNode
|
|
|
|
|
|
|
|
void
|
|
|
|
XULSelectControlAccessible::Shutdown()
|
|
|
|
{
|
|
|
|
mSelectControl = nsnull;
|
|
|
|
nsAccessibleWrap::Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// XULSelectControlAccessible: SelectAccessible
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::IsSelect()
|
|
|
|
{
|
|
|
|
return !!mSelectControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interface methods
|
|
|
|
already_AddRefed<nsIArray>
|
|
|
|
XULSelectControlAccessible::SelectedItems()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIMutableArray> selectedItems =
|
|
|
|
do_CreateInstance(NS_ARRAY_CONTRACTID);
|
2012-02-07 17:23:12 -08:00
|
|
|
if (!selectedItems)
|
2000-12-31 16:12:15 -08:00
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
// For XUL multi-select control
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> xulMultiSelect =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
if (xulMultiSelect) {
|
|
|
|
PRInt32 length = 0;
|
|
|
|
xulMultiSelect->GetSelectedCount(&length);
|
|
|
|
for (PRInt32 index = 0; index < length; index++) {
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm;
|
|
|
|
xulMultiSelect->GetSelectedItem(index, getter_AddRefs(itemElm));
|
|
|
|
nsCOMPtr<nsINode> itemNode(do_QueryInterface(itemElm));
|
2012-02-07 17:23:12 -08:00
|
|
|
nsAccessible* item =
|
|
|
|
GetAccService()->GetAccessibleInWeakShell(itemNode, mWeakShell);
|
2000-12-31 16:12:15 -08:00
|
|
|
if (item)
|
|
|
|
selectedItems->AppendElement(static_cast<nsIAccessible*>(item),
|
|
|
|
false);
|
|
|
|
}
|
|
|
|
} else { // Single select?
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm;
|
|
|
|
mSelectControl->GetSelectedItem(getter_AddRefs(itemElm));
|
|
|
|
nsCOMPtr<nsINode> itemNode(do_QueryInterface(itemElm));
|
|
|
|
if(itemNode) {
|
2012-02-07 17:23:12 -08:00
|
|
|
nsAccessible* item =
|
|
|
|
GetAccService()->GetAccessibleInWeakShell(itemNode, mWeakShell);
|
2000-12-31 16:12:15 -08:00
|
|
|
if (item)
|
|
|
|
selectedItems->AppendElement(static_cast<nsIAccessible*>(item),
|
|
|
|
false);
|
|
|
|
}
|
2012-02-07 17:23:12 -08:00
|
|
|
}
|
2000-12-31 16:12:15 -08:00
|
|
|
|
|
|
|
nsIMutableArray* items = nsnull;
|
|
|
|
selectedItems.forget(&items);
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAccessible*
|
|
|
|
XULSelectControlAccessible::GetSelectedItem(PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm;
|
|
|
|
if (multiSelectControl)
|
|
|
|
multiSelectControl->GetSelectedItem(aIndex, getter_AddRefs(itemElm));
|
|
|
|
else if (aIndex == 0)
|
|
|
|
mSelectControl->GetSelectedItem(getter_AddRefs(itemElm));
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> itemNode(do_QueryInterface(itemElm));
|
2012-02-07 17:23:12 -08:00
|
|
|
return itemNode ?
|
|
|
|
GetAccService()->GetAccessibleInWeakShell(itemNode, mWeakShell) : nsnull;
|
2000-12-31 16:12:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
XULSelectControlAccessible::SelectedItemCount()
|
|
|
|
{
|
|
|
|
// For XUL multi-select control
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
if (multiSelectControl) {
|
|
|
|
PRInt32 count = 0;
|
|
|
|
multiSelectControl->GetSelectedCount(&count);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For XUL single-select control/menulist
|
|
|
|
PRInt32 index;
|
|
|
|
mSelectControl->GetSelectedIndex(&index);
|
|
|
|
return (index >= 0) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::AddItemToSelection(PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
nsAccessible* item = GetChildAt(aIndex);
|
|
|
|
if (!item)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm =
|
|
|
|
do_QueryInterface(item->GetContent());
|
|
|
|
if (!itemElm)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool isItemSelected = false;
|
|
|
|
itemElm->GetSelected(&isItemSelected);
|
|
|
|
if (isItemSelected)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
|
|
|
|
if (multiSelectControl)
|
|
|
|
multiSelectControl->AddItemToSelection(itemElm);
|
|
|
|
else
|
|
|
|
mSelectControl->SetSelectedItem(itemElm);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::RemoveItemFromSelection(PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
nsAccessible* item = GetChildAt(aIndex);
|
|
|
|
if (!item)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm =
|
|
|
|
do_QueryInterface(item->GetContent());
|
|
|
|
if (!itemElm)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool isItemSelected = false;
|
|
|
|
itemElm->GetSelected(&isItemSelected);
|
|
|
|
if (!isItemSelected)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
|
|
|
|
if (multiSelectControl)
|
|
|
|
multiSelectControl->RemoveItemFromSelection(itemElm);
|
|
|
|
else
|
|
|
|
mSelectControl->SetSelectedItem(nsnull);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::IsItemSelected(PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
nsAccessible* item = GetChildAt(aIndex);
|
|
|
|
if (!item)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm =
|
|
|
|
do_QueryInterface(item->GetContent());
|
|
|
|
if (!itemElm)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool isItemSelected = false;
|
|
|
|
itemElm->GetSelected(&isItemSelected);
|
|
|
|
return isItemSelected;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::UnselectAll()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
multiSelectControl ?
|
|
|
|
multiSelectControl->ClearSelection() : mSelectControl->SetSelectedIndex(-1);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
XULSelectControlAccessible::SelectAll()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
if (multiSelectControl) {
|
|
|
|
multiSelectControl->SelectAll();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, don't support this method
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// XULSelectControlAccessible: Widgets
|
|
|
|
|
|
|
|
nsAccessible*
|
|
|
|
XULSelectControlAccessible::CurrentItem()
|
|
|
|
{
|
|
|
|
if (!mSelectControl)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> currentItemElm;
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
if (multiSelectControl)
|
|
|
|
multiSelectControl->GetCurrentItem(getter_AddRefs(currentItemElm));
|
|
|
|
else
|
|
|
|
mSelectControl->GetSelectedItem(getter_AddRefs(currentItemElm));
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> DOMNode;
|
|
|
|
if (currentItemElm)
|
|
|
|
DOMNode = do_QueryInterface(currentItemElm);
|
|
|
|
|
|
|
|
if (DOMNode) {
|
2012-02-07 17:23:12 -08:00
|
|
|
nsDocAccessible* document = GetDocAccessible();
|
2000-12-31 16:12:15 -08:00
|
|
|
if (document)
|
|
|
|
return document->GetAccessible(DOMNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
XULSelectControlAccessible::SetCurrentItem(nsAccessible* aItem)
|
|
|
|
{
|
|
|
|
if (!mSelectControl)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> itemElm =
|
|
|
|
do_QueryInterface(aItem->GetContent());
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> multiSelectControl =
|
|
|
|
do_QueryInterface(mSelectControl);
|
|
|
|
if (multiSelectControl)
|
|
|
|
multiSelectControl->SetCurrentItem(itemElm);
|
|
|
|
else
|
|
|
|
mSelectControl->SetSelectedItem(itemElm);
|
|
|
|
}
|