'************************************************************************* '* ' ' 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 ' ' Unless required by applicable law or agreed to in writing, ' software distributed under the License is distributed on an ' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ' KIND, either express or implied. See the License for the ' specific language governing permissions and limitations ' under the License. ' '************************************************************************* '************************************************************************* ' Be sure that all variables are dimensioned: option explicit '************************************************************************* ' This Interface/Service test depends on the following GLOBAL variables, ' which must be specified in the object creation: ' fireEvent() precedure ' located in component test '************************************************************************* Dim oListener1 As Object Dim oListener2 As Object Dim bL1called As Boolean Dim bL2called As Boolean Sub RunTest() '************************************************************************* ' INTERFACE: ' com.sun.star.accessibility.XAccessibleEventBroadcaster '************************************************************************* On Error Goto ErrHndl Dim bOK As Boolean Dim isTransient As Boolean Dim stateSet As Variant bOK = true 'out.log("Creating Listeners...") oListener1 = createUNOListener("EL1_","com.sun.star.accessibility.XAccessibleEventListener") oListener2 = createUNOListener("EL2_","com.sun.star.accessibility.XAccessibleEventListener") bOK = bOK AND NOT isNULL(oListener1) AND NOT isNULL(oListener2) if NOT bOK then out.log( "ERROR: Cannot create listeners...") if NOT hasUNOInterfaces(oObj,"com.sun.star.accessibility.XAccessibleContext") then 'out.log("Object does not implement XAccessibleContext.") isTransient = false else stateSet = oObj.getAccessibleStateSet() isTransient = stateSet.contains(27) End If Test.StartMethod("addEventListener()") bOK = true bL1called = false bL2called = false 'out.log("Adding two listeners...") oObj.com_sun_star_accessibility_XAccessibleEventBroadcaster_addEventListener(oListener1) oObj.com_sun_star_accessibility_XAccessibleEventBroadcaster_addEventListener(oListener2) 'out.log("fire event") fireEvent() wait(500) out.log("Listener1 called: "+bL1called) out.log("Listener2 called: "+bL2called) if NOT isTransient then bOK = bOK AND bL1called AND bL2called else 'out.log("Object is transient, listeners aren't expected to call.") bOK = true End If Test.MethodTested("addEventListener()",bOK) Test.StartMethod("removeEventListener()") bOK = true bL1called = false bL2called = false 'out.log("Removing one listener...") oObj.com_sun_star_accessibility_XAccessibleEventBroadcaster_removeEventListener(oListener1) 'out.log("fire event") fireEvent() wait(500) out.log("Listener1 called: "+bL1called) out.log("Listener2 called: "+bL2called) if NOT isTransient then bOK = bOK AND NOT bL1called AND bL2called else 'out.log("Object is transient, listeners aren't expected to call.") bOK = true End If Test.MethodTested("removeEventListener()",bOK) ' Removing the second listener... oObj.com_sun_star_accessibility_XAccessibleEventBroadcaster_removeEventListener(oListener2) Exit Sub ErrHndl: Test.Exception() bOK = false resume next End Sub Sub EL1_notifyEvent(ev As Variant) 'out.log("CallBack for Listener1 notifyEvent was called.") bL1called = true End Sub Sub EL1_disposing() End Sub Sub EL2_notifyEvent(ev As Variant) 'out.log("CallBack for Listener2 notifyEvent was called.") bL2called = true End Sub Sub EL2_disposing() End Sub