X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FPlatform.java;h=44d93b72291212fa34d50e57039dd4ef6fe88fe8;hb=ed512fe4ab6c8a61bbf2e3b9d2b09ea9746af78d;hp=f9eb2a6bd853fc6087f933c1dab7bac58b416025;hpb=6d9ff99acf35278e6dc1c85bbc65f8e419cd91b6;p=jalview.git diff --git a/src/jalview/util/Platform.java b/src/jalview/util/Platform.java index f9eb2a6..44d93b7 100644 --- a/src/jalview/util/Platform.java +++ b/src/jalview/util/Platform.java @@ -135,23 +135,15 @@ public class Platform } /** - * escape a string according to the local platform's escape character + * Answers the input with every backslash replaced with a double backslash (an + * 'escaped' single backslash) * - * @param file - * @return escaped file + * @param s + * @return */ - public static String escapeString(String file) + public static String escapeBackslashes(String s) { - StringBuffer f = new StringBuffer(); - int p = 0, lastp = 0; - while ((p = file.indexOf('\\', lastp)) > -1) - { - f.append(file.subSequence(lastp, p)); - f.append("\\\\"); - lastp = p + 1; - } - f.append(file.substring(lastp)); - return f.toString(); + return s == null ? null : s.replace("\\", "\\\\"); } /** @@ -180,6 +172,20 @@ public class Platform if (!aMac) { return e.isControlDown(); + + // Jalview 2.11 code below: above is as amended for JalviewJS + // /* + // * answer false for right mouse button + // */ + // if (e.isPopupTrigger()) + // { + // return false; + // } + // return + // (jalview.util.ShortcutKeyMaskExWrapper.getMenuShortcutKeyMaskEx() // + // .getMenuShortcutKeyMaskEx() + // & jalview.util.ShortcutKeyMaskExWrapper + // .getModifiersEx(e)) != 0; // getModifiers()) != 0; } // answer false for right mouse button // shortcut key will be META for a Mac @@ -331,7 +337,9 @@ public class Platform public static byte[] getFileBytes(File f) { - return /** @j2sNative f && f._bytes || */ + // TODO temporary doubling of 秘bytes and _bytes; + // just remove _bytes when new transpiler has been installed + return /** @j2sNative f && (f.\u79d8bytes || f._bytes) || */ null; } @@ -369,8 +377,10 @@ public class Platform } @SuppressWarnings("unused") byte[] bytes = getFileAsBytes(urlstring); + // TODO temporary doubling of 秘bytes and _bytes; + // just remove _bytes when new transpiler has been installed /** - * @j2sNative f._bytes = bytes; + * @j2sNative f.\u79d8bytes = f._bytes = bytes; */ return true; } @@ -425,7 +435,7 @@ public class Platform @SuppressWarnings("unused") ThreadGroup g = Thread.currentThread().getThreadGroup(); /** - * @j2sNative return g.html5Applet._uniqueId; + * @j2sNative return g.\u79d8html5Applet._uniqueId; * */ return null; @@ -451,7 +461,7 @@ public class Platform String id = getUniqueAppletID(); String key = "", value = ""; /** - * @j2sNative var info = g.html5Applet.__Info || {}; for (var key in info) { + * @j2sNative var info = g.\u79d8html5Applet.__Info || {}; for (var key in info) { * if (key.indexOf(prefix) == 0) { value = "" + info[key]; */ @@ -611,4 +621,26 @@ public class Platform } + /** + * A (case sensitive) file path comparator that ignores the difference between / + * and \ + * + * @param path1 + * @param path2 + * @return + */ + public static boolean pathEquals(String path1, String path2) + { + if (path1 == null) + { + return path2 == null; + } + if (path2 == null) + { + return false; + } + String p1 = path1.replace('\\', '/'); + String p2 = path2.replace('\\', '/'); + return p1.equals(p2); + } }