From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- qtjava/javalib/org/kde/qt/QCheckListItem.java | 111 ++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 qtjava/javalib/org/kde/qt/QCheckListItem.java (limited to 'qtjava/javalib/org/kde/qt/QCheckListItem.java') diff --git a/qtjava/javalib/org/kde/qt/QCheckListItem.java b/qtjava/javalib/org/kde/qt/QCheckListItem.java new file mode 100644 index 00000000..b0ab448a --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QCheckListItem.java @@ -0,0 +1,111 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +public class QCheckListItem extends QListViewItem { + protected QCheckListItem(Class dummy){super((Class) null);} + public static final int RadioButton = 0; + public static final int CheckBox = 1; + public static final int Controller = 2; + public static final int RadioButtonController = Controller; + public static final int CheckBoxController = 3; + + public static final int Off = 0; + public static final int NoChange = 1; + public static final int On = 2; + + public QCheckListItem(QCheckListItem parent, String text, int arg3) { + super((Class) null); + newQCheckListItem(parent,text,arg3); + } + private native void newQCheckListItem(QCheckListItem parent, String text, int arg3); + public QCheckListItem(QCheckListItem parent, String text) { + super((Class) null); + newQCheckListItem(parent,text); + } + private native void newQCheckListItem(QCheckListItem parent, String text); + public QCheckListItem(QCheckListItem parent, QListViewItem after, String text, int arg4) { + super((Class) null); + newQCheckListItem(parent,after,text,arg4); + } + private native void newQCheckListItem(QCheckListItem parent, QListViewItem after, String text, int arg4); + public QCheckListItem(QCheckListItem parent, QListViewItem after, String text) { + super((Class) null); + newQCheckListItem(parent,after,text); + } + private native void newQCheckListItem(QCheckListItem parent, QListViewItem after, String text); + public QCheckListItem(QListViewItem parent, String text, int arg3) { + super((Class) null); + newQCheckListItem(parent,text,arg3); + } + private native void newQCheckListItem(QListViewItem parent, String text, int arg3); + public QCheckListItem(QListViewItem parent, String text) { + super((Class) null); + newQCheckListItem(parent,text); + } + private native void newQCheckListItem(QListViewItem parent, String text); + public QCheckListItem(QListViewItem parent, QListViewItem after, String text, int arg4) { + super((Class) null); + newQCheckListItem(parent,after,text,arg4); + } + private native void newQCheckListItem(QListViewItem parent, QListViewItem after, String text, int arg4); + public QCheckListItem(QListViewItem parent, QListViewItem after, String text) { + super((Class) null); + newQCheckListItem(parent,after,text); + } + private native void newQCheckListItem(QListViewItem parent, QListViewItem after, String text); + public QCheckListItem(QListView parent, String text, int arg3) { + super((Class) null); + newQCheckListItem(parent,text,arg3); + } + private native void newQCheckListItem(QListView parent, String text, int arg3); + public QCheckListItem(QListView parent, String text) { + super((Class) null); + newQCheckListItem(parent,text); + } + private native void newQCheckListItem(QListView parent, String text); + public QCheckListItem(QListView parent, QListViewItem after, String text, int arg4) { + super((Class) null); + newQCheckListItem(parent,after,text,arg4); + } + private native void newQCheckListItem(QListView parent, QListViewItem after, String text, int arg4); + public QCheckListItem(QListView parent, QListViewItem after, String text) { + super((Class) null); + newQCheckListItem(parent,after,text); + } + private native void newQCheckListItem(QListView parent, QListViewItem after, String text); + public QCheckListItem(QListViewItem parent, String text, QPixmap arg3) { + super((Class) null); + newQCheckListItem(parent,text,arg3); + } + private native void newQCheckListItem(QListViewItem parent, String text, QPixmap arg3); + public QCheckListItem(QListView parent, String text, QPixmap arg3) { + super((Class) null); + newQCheckListItem(parent,text,arg3); + } + private native void newQCheckListItem(QListView parent, String text, QPixmap arg3); + public native void paintCell(QPainter arg1, QColorGroup cg, int column, int width, int alignment); + public native void paintFocus(QPainter arg1, QColorGroup cg, QRect r); + public native int width(QFontMetrics arg1, QListView arg2, int column); + public native void setup(); + public native void setOn(boolean arg1); + public native boolean isOn(); + public native int type(); + public native String text(); + public native String text(int n); + public native void setTristate(boolean arg1); + public native boolean isTristate(); + public native int state(); + public native void setState(int s); + public native int rtti(); + protected native void activate(); + protected native void turnOffChild(); + protected native void stateChange(boolean arg1); + /** 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(); +} -- cgit v1.2.1