//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.qt; import org.kde.qt.Qt; public class TQContextMenuEvent extends TQEvent { protected TQContextMenuEvent(Class dummy){super((Class) null);} public static final int Mouse = 0; public static final int Keyboard = 1; public static final int Other = 2; public TQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state) { super((Class) null); newTQContextMenuEvent(reason,pos,globalPos,state); } private native void newTQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state); public TQContextMenuEvent(int reason, TQPoint pos, int state) { super((Class) null); newTQContextMenuEvent(reason,pos,state); } private native void newTQContextMenuEvent(int reason, TQPoint pos, int state); public native int x(); public native int y(); public native int globalX(); public native int globalY(); public native TQPoint pos(); public native TQPoint globalPos(); public native int state(); public native boolean isAccepted(); public native boolean isConsumed(); public native void consume(); public native void accept(); public native void ignore(); public native int reason(); /** Deletes the wrapped C++ instance */ protected native void finalize() throws InternalError; /** Delete the wrapped C++ instance ahead of finalize() */ public native void dispose(); /** Has the wrapped C++ instance been deleted? */ public native boolean isDisposed(); }