/*
* Copyright (c) 2007, persianmobidict.sourceforge.net
* Released under the GNU General Public License
*/
package pmd.gui.event;
public interface Event {
int KEY_PRESSED = 1;
int KEY_RELEASED = 2;
int KEY_REPEATED = 3;
int POINTER_PRESSED = 4;
int POINTER_RELEASED = 5;
int POINTER_CLICKED = 6;
int POINTER_DRAGGED = 7;
int WIDGET_RESIZED = 8;
int WIDGET_SHOWN = 9;
int WIDGET_HIDDEN = 10;
}
|