blob: 0bb0f7a18e9ed4f9f53db2a9635b61a1090ca061 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.dom.svg12;
import org.apache.batik.dom.events.DOMUIEvent;
import org.w3c.dom.views.AbstractView;
/**
* SVG 1.2 mouse wheel event.
*
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id$
*/
public class SVGOMWheelEvent extends DOMUIEvent {
/**
* The number of clicks the mouse wheel has been moved.
*/
protected int wheelDelta;
/**
* Returns the number of mouse wheel clicks.
*/
public int getWheelDelta() {
return wheelDelta;
}
/**
* Initializes this SVGOMWheelEvent object.
* @param typeArg Specifies the event type.
* @param canBubbleArg Specifies whether or not the event can bubble.
* @param cancelableArg Specifies whether or not the event's default action
* can be prevented.
* @param viewArg Specifies the <code>Event</code>'s
* <code>AbstractView</code>.
* @param wheelDeltaArg Specifices the number of clicks the mouse wheel has
* been moved.
*/
public void initWheelEvent(String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
AbstractView viewArg,
int wheelDeltaArg) {
initUIEvent(typeArg, canBubbleArg, cancelableArg, viewArg, 0);
wheelDelta = wheelDeltaArg;
}
/**
* Initializes this KeyboardEvent object.
* @param namespaceURIArg Specifies the event namespace URI.
* @param typeArg Specifies the event type.
* @param canBubbleArg Specifies whether or not the event can bubble.
* @param cancelableArg Specifies whether or not the event's default action
* can be prevented.
* @param viewArg Specifies the <code>Event</code>'s
* <code>AbstractView</code>.
* @param wheelDeltaArg Specifices the number of clicks the mouse wheel has
* been moved.
*/
public void initWheelEventNS(String namespaceURIArg,
String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
AbstractView viewArg,
int wheelDeltaArg) {
initUIEventNS(namespaceURIArg,
typeArg,
canBubbleArg,
cancelableArg,
viewArg,
0);
wheelDelta = wheelDeltaArg;
}
}