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

org.graphstream.ui.fx_viewer.util.FxMouseOverMouseManager Maven / Gradle / Ivy

/*
 * This file is part of GraphStream .
 * 
 * GraphStream is a library whose purpose is to handle static or dynamic
 * graph, create them from scratch, file or any source and display them.
 * 
 * This program is free software distributed under the terms of two licenses, the
 * CeCILL-C license that fits European law, and the GNU Lesser General Public
 * License. You can  use, modify and/ or redistribute the software under the terms
 * of the CeCILL-C license as circulated by CEA, CNRS and INRIA at the following
 * URL  or under the terms of the GNU LGPL as published by
 * the Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 * 
 * This program 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 * 
 * The fact that you are presently reading this means that you have had
 * knowledge of the CeCILL-C and LGPL licenses and that you accept their terms.
 */

 /**
  * @author Antoine Dutot 
  * @author Guilhelm Savin 
  * @author Hicham Brahimi 
  */
  
package org.graphstream.ui.fx_viewer.util;

import org.graphstream.ui.graphicGraph.GraphicElement;
import org.graphstream.ui.graphicGraph.GraphicGraph;
import org.graphstream.ui.view.View;
import org.graphstream.ui.view.util.InteractiveElement;

import javafx.event.EventHandler;
import javafx.scene.input.MouseEvent;

import java.util.Calendar;
import java.util.EnumSet;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.locks.ReentrantLock;

public class FxMouseOverMouseManager extends FxMouseManager {

    private GraphicElement hoveredElement;

    private long hoveredElementLastChanged;

    private ReentrantLock hoverLock = new ReentrantLock();

    private Timer hoverTimer = new Timer(true);

    private HoverTimerTask latestHoverTimerTask;

    private final long delay;

    /**
     * @param delay The mouse needs to stay on an element for at least this amount of milliseconds, until the element
     *              gets the attribute "ui.mouseOver" assigned. A value smaller or equal to zero indicates, that
     *              the attribute is assigned without delay.
     */
    public FxMouseOverMouseManager(final long delay) {
        super();
        this.delay = delay;
    }
    
    public FxMouseOverMouseManager(EnumSet types, final long delay) {
        super(types);
        this.delay = delay;
    }
    
    public void init(GraphicGraph graph, View view) {
    	super.init(graph, view);
        super.view.addListener(MouseEvent.MOUSE_MOVED, mouseMoved);
    }
    
    public FxMouseOverMouseManager(EnumSet types) {
        this(types, 100);
    }

    public FxMouseOverMouseManager() {
        this(100);
    }

    protected void mouseOverElement(GraphicElement element) {
        element.setAttribute("ui.mouseOver");
    }

    protected void mouseLeftElement(GraphicElement element) {
    	this.hoveredElement = null;
        element.removeAttribute("ui.mouseOver");
    }
    
    EventHandler mouseMoved = new EventHandler() {
		@Override
		public void handle(MouseEvent event) {
			try {
	            hoverLock.lockInterruptibly();
	            boolean stayedOnElement = false;
	            GraphicElement currentElement = view.findGraphicElementAt(getManagedTypes(),event.getX(), event.getY());
	            if (hoveredElement != null) {
	                stayedOnElement = currentElement == null ? false : currentElement.equals(hoveredElement);
	                if (!stayedOnElement && hoveredElement.hasAttribute("ui.mouseOver")) {
	                    mouseLeftElement(hoveredElement);
	                }
	            }
	            if (!stayedOnElement && currentElement != null) {
	                if (delay <= 0) {
	                    mouseOverElement(currentElement);
	                } else {
	                    hoveredElement = currentElement;
	                    hoveredElementLastChanged = Calendar.getInstance().getTimeInMillis();
	                    if (latestHoverTimerTask != null) {
	                        latestHoverTimerTask.cancel();
	                    }
	                    latestHoverTimerTask = new HoverTimerTask(hoveredElementLastChanged, hoveredElement);
	                    hoverTimer.schedule(latestHoverTimerTask, delay);
	                }
	            }

	        } catch(InterruptedException iex) {
	            // NOP
	        } finally {
	            hoverLock.unlock();
	        }
		}
    };
    
    private final class HoverTimerTask extends TimerTask {

        private final long lastChanged;

        private final GraphicElement element;

        public HoverTimerTask(long lastChanged, GraphicElement element) {
            this.lastChanged = lastChanged;
            this.element = element;
        }

        @Override
        public void run() {
            try {
                hoverLock.lock();
                if (hoveredElementLastChanged == lastChanged) {
                    mouseOverElement(element);
                }
            } catch (Exception ex) {
                ex.printStackTrace();
            } finally {
                hoverLock.unlock();
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy