2001-10-09 21:52:36 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
*
|
|
|
|
* 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) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* John Gaunt (jgaunt@netscape.com)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef _nsBaseWidgetAccessible_H_
|
|
|
|
#define _nsBaseWidgetAccessible_H_
|
|
|
|
|
|
|
|
#include "nsAccessible.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIContent.h"
|
2001-11-07 00:12:16 +00:00
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIDOMXULListener.h"
|
2001-10-09 21:52:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This file contains a number of classes that are used as base
|
|
|
|
* classes for the different accessibility implementations of
|
|
|
|
* the HTML and XUL widget sets. --jgaunt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Special Accessible that knows how to handle hit detection for flowing text
|
|
|
|
*/
|
|
|
|
class nsBlockAccessible : public nsAccessible
|
|
|
|
{
|
|
|
|
public:
|
2001-11-07 00:12:16 +00:00
|
|
|
nsBlockAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell);
|
|
|
|
NS_IMETHOD AccGetAt(PRInt32 x, PRInt32 y, nsIAccessible **_retval);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Special Accessible that just contains other accessible objects
|
|
|
|
* no actions, no name, no state, no value
|
|
|
|
*/
|
|
|
|
class nsContainerAccessible : public nsAccessible
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsContainerAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell);
|
|
|
|
NS_IMETHOD GetAccNumActions(PRUint8 *_retval);
|
2002-03-23 21:52:27 +00:00
|
|
|
NS_IMETHOD GetAccActionName(PRUint8 index, nsAString& _retval);
|
2001-11-07 00:12:16 +00:00
|
|
|
NS_IMETHOD AccDoAction(PRUint8 index);
|
|
|
|
NS_IMETHOD GetAccState(PRUint32 *_retval);
|
2002-03-23 21:52:27 +00:00
|
|
|
NS_IMETHOD GetAccValue(nsAString& _retval);
|
|
|
|
NS_IMETHOD GetAccName(nsAString& _retval);
|
2001-10-09 21:52:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Leaf version of DOM Accessible -- has no children
|
|
|
|
*/
|
|
|
|
class nsLeafAccessible : public nsAccessible
|
|
|
|
{
|
2001-11-07 00:12:16 +00:00
|
|
|
public:
|
|
|
|
nsLeafAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell);
|
|
|
|
NS_IMETHOD GetAccFirstChild(nsIAccessible **_retval);
|
|
|
|
NS_IMETHOD GetAccLastChild(nsIAccessible **_retval);
|
|
|
|
NS_IMETHOD GetAccChildCount(PRInt32 *_retval);
|
2001-10-09 21:52:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A type of accessible for DOM nodes containing an href="" attribute.
|
|
|
|
* It knows how to report the state of the link ( traveled or not )
|
|
|
|
* and can activate ( click ) the link programmatically.
|
|
|
|
*/
|
|
|
|
class nsLinkableAccessible : public nsAccessible
|
|
|
|
{
|
2001-11-07 00:12:16 +00:00
|
|
|
public:
|
|
|
|
nsLinkableAccessible(nsIDOMNode* aNode, nsIWeakReference* aShell);
|
|
|
|
NS_IMETHOD GetAccNumActions(PRUint8 *_retval);
|
2002-03-23 21:52:27 +00:00
|
|
|
NS_IMETHOD GetAccActionName(PRUint8 index, nsAString& _retval);
|
2001-11-07 00:12:16 +00:00
|
|
|
NS_IMETHOD AccDoAction(PRUint8 index);
|
|
|
|
NS_IMETHOD GetAccState(PRUint32 *_retval);
|
2002-03-23 21:52:27 +00:00
|
|
|
NS_IMETHOD GetAccValue(nsAString& _retval);
|
2002-07-03 16:38:15 +00:00
|
|
|
NS_IMETHOD AccTakeFocus();
|
2001-10-09 21:52:36 +00:00
|
|
|
|
2001-11-07 00:12:16 +00:00
|
|
|
protected:
|
|
|
|
PRBool IsALink();
|
|
|
|
PRBool mIsALinkCached; // -1 = unknown, 0 = not a link, 1 = is a link
|
|
|
|
nsCOMPtr<nsIContent> mLinkContent;
|
|
|
|
PRBool mIsLinkVisited;
|
2001-10-09 21:52:36 +00:00
|
|
|
};
|
|
|
|
|
2001-11-07 00:12:16 +00:00
|
|
|
/*
|
|
|
|
* A base class that can listen to menu events. Its used by selects so the
|
|
|
|
* button and the window accessibles can change their name and role
|
|
|
|
* depending on whether the drop down list is dropped down on not
|
|
|
|
*/
|
|
|
|
class nsMenuListenerAccessible : public nsAccessible, public nsIDOMXULListener
|
2001-10-09 21:52:36 +00:00
|
|
|
{
|
|
|
|
public:
|
2001-11-07 00:12:16 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
nsMenuListenerAccessible(nsIDOMNode* aDOMNode, nsIWeakReference* aShell);
|
|
|
|
virtual ~nsMenuListenerAccessible();
|
|
|
|
|
|
|
|
// popup listener
|
|
|
|
NS_IMETHOD PopupShowing(nsIDOMEvent* aEvent);
|
|
|
|
NS_IMETHOD PopupShown(nsIDOMEvent* aEvent) { return NS_OK; }
|
|
|
|
NS_IMETHOD PopupHiding(nsIDOMEvent* aEvent);
|
|
|
|
NS_IMETHOD PopupHidden(nsIDOMEvent* aEvent) { return NS_OK; }
|
|
|
|
|
|
|
|
NS_IMETHOD Close(nsIDOMEvent* aEvent);
|
|
|
|
NS_IMETHOD Command(nsIDOMEvent* aEvent) { return NS_OK; }
|
|
|
|
NS_IMETHOD Broadcast(nsIDOMEvent* aEvent) { return NS_OK; }
|
|
|
|
NS_IMETHOD CommandUpdate(nsIDOMEvent* aEvent) { return NS_OK; }
|
|
|
|
NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent) { return NS_OK; }
|
2001-10-09 21:52:36 +00:00
|
|
|
|
2001-11-07 00:12:16 +00:00
|
|
|
virtual void SetupMenuListener();
|
|
|
|
|
|
|
|
PRBool mRegistered;
|
|
|
|
PRBool mOpen;
|
|
|
|
};
|
2001-10-09 21:52:36 +00:00
|
|
|
|
|
|
|
#endif
|
2001-11-07 00:12:16 +00:00
|
|
|
|