modules/controls/src/test/java/com/sun/javafx/scene/control/infrastructure/KeyModifier.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.scene.control.infrastructure;
  27 
  28 import com.sun.javafx.util.Utils;
  29 import com.sun.javafx.pgstub.StubToolkit;
  30 import com.sun.javafx.scene.control.behavior.KeyBinding;
  31 import com.sun.javafx.tk.Toolkit;
  32 import javafx.scene.input.KeyCode;
  33 
  34 public enum KeyModifier {
  35     SHIFT,
  36     CTRL,
  37     ALT,
  38     META;
  39     
  40     public static KeyModifier getShortcutKey() {
  41         // The StubToolkit doesn't know what the platform shortcut key is, so 
  42         // we have to tell it here (and lets not be cute about optimising this
  43         // code as we need the platform shortcut key to be known elsewhere in the
  44         // code base for keyboard navigation tests to work accurately).
  45         if (Toolkit.getToolkit() instanceof StubToolkit) {
  46             ((StubToolkit)Toolkit.getToolkit()).setPlatformShortcutKey(Utils.isMac() ? KeyCode.META : KeyCode.CONTROL);
  47         } 
  48         
  49         switch (Toolkit.getToolkit().getPlatformShortcutKey()) {
  50             case SHIFT:


  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.scene.control.infrastructure;
  27 
  28 import com.sun.javafx.util.Utils;
  29 import com.sun.javafx.pgstub.StubToolkit;

  30 import com.sun.javafx.tk.Toolkit;
  31 import javafx.scene.input.KeyCode;
  32 
  33 public enum KeyModifier {
  34     SHIFT,
  35     CTRL,
  36     ALT,
  37     META;
  38     
  39     public static KeyModifier getShortcutKey() {
  40         // The StubToolkit doesn't know what the platform shortcut key is, so 
  41         // we have to tell it here (and lets not be cute about optimising this
  42         // code as we need the platform shortcut key to be known elsewhere in the
  43         // code base for keyboard navigation tests to work accurately).
  44         if (Toolkit.getToolkit() instanceof StubToolkit) {
  45             ((StubToolkit)Toolkit.getToolkit()).setPlatformShortcutKey(Utils.isMac() ? KeyCode.META : KeyCode.CONTROL);
  46         } 
  47         
  48         switch (Toolkit.getToolkit().getPlatformShortcutKey()) {
  49             case SHIFT: