summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QColorGroup.java
blob: a59ef7358bdedf457bdab8fb4cfc33c3356f03a6 (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 QColorGroup implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected QColorGroup(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 QColorGroup() {
		newQColorGroup();
	}
	private native void newQColorGroup();
	public QColorGroup(QColor foreground, QColor button, QColor light, QColor dark, QColor mid, QColor text, QColor base) {
		newQColorGroup(foreground,button,light,dark,mid,text,base);
	}
	private native void newQColorGroup(QColor foreground, QColor button, QColor light, QColor dark, QColor mid, QColor text, QColor base);
	public QColorGroup(QBrush foreground, QBrush button, QBrush light, QBrush dark, QBrush mid, QBrush text, QBrush bright_text, QBrush base, QBrush background) {
		newQColorGroup(foreground,button,light,dark,mid,text,bright_text,base,background);
	}
	private native void newQColorGroup(QBrush foreground, QBrush button, QBrush light, QBrush dark, QBrush mid, QBrush text, QBrush bright_text, QBrush base, QBrush background);
	public QColorGroup(QColorGroup arg1) {
		newQColorGroup(arg1);
	}
	private native void newQColorGroup(QColorGroup arg1);
	public native QColor color(int arg1);
	public native QBrush brush(int arg1);
	public native void setColor(int arg1, QColor arg2);
	public native void setBrush(int arg1, QBrush arg2);
	public native QColor foreground();
	public native QColor button();
	public native QColor light();
	public native QColor dark();
	public native QColor mid();
	public native QColor text();
	public native QColor base();
	public native QColor background();
	public native QColor midlight();
	public native QColor brightText();
	public native QColor buttonText();
	public native QColor shadow();
	public native QColor highlight();
	public native QColor highlightedText();
	public native QColor link();
	public native QColor linkVisited();
	public native boolean op_equals(QColorGroup g);
	public native boolean op_not_equals(QColorGroup 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();
}