xref: /AOO41X/main/toolkit/test/accessibility/ChildEventHandler.java (revision 1b0aaa91df402a6f20c4769a008573eb958e886d)
1*1b0aaa91SAndrew Rist /**************************************************************
2*1b0aaa91SAndrew Rist  *
3*1b0aaa91SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*1b0aaa91SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*1b0aaa91SAndrew Rist  * distributed with this work for additional information
6*1b0aaa91SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*1b0aaa91SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*1b0aaa91SAndrew Rist  * "License"); you may not use this file except in compliance
9*1b0aaa91SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*1b0aaa91SAndrew Rist  *
11*1b0aaa91SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*1b0aaa91SAndrew Rist  *
13*1b0aaa91SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*1b0aaa91SAndrew Rist  * software distributed under the License is distributed on an
15*1b0aaa91SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*1b0aaa91SAndrew Rist  * KIND, either express or implied.  See the License for the
17*1b0aaa91SAndrew Rist  * specific language governing permissions and limitations
18*1b0aaa91SAndrew Rist  * under the License.
19*1b0aaa91SAndrew Rist  *
20*1b0aaa91SAndrew Rist  *************************************************************/
21*1b0aaa91SAndrew Rist 
22cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible;
23cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleEventObject;
24cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import java.io.PrintStream;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir class ChildEventHandler
29cdf0e10cSrcweir     extends EventHandler
30cdf0e10cSrcweir {
ChildEventHandler(AccessibleEventObject aEvent, AccessibilityTreeModel aTreeModel)31cdf0e10cSrcweir     public ChildEventHandler (AccessibleEventObject aEvent, AccessibilityTreeModel aTreeModel)
32cdf0e10cSrcweir     {
33cdf0e10cSrcweir         super (aEvent, aTreeModel);
34cdf0e10cSrcweir         mxOldChild = (XAccessible)UnoRuntime.queryInterface(
35cdf0e10cSrcweir             XAccessible.class, aEvent.OldValue);
36cdf0e10cSrcweir         mxNewChild = (XAccessible)UnoRuntime.queryInterface(
37cdf0e10cSrcweir             XAccessible.class, aEvent.NewValue);
38cdf0e10cSrcweir     }
39cdf0e10cSrcweir 
PrintOldAndNew(PrintStream out)40cdf0e10cSrcweir     public void PrintOldAndNew (PrintStream out)
41cdf0e10cSrcweir     {
42cdf0e10cSrcweir         if (mxOldChild != null)
43cdf0e10cSrcweir             out.println ("   removing child " + mxOldChild);
44cdf0e10cSrcweir         if (mxNewChild != null)
45cdf0e10cSrcweir             out.println ("   adding child " + mxNewChild);
46cdf0e10cSrcweir     }
47cdf0e10cSrcweir 
Process()48cdf0e10cSrcweir     public void Process ()
49cdf0e10cSrcweir     {
50cdf0e10cSrcweir         // Insertion and removal of children should be mutually exclusive.
51cdf0e10cSrcweir         // But this is a test tool and should take everything into account.
52cdf0e10cSrcweir         if (mxOldChild != null)
53cdf0e10cSrcweir         {
54cdf0e10cSrcweir             maTreeModel.removeNode (mxOldChild.getAccessibleContext());
55cdf0e10cSrcweir             maTreeModel.updateNode (mxEventSource, AccessibleTreeHandler.class);
56cdf0e10cSrcweir         }
57cdf0e10cSrcweir 
58cdf0e10cSrcweir         if (mxNewChild != null)
59cdf0e10cSrcweir         {
60cdf0e10cSrcweir             maTreeModel.addChild (mxEventSource, mxNewChild);
61cdf0e10cSrcweir         }
62cdf0e10cSrcweir     }
63cdf0e10cSrcweir 
64cdf0e10cSrcweir 
65cdf0e10cSrcweir     private XAccessible mxOldChild;
66cdf0e10cSrcweir     private XAccessible mxNewChild;
67cdf0e10cSrcweir }
68