summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QColorGroup.java
blob: 47257fc65fc3b26388554cb56830a9daad491d79 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

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

	public static final int Foreground = 0;
	public static final int Button = 1;
	public static final int Light = 2;
	public static final int Midlight = 3;
	public static final int Dark = 4;
	public static final int Mid = 5;
	public static final int Text = 6;
	public static final int BrightText = 7;
	public static final int ButtonText = 8;
	public static final int Base = 9;
	public static final int Background = 10;
	public static final int Shadow = 11;
	public static final int Highlight = 12;
	public static final int HighlightedText = 13;
	public static final int Link = 14;
	public static final int LinkVisited = 15;
	public static final int NColorRoles = 16;

	public TQColorGroup() {
		newTQColorGroup();
	}
	private native void newTQColorGroup();
	public TQColorGroup(TQColor foreground, TQColor button, TQColor light, TQColor dark, TQColor mid, TQColor text, TQColor base) {
		newTQColorGroup(foreground,button,light,dark,mid,text,base);
	}
	private native void newTQColorGroup(TQColor foreground, TQColor button, TQColor light, TQColor dark, TQColor mid, TQColor text, TQColor base);
	public TQColorGroup(TQBrush foreground, TQBrush button, TQBrush light, TQBrush dark, TQBrush mid, TQBrush text, TQBrush bright_text, TQBrush base, TQBrush background) {
		newTQColorGroup(foreground,button,light,dark,mid,text,bright_text,base,background);
	}
	private native void newTQColorGroup(TQBrush foreground, TQBrush button, TQBrush light, TQBrush dark, TQBrush mid, TQBrush text, TQBrush bright_text, TQBrush base, TQBrush background);
	public TQColorGroup(TQColorGroup arg1) {
		newTQColorGroup(arg1);
	}
	private native void newTQColorGroup(TQColorGroup arg1);
	public native TQColor color(int arg1);
	public native TQBrush brush(int arg1);
	public native void setColor(int arg1, TQColor arg2);
	public native void setBrush(int arg1, TQBrush arg2);
	public native TQColor foreground();
	public native TQColor button();
	public native TQColor light();
	public native TQColor dark();
	public native TQColor mid();
	public native TQColor text();
	public native TQColor base();
	public native TQColor background();
	public native TQColor midlight();
	public native TQColor brightText();
	public native TQColor buttonText();
	public native TQColor shadow();
	public native TQColor highlight();
	public native TQColor highlightedText();
	public native TQColor link();
	public native TQColor linkVisited();
	public native boolean op_equals(TQColorGroup g);
	public native boolean op_not_equals(TQColorGroup g);
	/** 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();
}