io.qt.bluetooth.QBluetoothTransferManager Maven / Gradle / Ivy
package io.qt.bluetooth;
import io.qt.*;
/**
* Transfers data to another device using Object Push Profile (OPP)
* Java wrapper for Qt class QBluetoothTransferManager
*/
public class QBluetoothTransferManager extends io.qt.core.QObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QBluetoothTransferManager.class);
/**
* See QBluetoothTransferManager:: finished(QBluetoothTransferReply*)
*/
public final @NonNull Signal1 finished = new Signal1<>();
/**
* See QBluetoothTransferManager:: QBluetoothTransferManager(QObject*)
*/
public QBluetoothTransferManager(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QBluetoothTransferManager instance, io.qt.core.QObject parent);
/**
* See QBluetoothTransferManager:: put(QBluetoothTransferRequest, QIODevice*)
*/
@QtUninvokable
public final io.qt.bluetooth.@Nullable QBluetoothTransferReply put(io.qt.bluetooth.@NonNull QBluetoothTransferRequest request, io.qt.core.@Nullable QIODevice data){
return put_native_cref_QBluetoothTransferRequest_QIODevice_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(request), QtJambi_LibraryUtilities.internal.checkedNativeId(data));
}
@QtUninvokable
private native io.qt.bluetooth.QBluetoothTransferReply put_native_cref_QBluetoothTransferRequest_QIODevice_ptr(long __this__nativeId, long request, long data);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QBluetoothTransferManager(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QBluetoothTransferManager(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QBluetoothTransferManager instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QBluetoothTransferManager(io.qt.core.QObject)}
* with parent = null
.
*/
public QBluetoothTransferManager() {
this((io.qt.core.QObject)null);
}
}