001/**********************************************
002 * Copyright (C) 2010 Lukas Laag
003 * This file is part of lib-gwt-svg.
004 * 
005 * libgwtsvg is free software: you can redistribute it and/or modify
006 * it under the terms of the GNU Lesser General Public License as published by
007 * the Free Software Foundation, either version 3 of the License, or
008 * (at your option) any later version.
009 * 
010 * libgwtsvg is distributed in the hope that it will be useful,
011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
013 * GNU Lesser General Public License for more details.
014 * 
015 * You should have received a copy of the GNU Lesser General Public License
016 * along with libgwtsvg.  If not, see http://www.gnu.org/licenses/
017 **********************************************/
018package org.vectomatic.dom.svg.events;
019
020import com.google.gwt.event.dom.client.HasAllDragAndDropHandlers;
021import com.google.gwt.event.dom.client.HasAllTouchHandlers;
022import com.google.gwt.event.dom.client.HasClickHandlers;
023import com.google.gwt.event.dom.client.HasLoadHandlers;
024import com.google.gwt.event.dom.client.HasMouseDownHandlers;
025import com.google.gwt.event.dom.client.HasMouseMoveHandlers;
026import com.google.gwt.event.dom.client.HasMouseOutHandlers;
027import com.google.gwt.event.dom.client.HasMouseOverHandlers;
028import com.google.gwt.event.dom.client.HasMouseUpHandlers;
029
030/**
031 * This is a convenience interface that includes all graphical handlers defined by
032 * SVG.
033 */
034public interface HasGraphicalHandlers extends HasMouseDownHandlers,
035HasMouseUpHandlers, HasMouseOutHandlers, HasMouseOverHandlers,
036HasMouseMoveHandlers, HasClickHandlers, HasLoadHandlers, HasFocusInHandlers, HasFocusOutHandlers, HasActivateHandlers, HasAllTouchHandlers, HasAllDragAndDropHandlers {
037
038}