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.
66 lines
2.3 KiB
66 lines
2.3 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
|
import java.util.Calendar;
|
||
|
import java.util.Date;
|
||
|
|
||
|
/**
|
||
13 years ago
|
See {@link TQDateTimeEditSignals} for signals emitted by TQDateTimeEdit
|
||
15 years ago
|
*/
|
||
13 years ago
|
public class TQDateTimeEdit extends TQWidget {
|
||
|
protected TQDateTimeEdit(Class dummy){super((Class) null);}
|
||
|
public native TQMetaObject metaObject();
|
||
15 years ago
|
public native String className();
|
||
13 years ago
|
public TQDateTimeEdit(TQWidget parent, String name) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit(parent,name);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit(TQWidget parent, String name);
|
||
|
public TQDateTimeEdit(TQWidget parent) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit(parent);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit(TQWidget parent);
|
||
|
public TQDateTimeEdit() {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit();
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit();
|
||
|
public TQDateTimeEdit(Calendar datetime, TQWidget parent, String name) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit(datetime,parent,name);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit(Calendar datetime, TQWidget parent, String name);
|
||
|
public TQDateTimeEdit(Calendar datetime, TQWidget parent) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit(datetime,parent);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit(Calendar datetime, TQWidget parent);
|
||
|
public TQDateTimeEdit(Calendar datetime) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQDateTimeEdit(datetime);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQDateTimeEdit(Calendar datetime);
|
||
|
public native TQSize sizeHint();
|
||
|
public native TQSize minimumSizeHint();
|
||
15 years ago
|
public native Calendar dateTime();
|
||
13 years ago
|
public native TQDateEdit dateEdit();
|
||
|
public native TQTimeEdit timeEdit();
|
||
15 years ago
|
public native void setAutoAdvance(boolean advance);
|
||
|
public native boolean autoAdvance();
|
||
|
public native void setDateTime(Calendar dt);
|
||
|
public static native String tr(String arg1, String arg2);
|
||
|
public static native String tr(String arg1);
|
||
|
protected native void init();
|
||
13 years ago
|
protected native void resizeEvent(TQResizeEvent arg1);
|
||
15 years ago
|
protected native void newValue(Calendar d);
|
||
|
protected native void newValue(Date t);
|
||
|
/** 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();
|
||
|
}
|