2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import java.awt.Toolkit;
24 import java.awt.event.MouseEvent;
27 * System platform information used by Applet and Application
34 * sorry folks - Macs really are different
36 * @return true if we do things in a special way.
38 public static boolean isAMac()
40 return java.lang.System.getProperty("os.name").indexOf("Mac") > -1;
44 public static boolean isHeadless()
46 String hdls = java.lang.System.getProperty("java.awt.headless");
48 return hdls != null && hdls.equals("true");
53 * @return nominal maximum command line length for this platform
55 public static int getMaxCommandLineLength()
57 // TODO: determine nominal limits for most platforms.
58 return 2046; // this is the max length for a windows NT system.
62 * escape a string according to the local platform's escape character
65 * @return escaped file
67 public static String escapeString(String file)
69 StringBuffer f = new StringBuffer();
71 while ((p = file.indexOf('\\', lastp)) > -1)
73 f.append(file.subSequence(lastp, p));
77 f.append(file.substring(lastp));
82 * Answers true if the mouse event has Meta-down (Command key on Mac) or
83 * Ctrl-down (on other o/s). Note this answers _false_ if the Ctrl key is
84 * pressed instead of the Meta/Cmd key on Mac. To test for Ctrl-click on Mac,
85 * you can use e.isPopupTrigger().
90 public static boolean isControlDown(MouseEvent e)
94 return (Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() & e
95 .getModifiers()) != 0;
96 // could we use e.isMetaDown() here?
98 return e.isControlDown();