summaryrefslogtreecommitdiff
path: root/toolkit/test/accessibility/EventListener.java
blob: 43a53774a910ef07427337228152f36ce147e399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
 */

import com.sun.star.accessibility.*;

/** Objects of this class (usually one, singleton?) listen to accessible
    events of all objects in all trees.
*/
public class EventListener
{
    public boolean mbVerbose = false;

    public EventListener (AccessibilityTreeModel aTreeModel)
    {
        maTreeModel = aTreeModel;
    }


    /** This method handles accessibility objects that are being disposed.
     */
    public void disposing (XAccessibleContext xContext)
    {
        if (mbVerbose)
            System.out.println("disposing " + xContext);
        maTreeModel.removeNode (xContext);
    }

    /** This method is called from accessible objects that broadcast
        modifications of themselves or from their children.  The event is
        processed only, except printing some messages, if the tree is not
        locked.  It should be locked during changes to its internal
        structure like expanding nodes.
    */
    public void notifyEvent (AccessibleEventObject aEvent)
    {
        EventHandler aHandler;

        switch (aEvent.EventId)
        {
            case AccessibleEventId.CHILD:
                aHandler = new ChildEventHandler (aEvent, maTreeModel);
                break;

            case AccessibleEventId.BOUNDRECT_CHANGED:
            case AccessibleEventId.VISIBLE_DATA_CHANGED:
                aHandler = new GeometryEventHandler (aEvent, maTreeModel);
                break;


            case AccessibleEventId.NAME_CHANGED:
            case AccessibleEventId.DESCRIPTION_CHANGED:
            case AccessibleEventId.STATE_CHANGED:
            case AccessibleEventId.SELECTION_CHANGED:
                aHandler = new ContextEventHandler (aEvent, maTreeModel);
                break;

            case AccessibleEventId.TABLE_MODEL_CHANGED:
            case AccessibleEventId.TABLE_CAPTION_CHANGED:
            case AccessibleEventId.TABLE_COLUMN_DESCRIPTION_CHANGED:
            case AccessibleEventId.TABLE_COLUMN_HEADER_CHANGED:
            case AccessibleEventId.TABLE_ROW_DESCRIPTION_CHANGED:
            case AccessibleEventId.TABLE_ROW_HEADER_CHANGED:
            case AccessibleEventId.TABLE_SUMMARY_CHANGED:
                aHandler = new TableEventHandler (aEvent, maTreeModel);
                break;

            case AccessibleEventId.ACTION_CHANGED:
            case AccessibleEventId.HYPERTEXT_CHANGED:
            case AccessibleEventId.ACTIVE_DESCENDANT_CHANGED:
            case AccessibleEventId.CARET_CHANGED:
            case AccessibleEventId.TEXT_CHANGED:
            case AccessibleEventId.VALUE_CHANGED:
                aHandler = new EventHandler (aEvent, maTreeModel);
                break;

            default:
                aHandler = null;
                break;
        }

        if (aHandler == null)
            System.out.println ("    unhandled event");
        else
        {
            if (mbVerbose)
                aHandler.Print (System.out);
            aHandler.Process ();
        }
    }


    private final AccessibilityTreeModel maTreeModel;
}