1 /*
   2  * Copyright (c) 2013, 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 #ifndef ANDROIDLENS_H
  26 #define ANDROIDLENS_H
  27 
  28 #include <android/native_window.h>
  29 
  30 #ifdef  __cplusplus
  31 extern "C" {
  32 #endif
  33 
  34     jboolean lens_input_initialize(JNIEnv *env);
  35 
  36     void lens_input_shutdown();
  37 
  38     void notifyWindowEvent_resize(
  39         ANativeWindow *window,
  40         int eventType,
  41         int width,
  42         int height);
  43 
  44     void notifyTouchEvent(
  45         int  state,
  46         int  id,
  47         int  sendAlsoButtonEvent,
  48         int  xabs,
  49         int  yabs);
  50 
  51     void notifyMultiTouchEvent(
  52         int count,
  53         int *states,
  54         int *ids,
  55         int *xs,
  56         int *ys);
  57 
  58     void notifyMotionEvent(
  59         int mousePosX,
  60         int mousePosY,
  61         int isTouch,
  62         int touchId);
  63 
  64     void notifyButtonEvent(
  65         int pressed,
  66         int button,
  67         int xabs, int yabs);
  68 
  69     void notifyKeyEvent(
  70         int eventType,
  71         int platformKeycode,
  72         int isRepeatEvent);
  73 
  74 #ifdef  __cplusplus
  75 }
  76 #endif
  77 
  78 #endif  /* ANDROIDLENS_H */
  79