summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/AccessibilityTools.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/AccessibilityTools.java')
-rw-r--r--qadevOOo/runner/util/AccessibilityTools.java160
1 files changed, 80 insertions, 80 deletions
diff --git a/qadevOOo/runner/util/AccessibilityTools.java b/qadevOOo/runner/util/AccessibilityTools.java
index 3fb964a2362b..c4bc428ed624 100644
--- a/qadevOOo/runner/util/AccessibilityTools.java
+++ b/qadevOOo/runner/util/AccessibilityTools.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -44,105 +44,105 @@ public class AccessibilityTools {
public static XAccessibleContext SearchedContext = null;
public static XAccessible SearchedAccessible = null;
private static boolean debug = false;
-
+
public AccessibilityTools() {
//done = false;
SearchedContext = null;
}
-
+
public static XAccessible getAccessibleObject(XInterface xObject) {
return UnoRuntime.queryInterface(XAccessible.class, xObject);
}
-
+
public static XWindow getCurrentContainerWindow(XMultiServiceFactory msf,
XModel xModel) {
return getWindow(msf, xModel, true);
}
-
+
public static XWindow getCurrentWindow(XMultiServiceFactory msf,
XModel xModel) {
return getWindow(msf, xModel, false);
}
-
+
private static XWindow getWindow(XMultiServiceFactory msf, XModel xModel,
boolean containerWindow) {
XWindow xWindow = null;
-
+
try {
if (xModel == null) {
System.out.println("invalid model (==null)");
}
-
+
XController xController = xModel.getCurrentController();
-
+
if (xController == null) {
System.out.println("can't get controller from model");
}
-
+
XFrame xFrame = xController.getFrame();
-
+
if (xFrame == null) {
System.out.println("can't get frame from controller");
}
-
+
if (containerWindow)
xWindow = xFrame.getContainerWindow();
else
xWindow = xFrame.getComponentWindow();
-
+
if (xWindow == null) {
System.out.println("can't get window from frame");
}
} catch (Exception e) {
System.out.println("caught exception while getting current window" + e);
}
-
+
return xWindow;
}
-
+
public static XAccessibleContext getAccessibleObjectForRole(XAccessible xacc,
short role) {
SearchedContext = null;
SearchedAccessible = null;
getAccessibleObjectForRole_(xacc, role);
-
+
return SearchedContext;
}
-
+
public static XAccessibleContext getAccessibleObjectForRole(XAccessible xacc,
short role,
boolean ignoreShowing) {
SearchedContext = null;
SearchedAccessible = null;
-
+
if (ignoreShowing) {
getAccessibleObjectForRoleIgnoreShowing_(xacc, role);
} else {
getAccessibleObjectForRole_(xacc, role);
}
-
+
return SearchedContext;
}
-
+
public static void getAccessibleObjectForRoleIgnoreShowing_(XAccessible xacc,
short role) {
XAccessibleContext ac = xacc.getAccessibleContext();
-
+
if (ac.getAccessibleRole() == role) {
SearchedContext = ac;
SearchedAccessible = xacc;
} else {
int k = ac.getAccessibleChildCount();
-
+
if (ac.getAccessibleChildCount() > 100) {
k = 50;
}
-
+
for (int i = 0; i < k; i++) {
try {
getAccessibleObjectForRoleIgnoreShowing_(
ac.getAccessibleChild(i), role);
-
+
if (SearchedContext != null) {
return;
}
@@ -152,27 +152,27 @@ public class AccessibilityTools {
}
}
}
-
+
public static void getAccessibleObjectForRole_(XAccessible xacc,
short role) {
XAccessibleContext ac = xacc.getAccessibleContext();
boolean isShowing = ac.getAccessibleStateSet()
.contains(com.sun.star.accessibility.AccessibleStateType.SHOWING);
-
+
if ((ac.getAccessibleRole() == role) && isShowing) {
SearchedContext = ac;
SearchedAccessible = xacc;
} else {
int k = ac.getAccessibleChildCount();
-
+
if (ac.getAccessibleChildCount() > 100) {
k = 50;
}
-
+
for (int i = 0; i < k; i++) {
try {
getAccessibleObjectForRole_(ac.getAccessibleChild(i), role);
-
+
if (SearchedContext != null) {
return;
}
@@ -182,13 +182,13 @@ public class AccessibilityTools {
}
}
}
-
+
public static XAccessibleContext getAccessibleObjectForRole(XAccessible xacc,
short role,
String name) {
return getAccessibleObjectForRole(xacc, role, name, "");
}
-
+
public static XAccessibleContext getAccessibleObjectForRole(XAccessible xacc,
short role,
String name,
@@ -200,7 +200,7 @@ public class AccessibilityTools {
return getAccessibleObjectForRole(xacc, role, name, "");
}
}
-
+
public static XAccessibleContext getAccessibleObjectForRoleIgnoreShowing(XAccessible xacc,
short role,
String name,
@@ -210,22 +210,22 @@ public class AccessibilityTools {
(ac.getAccessibleName().indexOf(name) > -1) &&
(utils.getImplName(ac).indexOf(implName) > -1)) {
SearchedAccessible = xacc;
-
+
//System.out.println("FOUND the desired component -- "+ ac.getAccessibleName() +isShowing);
return ac;
} else {
int k = ac.getAccessibleChildCount();
-
+
if (ac.getAccessibleChildCount() > 100) {
k = 50;
}
-
+
for (int i = 0; i < k; i++) {
try {
XAccessibleContext ac1 = getAccessibleObjectForRoleIgnoreShowing(
ac.getAccessibleChild(i),
role, name, implName);
-
+
if (ac1 != null) {
return ac1;
}
@@ -234,10 +234,10 @@ public class AccessibilityTools {
}
}
}
-
+
return null;
}
-
+
public static XAccessibleContext getAccessibleObjectForRole(XAccessible xacc,
short role,
String name,
@@ -245,7 +245,7 @@ public class AccessibilityTools {
XAccessibleContext ac = xacc.getAccessibleContext();
boolean isShowing = ac.getAccessibleStateSet()
.contains(com.sun.star.accessibility.AccessibleStateType.SHOWING);
-
+
// hotfix for i91828:
// if role to serach is 0 then ignore the role.
if ( (role == 0 || ac.getAccessibleRole() == role) &&
@@ -257,17 +257,17 @@ public class AccessibilityTools {
return ac;
} else {
int k = ac.getAccessibleChildCount();
-
+
if (ac.getAccessibleChildCount() > 100) {
k = 50;
}
-
+
for (int i = 0; i < k; i++) {
try {
XAccessibleContext ac1 = getAccessibleObjectForRole(
ac.getAccessibleChild(i),
role, name, implName);
-
+
if (ac1 != null) {
return ac1;
}
@@ -276,10 +276,10 @@ public class AccessibilityTools {
}
}
}
-
+
return null;
}
-
+
/**
* This methods retunrs the <CODE>XAccessibleContext</CODE> of a named Sheet-Cell like "G5".<p>
* @param xSheetAcc The <CODE>XAccessibleContext</CODE> of a Sheet
@@ -287,16 +287,16 @@ public class AccessibilityTools {
* @return the <CODE>XAccessiblecontext</CODE> of the named cell
*/
public static XAccessibleContext getSheetCell(XAccessibleContext xSheetAcc, String cellName){
-
+
int cellIndex = 0;
int column =0;
int charMem = 0;
for (int n=0; n<cellName.length(); n++){
String cha = cellName.substring(n,n+1);
System.out.println("char: " + cha + " ");
-
+
byte[] bytes = cha.getBytes();
-
+
if ((bytes[0] >= 'A') && (bytes[0] <= 'Z')){
charMem = bytes[0]-64;
column++;
@@ -310,47 +310,47 @@ public class AccessibilityTools {
cellIndex += (iNumb-1) * 256;
System.out.println("numb:" + (iNumb-1) * 256);
}
-
+
}
-
+
//System.out.println("cellName: " + cellName + " cellIndex: " + cellIndex);
-
+
try {
XAccessibleContext ac = xSheetAcc.getAccessibleChild(cellIndex).getAccessibleContext();
System.out.println(ac.getAccessibleRole() + "," +
ac.getAccessibleName() + "(" +
ac.getAccessibleDescription() + "):" +
utils.getImplName(ac));
-
+
return ac;
} catch (com.sun.star.lang.IndexOutOfBoundsException ex) {
System.out.println("ERROR: could not get child at index " + cellIndex +"': " + ex.toString());
return null;
}
}
-
+
public static void printAccessibleTree(PrintWriter log, XAccessible xacc, boolean debugIsActive) {
debug = debugIsActive;
if (debug) printAccessibleTree(log, xacc, "");
}
-
+
public static void printAccessibleTree(PrintWriter log, XAccessible xacc) {
printAccessibleTree(log, xacc, "");
}
-
+
protected static void printAccessibleTree(PrintWriter log,
XAccessible xacc, String indent) {
-
+
XAccessibleContext ac = xacc.getAccessibleContext();
-
+
logging(log,indent + ac.getAccessibleRole() + "," +
ac.getAccessibleName() + "(" +
ac.getAccessibleDescription() + "):" +
utils.getImplName(ac));
-
+
XAccessibleComponent aComp = (XAccessibleComponent) UnoRuntime.queryInterface(
XAccessibleComponent.class, xacc);
-
+
if (aComp != null) {
String bounds = "(" + aComp.getBounds().X + "," +
aComp.getBounds().Y + ")" + " (" +
@@ -359,18 +359,18 @@ public class AccessibilityTools {
bounds = "The boundary Rectangle is " + bounds;
logging(log,indent + indent + bounds);
}
-
+
boolean isShowing = ac.getAccessibleStateSet()
.contains(com.sun.star.accessibility.AccessibleStateType.SHOWING);
logging(log,indent + indent + "StateType contains SHOWING: " +
isShowing);
-
+
int k = ac.getAccessibleChildCount();
-
+
if (ac.getAccessibleChildCount() > 100) {
k = 50;
}
-
+
for (int i = 0; i < k; i++) {
try {
printAccessibleTree(log, ac.getAccessibleChild(i),
@@ -379,13 +379,13 @@ public class AccessibilityTools {
System.out.println("Couldn't get Child");
}
}
-
+
if (ac.getAccessibleChildCount() > 100) {
k = ac.getAccessibleChildCount();
-
+
int st = ac.getAccessibleChildCount() - 50;
logging(log,indent + " " + " ...... [skipped] ......");
-
+
for (int i = st; i < k; i++) {
try {
printAccessibleTree(log, ac.getAccessibleChild(i),
@@ -396,65 +396,65 @@ public class AccessibilityTools {
}
}
}
-
+
public static String accessibleToString(Object AC) {
XAccessibleContext xAC = (XAccessibleContext) UnoRuntime.queryInterface(
XAccessibleContext.class, AC);
-
+
if (xAC != null) {
return "" + xAC.getAccessibleRole() + "," +
xAC.getAccessibleName() + "(" +
xAC.getAccessibleDescription() + "):";
}
-
+
XAccessible xA = (XAccessible) UnoRuntime.queryInterface(
XAccessible.class, AC);
-
+
if (xA == null) {
return "(Not supported)";
}
-
+
xAC = xA.getAccessibleContext();
-
+
return "" + xAC.getAccessibleRole() + "," + xAC.getAccessibleName() +
"(" + xAC.getAccessibleDescription() + ")";
}
-
+
public static boolean equals(XAccessible c1, XAccessible c2) {
if ((c1 == null) || (c2 == null)) {
return c1 == c2;
}
-
+
return AccessibilityTools.equals(c1.getAccessibleContext(),
c2.getAccessibleContext());
}
-
+
public static boolean equals(XAccessibleContext c1, XAccessibleContext c2) {
if ((c1 == null) || (c2 == null)) {
return c1 == c2;
}
-
+
if (c1.getAccessibleRole() != c2.getAccessibleRole()) {
return false;
}
-
+
if (!c1.getAccessibleName().equals(c2.getAccessibleName())) {
return false;
}
-
+
if (!c1.getAccessibleDescription()
.equals(c2.getAccessibleDescription())) {
return false;
}
-
+
if (c1.getAccessibleChildCount() != c2.getAccessibleChildCount()) {
return false;
}
-
+
return AccessibilityTools.equals(c1.getAccessibleParent(),
c2.getAccessibleParent());
}
-
+
private static void logging(PrintWriter log, String content){
if (debug) log.println(content);
}