summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QContextMenuEvent.java
blob: 88a5eed6f2fb1f47451239fdf0ef1339983756c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class QContextMenuEvent extends QEvent  {
	protected QContextMenuEvent(Class dummy){super((Class) null);}
	public static final int Mouse = 0;
	public static final int Keyboard = 1;
	public static final int Other = 2;

	public QContextMenuEvent(int reason, QPoint pos, QPoint globalPos, int state) {
		super((Class) null);
		newQContextMenuEvent(reason,pos,globalPos,state);
	}
	private native void newQContextMenuEvent(int reason, QPoint pos, QPoint globalPos, int state);
	public QContextMenuEvent(int reason, QPoint pos, int state) {
		super((Class) null);
		newQContextMenuEvent(reason,pos,state);
	}
	private native void newQContextMenuEvent(int reason, QPoint pos, int state);
	public native int x();
	public native int y();
	public native int globalX();
	public native int globalY();
	public native QPoint pos();
	public native QPoint 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();
}