1 /*
   2  * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  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 #undef IMPL
  27 
  28 #include "config.h"
  29 
  30 #include <WebCore/DOMWindow.h>
  31 #include <WebCore/KeyboardEvent.h>
  32 #include <WebCore/JSMainThreadExecState.h>
  33 
  34 #include <wtf/RefPtr.h>
  35 #include <wtf/GetPtr.h>
  36 
  37 #include "JavaDOMUtils.h"
  38 #include <wtf/java/JavaEnv.h>
  39 
  40 using namespace WebCore;
  41 
  42 extern "C" {
  43 
  44 #define IMPL (static_cast<KeyboardEvent*>(jlong_to_ptr(peer)))
  45 
  46 
  47 // Attributes
  48 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getKeyIdentifierImpl(JNIEnv* env, jclass, jlong peer)
  49 {
  50     WebCore::JSMainThreadNullState state;
  51     return JavaReturn<String>(env, IMPL->keyIdentifier());
  52 }
  53 
  54 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getLocationImpl(JNIEnv*, jclass, jlong peer)
  55 {
  56     WebCore::JSMainThreadNullState state;
  57     return IMPL->location();
  58 }
  59 
  60 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getKeyLocationImpl(JNIEnv*, jclass, jlong peer)
  61 {
  62     WebCore::JSMainThreadNullState state;
  63     return IMPL->location();
  64 }
  65 
  66 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getCtrlKeyImpl(JNIEnv*, jclass, jlong peer)
  67 {
  68     WebCore::JSMainThreadNullState state;
  69     return IMPL->ctrlKey();
  70 }
  71 
  72 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getShiftKeyImpl(JNIEnv*, jclass, jlong peer)
  73 {
  74     WebCore::JSMainThreadNullState state;
  75     return IMPL->shiftKey();
  76 }
  77 
  78 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getAltKeyImpl(JNIEnv*, jclass, jlong peer)
  79 {
  80     WebCore::JSMainThreadNullState state;
  81     return IMPL->altKey();
  82 }
  83 
  84 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getMetaKeyImpl(JNIEnv*, jclass, jlong peer)
  85 {
  86     WebCore::JSMainThreadNullState state;
  87     return IMPL->metaKey();
  88 }
  89 
  90 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getAltGraphKeyImpl(JNIEnv*, jclass, jlong peer)
  91 {
  92     WebCore::JSMainThreadNullState state;
  93     return IMPL->altGraphKey();
  94 }
  95 
  96 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getKeyCodeImpl(JNIEnv*, jclass, jlong peer)
  97 {
  98     WebCore::JSMainThreadNullState state;
  99     return IMPL->keyCode();
 100 }
 101 
 102 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getCharCodeImpl(JNIEnv*, jclass, jlong peer)
 103 {
 104     WebCore::JSMainThreadNullState state;
 105     return IMPL->charCode();
 106 }
 107 
 108 
 109 // Functions
 110 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_getModifierStateImpl(JNIEnv* env, jclass, jlong peer
 111     , jstring keyIdentifierArg)
 112 {
 113     WebCore::JSMainThreadNullState state;
 114     return IMPL->getModifierState(String(env, keyIdentifierArg));
 115 }
 116 
 117 
 118 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_initKeyboardEventImpl(JNIEnv* env, jclass, jlong peer
 119     , jstring type
 120     , jboolean canBubble
 121     , jboolean cancelable
 122     , jlong view
 123     , jstring keyIdentifier
 124     , jint location
 125     , jboolean ctrlKey
 126     , jboolean altKey
 127     , jboolean shiftKey
 128     , jboolean metaKey
 129     , jboolean altGraphKey)
 130 {
 131     WebCore::JSMainThreadNullState state;
 132     IMPL->initKeyboardEvent(String(env, type)
 133             , canBubble
 134             , cancelable
 135             , static_cast<DOMWindow*>(jlong_to_ptr(view))
 136             , String(env, keyIdentifier)
 137             , location
 138             , ctrlKey
 139             , altKey
 140             , shiftKey
 141             , metaKey
 142             , altGraphKey);
 143 }
 144 
 145 
 146 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_KeyboardEventImpl_initKeyboardEventExImpl(JNIEnv* env, jclass, jlong peer
 147     , jstring type
 148     , jboolean canBubble
 149     , jboolean cancelable
 150     , jlong view
 151     , jstring keyIdentifier
 152     , jint location
 153     , jboolean ctrlKey
 154     , jboolean altKey
 155     , jboolean shiftKey
 156     , jboolean metaKey)
 157 {
 158     WebCore::JSMainThreadNullState state;
 159     IMPL->initKeyboardEvent(String(env, type)
 160             , canBubble
 161             , cancelable
 162             , static_cast<DOMWindow*>(jlong_to_ptr(view))
 163             , String(env, keyIdentifier)
 164             , location
 165             , ctrlKey
 166             , altKey
 167             , shiftKey
 168             , metaKey);
 169 }
 170 
 171 
 172 }