summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QColorGroup.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QColorGroup.java')
-rw-r--r--qtjava/javalib/org/kde/qt/QColorGroup.java73
1 files changed, 73 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QColorGroup.java b/qtjava/javalib/org/kde/qt/QColorGroup.java
new file mode 100644
index 00000000..a59ef735
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/QColorGroup.java
@@ -0,0 +1,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();
+}