You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.2 KiB
62 lines
2.2 KiB
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
11 years ago
|
package org.trinitydesktop.qt;
|
||
15 years ago
|
|
||
11 years ago
|
import org.trinitydesktop.qt.Qt;
|
||
15 years ago
|
|
||
|
/**
|
||
13 years ago
|
See {@link TQSpinWidgetSignals} for signals emitted by TQSpinWidget
|
||
15 years ago
|
*/
|
||
13 years ago
|
public class TQSpinWidget extends TQWidget {
|
||
|
protected TQSpinWidget(Class dummy){super((Class) null);}
|
||
15 years ago
|
public static final int UpDownArrows = 0;
|
||
|
public static final int PlusMinus = 1;
|
||
|
|
||
13 years ago
|
public native TQMetaObject metaObject();
|
||
15 years ago
|
public native String className();
|
||
13 years ago
|
public TQSpinWidget(TQWidget parent, String name) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQSpinWidget(parent,name);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSpinWidget(TQWidget parent, String name);
|
||
|
public TQSpinWidget(TQWidget parent) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQSpinWidget(parent);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSpinWidget(TQWidget parent);
|
||
|
public TQSpinWidget() {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQSpinWidget();
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQSpinWidget();
|
||
|
public native void setEditWidget(TQWidget widget);
|
||
|
public native TQWidget editWidget();
|
||
|
public native TQRect upRect();
|
||
|
public native TQRect downRect();
|
||
15 years ago
|
public native void setUpEnabled(boolean on);
|
||
|
public native void setDownEnabled(boolean on);
|
||
|
public native boolean isUpEnabled();
|
||
|
public native boolean isDownEnabled();
|
||
|
public native void setButtonSymbols(int bs);
|
||
|
public native int buttonSymbols();
|
||
|
public native void arrange();
|
||
|
public native void stepUp();
|
||
|
public native void stepDown();
|
||
|
public static native String tr(String arg1, String arg2);
|
||
|
public static native String tr(String arg1);
|
||
13 years ago
|
protected native void mousePressEvent(TQMouseEvent e);
|
||
|
protected native void resizeEvent(TQResizeEvent ev);
|
||
|
protected native void mouseReleaseEvent(TQMouseEvent e);
|
||
|
protected native void mouseMoveEvent(TQMouseEvent e);
|
||
|
protected native void wheelEvent(TQWheelEvent arg1);
|
||
|
public native void styleChange(TQStyle arg1);
|
||
|
protected native void paintEvent(TQPaintEvent arg1);
|
||
15 years ago
|
protected native void enableChanged(boolean old);
|
||
|
protected native void windowActivationChange(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();
|
||
|
}
|