summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQComboBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQComboBox.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQComboBox.java123
1 files changed, 123 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQComboBox.java b/qtjava/javalib/org/kde/qt/TQComboBox.java
new file mode 100644
index 00000000..8055993d
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQComboBox.java
@@ -0,0 +1,123 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+/**
+ See {@link TQComboBoxSignals} for signals emitted by TQComboBox
+*/
+public class TQComboBox extends TQWidget {
+ protected TQComboBox(Class dummy){super((Class) null);}
+ public static final int NoInsertion = 0;
+ public static final int AtTop = 1;
+ public static final int AtCurrent = 2;
+ public static final int AtBottom = 3;
+ public static final int AfterCurrent = 4;
+ public static final int BeforeCurrent = 5;
+
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TQComboBox(TQWidget parent, String name) {
+ super((Class) null);
+ newTQComboBox(parent,name);
+ }
+ private native void newTQComboBox(TQWidget parent, String name);
+ public TQComboBox(TQWidget parent) {
+ super((Class) null);
+ newTQComboBox(parent);
+ }
+ private native void newTQComboBox(TQWidget parent);
+ public TQComboBox() {
+ super((Class) null);
+ newTQComboBox();
+ }
+ private native void newTQComboBox();
+ public TQComboBox(boolean rw, TQWidget parent, String name) {
+ super((Class) null);
+ newTQComboBox(rw,parent,name);
+ }
+ private native void newTQComboBox(boolean rw, TQWidget parent, String name);
+ public TQComboBox(boolean rw, TQWidget parent) {
+ super((Class) null);
+ newTQComboBox(rw,parent);
+ }
+ private native void newTQComboBox(boolean rw, TQWidget parent);
+ public TQComboBox(boolean rw) {
+ super((Class) null);
+ newTQComboBox(rw);
+ }
+ private native void newTQComboBox(boolean rw);
+ public native int count();
+ public native void insertStringList(String[] arg1, int index);
+ public native void insertStringList(String[] arg1);
+ public native void insertStrList(String[] arg1, int index);
+ public native void insertStrList(String[] arg1);
+ public native void insertStrList(String[] arg1, int numStrings, int index);
+ public native void insertItem(String text, int index);
+ public native void insertItem(String text);
+ public native void insertItem(TQPixmap pixmap, int index);
+ public native void insertItem(TQPixmap pixmap);
+ public native void insertItem(TQPixmap pixmap, String text, int index);
+ public native void insertItem(TQPixmap pixmap, String text);
+ public native void removeItem(int index);
+ public native int currentItem();
+ public native void setCurrentItem(int index);
+ public native String currentText();
+ public native void setCurrentText(String arg1);
+ public native String text(int index);
+ public native TQPixmap pixmap(int index);
+ public native void changeItem(String text, int index);
+ public native void changeItem(TQPixmap pixmap, int index);
+ public native void changeItem(TQPixmap pixmap, String text, int index);
+ public native boolean autoResize();
+ public native void setAutoResize(boolean arg1);
+ public native TQSize sizeHint();
+ public native void setPalette(TQPalette arg1);
+ public native void setFont(TQFont arg1);
+ public native void setEnabled(boolean arg1);
+ public native void setSizeLimit(int arg1);
+ public native int sizeLimit();
+ public native void setMaxCount(int arg1);
+ public native int maxCount();
+ public native void setInsertionPolicy(int policy);
+ public native int insertionPolicy();
+ public native void setValidator(TQValidator arg1);
+ public native TQValidator validator();
+ public native void setListBox(TQListBox arg1);
+ public native TQListBox listBox();
+ public native void setLineEdit(TQLineEdit edit);
+ public native TQLineEdit lineEdit();
+ public native void setAutoCompletion(boolean arg1);
+ public native boolean autoCompletion();
+ public native boolean eventFilter(TQObject object, TQEvent event);
+ public native void setDuplicatesEnabled(boolean enable);
+ public native boolean duplicatesEnabled();
+ public native boolean editable();
+ public native void setEditable(boolean arg1);
+ public native void popup();
+ public native void hide();
+ public native void clear();
+ public native void clearValidator();
+ public native void clearEdit();
+ public native void setEditText(String arg1);
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String arg1);
+ protected native void paintEvent(TQPaintEvent arg1);
+ protected native void resizeEvent(TQResizeEvent arg1);
+ protected native void mousePressEvent(TQMouseEvent arg1);
+ protected native void mouseMoveEvent(TQMouseEvent arg1);
+ protected native void mouseReleaseEvent(TQMouseEvent arg1);
+ protected native void mouseDoubleClickEvent(TQMouseEvent arg1);
+ protected native void keyPressEvent(TQKeyEvent e);
+ protected native void focusInEvent(TQFocusEvent e);
+ protected native void focusOutEvent(TQFocusEvent e);
+ protected native void wheelEvent(TQWheelEvent e);
+ public native void styleChange(TQStyle arg1);
+ protected native void updateMask();
+ /** 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();
+}