X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scenegraph%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fg2d%2Fevents%2FIEventQueue.java;h=bbdbac613d1c76405cc43832a0c375cc9e1391d1;hb=bdb7180f6425b460b8566a3223b319caf9dbc56f;hp=a0874b0f4c696236630262188ad5d0702e8cac6f;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/events/IEventQueue.java b/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/events/IEventQueue.java index a0874b0f4..bbdbac613 100644 --- a/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/events/IEventQueue.java +++ b/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/events/IEventQueue.java @@ -1,73 +1,73 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -/* - * - * @author Toni Kalajainen - */ -package org.simantics.scenegraph.g2d.events; - -import org.simantics.utils.threads.IThreadWorkQueue; - -/** - * - * @see MouseEventCoalescer - * @see EventQueue Default implementation - * @author Toni Kalajainen - */ -public interface IEventQueue { - - /** - * queues event - * - * @param e - */ - void queueEvent(Event e); - - /** - * Queue event as next to be processed - * - * @param e - */ - void queueFirst(Event e); - - boolean isEmpty(); - - int size(); - - void addEventCoalesceler(EventCoalescer coalescaler); - void removeEventCoalesceler(EventCoalescer coalescaler); - - void addQueueListener(IEventQueueListener listener); - void removeQueueListener(IEventQueueListener listener); - void addQueueListener(IEventQueueListener listener, IThreadWorkQueue thread); - void removeQueueListener(IEventQueueListener listener, IThreadWorkQueue thread); - - /** - * Coalesces mouse events. - */ - public interface EventCoalescer { - /** - * - * @param apriori - * @param aposterior - * @return coalesced event of the two or null if the two - * events cannot be coalesced - */ - Event coalesce(Event apriori, Event aposterior); - } - - public interface IEventQueueListener { - void onEventAdded(IEventQueue queue, Event e, int index); - void onQueueEmpty(IEventQueue queue); - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +/* + * + * @author Toni Kalajainen + */ +package org.simantics.scenegraph.g2d.events; + +import org.simantics.utils.threads.IThreadWorkQueue; + +/** + * + * @see MouseEventCoalescer + * @see EventQueue Default implementation + * @author Toni Kalajainen + */ +public interface IEventQueue { + + /** + * queues event + * + * @param e + */ + void queueEvent(Event e); + + /** + * Queue event as next to be processed + * + * @param e + */ + void queueFirst(Event e); + + boolean isEmpty(); + + int size(); + + void addEventCoalesceler(EventCoalescer coalescaler); + void removeEventCoalesceler(EventCoalescer coalescaler); + + void addQueueListener(IEventQueueListener listener); + void removeQueueListener(IEventQueueListener listener); + void addQueueListener(IEventQueueListener listener, IThreadWorkQueue thread); + void removeQueueListener(IEventQueueListener listener, IThreadWorkQueue thread); + + /** + * Coalesces mouse events. + */ + public interface EventCoalescer { + /** + * + * @param apriori + * @param aposterior + * @return coalesced event of the two or null if the two + * events cannot be coalesced + */ + Event coalesce(Event apriori, Event aposterior); + } + + public interface IEventQueueListener { + void onEventAdded(IEventQueue queue, Event e, int index); + void onQueueEmpty(IEventQueue queue); + } + +}