//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; import java.util.Calendar; import org.kde.qt.TQWidget; import org.kde.qt.TQWidget; /** This widget can be used to display or allow user selection of date and time. \image html kdatetimewidget.png "KDE Date Time Widget" See {@link KDateTimeWidgetSignals} for signals emitted by KDateTimeWidget @author Hans Petter Bieker @version $Id$ @short A combination of a date and a time selection widget. @see KDateWidget */ public class KDateTimeWidget extends TQWidget { protected KDateTimeWidget(Class dummy){super((Class) null);} public native TQMetaObject metaObject(); public native String className(); /** Constructs a date and time selection widget. @short Constructs a date and time selection widget. */ public KDateTimeWidget(TQWidget parent, String name) { super((Class) null); newKDateTimeWidget(parent,name); } private native void newKDateTimeWidget(TQWidget parent, String name); public KDateTimeWidget(TQWidget parent) { super((Class) null); newKDateTimeWidget(parent); } private native void newKDateTimeWidget(TQWidget parent); public KDateTimeWidget() { super((Class) null); newKDateTimeWidget(); } private native void newKDateTimeWidget(); /** Constructs a date and time selection widget with the initial date and time set to datetime. @short Constructs a date and time selection widget with the initial date and time set to datetime. */ public KDateTimeWidget(Calendar datetime, TQWidget parent, String name) { super((Class) null); newKDateTimeWidget(datetime,parent,name); } private native void newKDateTimeWidget(Calendar datetime, TQWidget parent, String name); public KDateTimeWidget(Calendar datetime, TQWidget parent) { super((Class) null); newKDateTimeWidget(datetime,parent); } private native void newKDateTimeWidget(Calendar datetime, TQWidget parent); public KDateTimeWidget(Calendar datetime) { super((Class) null); newKDateTimeWidget(datetime); } private native void newKDateTimeWidget(Calendar datetime); /** Returns the currently selected date and time. @short Returns the currently selected date and time. */ public native Calendar dateTime(); /** Changes the selected date and time to datetime. @short Changes the selected date and time to datetime. */ public native void setDateTime(Calendar datetime); /** 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(); }