1 /*
   2  * Copyright (c) 2010, 2015, 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 package com.sun.glass.ui.mac;
  26 
  27 import com.sun.glass.ui.Pixels;
  28 import com.sun.glass.ui.View;
  29 import java.nio.Buffer;
  30 import java.nio.ByteBuffer;
  31 import java.nio.IntBuffer;
  32 import java.util.Map;
  33 import java.util.TreeSet;
  34 
  35 /**
  36  * MacOSX platform implementation class for View.
  37  */
  38 final class MacView extends View {
  39 
  40     private native static void _initIDs();
  41     static {
  42         _initIDs();
  43         multiClickTime = _getMultiClickTime_impl();
  44         multiClickMaxX = _getMultiClickMaxX_impl();
  45         multiClickMaxY = _getMultiClickMaxY_impl();
  46     }
  47 
  48     // Constants
  49     private static final long multiClickTime;
  50     private static final int multiClickMaxX, multiClickMaxY;
  51 
  52     private native static long _getMultiClickTime_impl();
  53     private native static int _getMultiClickMaxX_impl();
  54     private native static int _getMultiClickMaxY_impl();
  55 
  56     static long getMultiClickTime_impl() {
  57         return multiClickTime;
  58     }
  59 
  60     static int getMultiClickMaxX_impl() {
  61         return multiClickMaxX;
  62     }
  63 
  64     static int getMultiClickMaxY_impl() {
  65         return multiClickMaxY;
  66     }
  67 
  68     @Override native protected int _getNativeFrameBuffer(long ptr);
  69     @Override native protected long _create(Map caps);
  70     @Override native protected int _getX(long ptr);
  71     @Override native protected int _getY(long ptr);
  72     @Override native protected void _setParent(long ptr, long parentPtr);
  73     @Override native protected boolean _close(long ptr);
  74     @Override native protected void _scheduleRepaint(long ptr);
  75     @Override native protected void _begin(long ptr);
  76     @Override native protected void _end(long ptr);
  77     @Override native protected boolean _enterFullscreen(long ptr, boolean animate, boolean keepRatio, boolean hideCursor);
  78     @Override native protected void _exitFullscreen(long ptr, boolean animate);
  79     @Override native protected void _enableInputMethodEvents(long ptr, boolean enable);
  80 
  81     @Override protected void _uploadPixels(long ptr, Pixels pixels) {
  82         Buffer data = pixels.getPixels();
  83         if (data.isDirect() == true) {
  84             _uploadPixelsDirect(ptr, data, pixels.getWidth(), pixels.getHeight(), pixels.getScale());
  85         } else if (data.hasArray() == true) {
  86             if (pixels.getBytesPerComponent() == 1) {
  87                 ByteBuffer bytes = (ByteBuffer)data;
  88                 _uploadPixelsByteArray(ptr, bytes.array(), bytes.arrayOffset(),
  89                                        pixels.getWidth(), pixels.getHeight(), pixels.getScale());
  90             } else {
  91                 IntBuffer ints = (IntBuffer)data;
  92                 _uploadPixelsIntArray(ptr, ints.array(), ints.arrayOffset(),
  93                                       pixels.getWidth(), pixels.getHeight(), pixels.getScale());
  94             }
  95         } else {
  96             // gznote: what are the circumstances under which this can happen?
  97             _uploadPixelsDirect(ptr, pixels.asByteBuffer(),
  98                                 pixels.getWidth(), pixels.getHeight(), pixels.getScale());
  99         }
 100     }
 101     native void _uploadPixelsDirect(long viewPtr, Buffer pixels, int width, int height, float scale);
 102     native void _uploadPixelsByteArray(long viewPtr, byte[] pixels, int offset, int width, int height, float scale);
 103     native void _uploadPixelsIntArray(long viewPtr, int[] pixels, int offset, int width, int height, float scale);
 104 
 105     @Override protected long _getNativeView(long ptr) {
 106         return ptr;
 107     }
 108 
 109     native protected long _getNativeLayer(long ptr);
 110     public long getNativeLayer() {
 111         return _getNativeLayer(getNativeView());
 112     }
 113 
 114     native protected int _getNativeRemoteLayerId(long ptr, String serverName);
 115     @Override public int getNativeRemoteLayerId(String serverName) {
 116         // used when run inside plugin
 117         return _getNativeRemoteLayerId(getNativeLayer(), serverName);
 118     }
 119 
 120     native protected void _hostRemoteLayerId(long ptr, int nativeLayerId);
 121     public void hostRemoteLayerId(int nativeLayerId) {
 122         // used when run inside plugin
 123         _hostRemoteLayerId(getNativeLayer(), nativeLayerId);
 124     }
 125 
 126     protected void notifyInputMethodMac(String str, int attrib, int length,
 127                                             int cursor, int selStart, int selLength) {
 128         byte atts[] = new byte[1];
 129         atts[0] = (byte) attrib;
 130         int attBounds[] = new int[2];
 131         attBounds[0] = 0;
 132         attBounds[1] = length;
 133         if(attrib == 4) {
 134             // attrib == 4 means we are going to commit changes, so commitLength should be non-zero
 135             notifyInputMethod(str, null, attBounds, atts, length, cursor, 0);
 136         } else {
 137             // all other cases = just an update, update preview text but do not commit it
 138             if (selLength > 0
 139                     && str != null && str.length() > 0
 140                     && selStart >= 0
 141                     && selLength + selStart <= str.length()) {
 142 
 143                 TreeSet<Integer> b = new TreeSet<>();
 144                 b.add(0);
 145                 b.add(selStart);
 146                 b.add(selStart + selLength);
 147                 b.add(str.length());
 148 
 149                 int[] boundary = new int[b.size()];
 150                 int i = 0;
 151                 for (int e : b) {
 152                     boundary[i] = e;
 153                     i++;
 154                 }
 155 
 156                 byte[] values = new byte[boundary.length - 1];
 157 
 158                 for (i = 0; i < boundary.length - 1; i++) {
 159                     values[i] = (boundary[i] == selStart)
 160                                         ? IME_ATTR_TARGET_CONVERTED
 161                                         : IME_ATTR_CONVERTED;
 162                 }
 163 
 164                 notifyInputMethod(str, boundary, boundary, values, 0, cursor, 0);
 165             } else {
 166                 notifyInputMethod(str, null, attBounds, atts, 0, cursor, 0);
 167             }
 168         }
 169     }
 170 }
 171