All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.glass.ui.mac.MacTouchInputSupport Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package com.sun.glass.ui.mac;

import com.sun.glass.events.TouchEvent;
import com.sun.glass.ui.TouchInputSupport;
import com.sun.glass.ui.View;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

class MacTouchInputSupport extends TouchInputSupport
{
    private final Map> touchIdToView =
            new HashMap>();

    private int curModifiers;
    private boolean curIsDirect;
    private List curTouchPoints;

    static private class TouchPoint
    {
        final int state;
        final long id;
        final int x;
        final int y;
        final int xAbs;
        final int yAbs;

        TouchPoint(int state, long id, int x, int y, int xAbs,
                   int yAbs) {
            this.state = state;
            this.id = id;
            this.x = x;
            this.y = y;
            this.xAbs = xAbs;
            this.yAbs = yAbs;
        }
    };

    MacTouchInputSupport(TouchCountListener listener,
                         boolean filterTouchCoordinates) {
        super(listener, filterTouchCoordinates);
    }

    @Override
    public void notifyBeginTouchEvent(View view, int modifiers, boolean isDirect,
                                      int touchEventCount) {
        curModifiers = modifiers;
        curIsDirect = isDirect;
        curTouchPoints = new ArrayList(touchEventCount);
    }

    @Override
    public void notifyEndTouchEvent(View view) {
        if (curTouchPoints.isEmpty()) {
            return;
        }

        try {
            super.notifyBeginTouchEvent(view, curModifiers, curIsDirect,
                                        curTouchPoints.size());

            for (TouchPoint tp: curTouchPoints) {
                super.notifyNextTouchEvent(view, tp.state, tp.id, tp.x, tp.y,
                                           tp.xAbs, tp.yAbs);
            }

            super.notifyEndTouchEvent(view);

        } finally {
            curTouchPoints = null;
        }
    }

    @Override
    public void notifyNextTouchEvent(View view, int state, long id, int x, int y,
                                     int xAbs, int yAbs) {

        View storedView = null;
        if (state == TouchEvent.TOUCH_PRESSED) {
            storedView = view;
            touchIdToView.put(id, new WeakReference(view));
        } else {
            storedView = touchIdToView.get(id).get();
            if (state == TouchEvent.TOUCH_RELEASED) {
                touchIdToView.remove(id);
            }
        }

        //
        // Forward touch point event to the view from which it originates.
        //

        if (storedView == view) {
            curTouchPoints.add(new TouchPoint(state, id, x, y, xAbs, yAbs));
        } else {
            if (storedView != null && storedView.isClosed()) {
                // Make sure Scenegraph never receives touch events
                // for disposed views.
                storedView = null;
            }

            super.notifyBeginTouchEvent(storedView, curModifiers,
                                        curIsDirect, 1);
            super.notifyNextTouchEvent(storedView, state, id, x, y, xAbs,
                                       yAbs);
            super.notifyEndTouchEvent(storedView);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy