io.qt.widgets.QDateEdit Maven / Gradle / Ivy
The newest version!
package io.qt.widgets;
/**
* Widget for editing dates based on the QDateTimeEdit widget
* Java wrapper for Qt class QDateEdit
*/
public class QDateEdit extends io.qt.widgets.QDateTimeEdit
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QDateEdit.class);
@io.qt.QtPropertyNotify(name="date")
public final Signal1 userDateChanged = new Signal1<>();
/**
* Overloaded constructor for {@link #QDateEdit(io.qt.core.QDate, io.qt.widgets.QWidget)}
* with parent = null
.
*/
public QDateEdit(io.qt.core.QDate date) {
this(date, (io.qt.widgets.QWidget)null);
}
/**
* See QDateEdit::QDateEdit(QDate,QWidget*)
*/
public QDateEdit(io.qt.core.QDate date, io.qt.widgets.QWidget parent){
super((QPrivateConstructor)null);
initialize_native(this, date, parent);
}
private native static void initialize_native(QDateEdit instance, io.qt.core.QDate date, io.qt.widgets.QWidget parent);
/**
* Overloaded constructor for {@link #QDateEdit(io.qt.widgets.QWidget)}
* with parent = null
.
*/
public QDateEdit() {
this((io.qt.widgets.QWidget)null);
}
/**
* See QDateEdit::QDateEdit(QWidget*)
*/
public QDateEdit(io.qt.widgets.QWidget parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QDateEdit instance, io.qt.widgets.QWidget parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QDateEdit(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
*/
@io.qt.NativeAccess
protected QDateEdit(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@io.qt.QtUninvokable
private static native void initialize_native(QDateEdit instance, QDeclarativeConstructor constructor);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy