summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QStyleOption.java
blob: 0c37792c2a25aa8a6b566e43637c7bc212241326 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class TQStyleOption implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected TQStyleOption(Class dummy){}

	public static final int Default = 0;

	public TQStyleOption(int arg1) {
		newTQStyleOption(arg1);
	}
	private native void newTQStyleOption(int arg1);
	public TQStyleOption() {
		newTQStyleOption();
	}
	private native void newTQStyleOption();
	public TQStyleOption(int in1, int in2) {
		newTQStyleOption(in1,in2);
	}
	private native void newTQStyleOption(int in1, int in2);
	public TQStyleOption(int in1, int in2, int in3, int in4) {
		newTQStyleOption(in1,in2,in3,in4);
	}
	private native void newTQStyleOption(int in1, int in2, int in3, int in4);
	public TQStyleOption(TQMenuItem m) {
		newTQStyleOption(m);
	}
	private native void newTQStyleOption(TQMenuItem m);
	public TQStyleOption(TQMenuItem m, int in1) {
		newTQStyleOption(m,in1);
	}
	private native void newTQStyleOption(TQMenuItem m, int in1);
	public TQStyleOption(TQMenuItem m, int in1, int in2) {
		newTQStyleOption(m,in1,in2);
	}
	private native void newTQStyleOption(TQMenuItem m, int in1, int in2);
	public TQStyleOption(TQColor c) {
		newTQStyleOption(c);
	}
	private native void newTQStyleOption(TQColor c);
	public TQStyleOption(TQTab t) {
		newTQStyleOption(t);
	}
	private native void newTQStyleOption(TQTab t);
	public TQStyleOption(TQListViewItem i) {
		newTQStyleOption(i);
	}
	private native void newTQStyleOption(TQListViewItem i);
	public TQStyleOption(TQCheckListItem i) {
		newTQStyleOption(i);
	}
	private native void newTQStyleOption(TQCheckListItem i);
	public TQStyleOption(TQRect r) {
		newTQStyleOption(r);
	}
	private native void newTQStyleOption(TQRect r);
	public TQStyleOption(TQWidget w) {
		newTQStyleOption(w);
	}
	private native void newTQStyleOption(TQWidget w);
	public native boolean isDefault();
	public native int day();
	public native int lineWidth();
	public native int midLineWidth();
	public native int frameShape();
	public native int frameShadow();
	public native int headerSection();
	public native TQMenuItem menuItem();
	public native int maxIconWidth();
	public native int tabWidth();
	public native TQColor color();
	public native TQTab tab();
	public native TQCheckListItem checkListItem();
	public native TQListViewItem listViewItem();
	public native int arrowType();
	public native TQRect rect();
	public native TQWidget widget();
	/** 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();
}