зеркало из https://github.com/mozilla/gecko-dev.git
100 строки
4.4 KiB
Plaintext
100 строки
4.4 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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 the Mozilla browser.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Original Author: Eric D Vaughan (evaughan@netscape.com)
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIAccessible.idl"
|
|
|
|
%{ C++
|
|
// extra event data (currently used by ATK)
|
|
struct AccessibleEventData {
|
|
PRUint32 aUnused;
|
|
};
|
|
%}
|
|
|
|
[ptr] native AccessibleEventData(AccessibleEventData);
|
|
|
|
[scriptable, uuid(BEE49E7D-9D06-49bf-8984-1694C697D74F)]
|
|
interface nsIAccessibleEventListener : nsISupports
|
|
{
|
|
// these are set to the values given by MSAA
|
|
const unsigned long EVENT_CREATE = 0x8000;
|
|
const unsigned long EVENT_DESTROY = 0x8001;
|
|
const unsigned long EVENT_SHOW = 0x8002;
|
|
const unsigned long EVENT_HIDE = 0x8003;
|
|
const unsigned long EVENT_REORDER = 0x8004;
|
|
const unsigned long EVENT_FOCUS = 0x8005;
|
|
const unsigned long EVENT_STATE_CHANGE = 0x800A;
|
|
const unsigned long EVENT_LOCATION_CHANGE = 0x800B;
|
|
const unsigned long EVENT_NAME_CHANGE = 0x800C;
|
|
const unsigned long EVENT_DESCRIPTIONCHANGE = 0x800D;
|
|
const unsigned long EVENT_VALUE_CHANGE = 0x800E;
|
|
const unsigned long EVENT_PARENTCHANGE = 0x800F;
|
|
const unsigned long EVENT_HELPCHANGE = 0x8010;
|
|
const unsigned long EVENT_DEFACTIONCHANGE = 0x8011;
|
|
const unsigned long EVENT_ACCELERATORCHANGE = 0x8012;
|
|
const unsigned long EVENT_SELECTION = 0x8006;
|
|
const unsigned long EVENT_SELECTION_ADD = 0x8007;
|
|
const unsigned long EVENT_SELECTION_REMOVE = 0x8008;
|
|
const unsigned long EVENT_SELECTION_WITHIN = 0x8009;
|
|
const unsigned long EVENT_ALERT = 0x0002;
|
|
const unsigned long EVENT_FOREGROUND = 0x0003;
|
|
const unsigned long EVENT_MENUSTART = 0x0004;
|
|
const unsigned long EVENT_MENUEND = 0x0005;
|
|
const unsigned long EVENT_MENUPOPUPSTART = 0x0006;
|
|
const unsigned long EVENT_MENUPOPUPEND = 0x0007;
|
|
const unsigned long EVENT_CAPTURESTART = 0x0008;
|
|
const unsigned long EVENT_CAPTUREEND = 0x0009;
|
|
const unsigned long EVENT_MOVESIZESTART = 0x000A;
|
|
const unsigned long EVENT_MOVESIZEEND = 0x000B;
|
|
const unsigned long EVENT_CONTEXTHELPSTART = 0x000C;
|
|
const unsigned long EVENT_CONTEXTHELPEND = 0x000D;
|
|
const unsigned long EVENT_DRAGDROPSTART = 0x000E;
|
|
const unsigned long EVENT_DRAGDROPEND = 0x000F;
|
|
const unsigned long EVENT_DIALOGSTART = 0x0010;
|
|
const unsigned long EVENT_DIALOGEND = 0x0011;
|
|
const unsigned long EVENT_SCROLLINGSTART = 0x0012;
|
|
const unsigned long EVENT_SCROLLINGEND = 0x0013;
|
|
const unsigned long EVENT_MINIMIZESTART = 0x0016;
|
|
const unsigned long EVENT_MINIMIZEEND = 0x0017;
|
|
|
|
// the additional events for ATK
|
|
const unsigned long EVENT_ATK_PROPERTY_CHANGE = 0x0100;
|
|
const unsigned long EVENT_ATK_SELECTION_CHANGE = 0x0101;
|
|
const unsigned long EVENT_ATK_TEXT_CHANGE = 0x0102;
|
|
const unsigned long EVENT_ATK_TEXT_SELECTION_CHANGE = 0x0103;
|
|
const unsigned long EVENT_ATK_TEXT_CARET_MOVE = 0x0104;
|
|
const unsigned long EVENT_ATK_VISIBLE_DATA_CHANGE = 0x0105;
|
|
const unsigned long EVENT_ATK_TABLE_MODEL_CHANGE = 0x0110;
|
|
const unsigned long EVENT_ATK_TABLE_ROW_INSERT = 0x0111;
|
|
const unsigned long EVENT_ATK_TABLE_ROW_DELETE = 0x0112;
|
|
const unsigned long EVENT_ATK_TABLE_ROW_REORDER = 0x0113;
|
|
const unsigned long EVENT_ATK_TABLE_COLUMN_INSERT = 0x0114;
|
|
const unsigned long EVENT_ATK_TABLE_COLUMN_DELETE = 0x0115;
|
|
const unsigned long EVENT_ATK_TABLE_COLUMN_REORDER = 0x0116;
|
|
|
|
[noscript]
|
|
void handleEvent(in unsigned long aEvent, in nsIAccessible aTarget, in AccessibleEventData aData);
|
|
};
|
|
|