Uses of Class
io.qt.QNativePointer
Package | Description |
---|---|
io.qt |
-
Uses of QNativePointer in io.qt
Methods in io.qt that return QNativePointer Modifier and Type Method Description static QNativePointer
QNativePointer. createCharPointer(String string)
Creates a char* from the input stringstatic QNativePointer
QNativePointer. createCharPointerPointer(String[] strings)
Creates a char** native pointer from the array of input strings.static QNativePointer
QNativePointer. fromArray(boolean[] data)
static QNativePointer
QNativePointer. fromArray(byte[] data)
static QNativePointer
QNativePointer. fromArray(char[] data)
static QNativePointer
QNativePointer. fromArray(double[] data)
static QNativePointer
QNativePointer. fromArray(float[] data)
static QNativePointer
QNativePointer. fromArray(int[] data)
static QNativePointer
QNativePointer. fromArray(long[] data)
static QNativePointer
QNativePointer. fromArray(short[] data)
static QNativePointer
QNativePointer. fromArray(Boolean[] data)
static QNativePointer
QNativePointer. fromArray(Byte[] data)
static QNativePointer
QNativePointer. fromArray(Character[] data)
static QNativePointer
QNativePointer. fromArray(Double[] data)
static QNativePointer
QNativePointer. fromArray(Float[] data)
static QNativePointer
QNativePointer. fromArray(Integer[] data)
static QNativePointer
QNativePointer. fromArray(Long[] data)
static QNativePointer
QNativePointer. fromArray(Short[] data)
static QNativePointer
QNativePointer. fromArray(String[] data)
static <T extends QtObjectInterface>
QNativePointerQNativePointer. fromArray(T... array)
static QNativePointer
QNativePointer. fromBuffer(Buffer buffer)
static QNativePointer
QNativePointer. fromNative(long ptr, QNativePointer.Type type, long size, int indirections, boolean readOnly)
This function creates a QNativePointer from an existing c++ pointer.static <T extends QtObjectInterface>
QNativePointerQNativePointer. fromObject(T object)
QNativePointer
QNativePointer. pointerAt(long pos)
Returns the value of the native pointer at the specified position.QNativePointer
QNativePointer. pointerValue()
If the native pointer is of pointer type, this function returns its value.Methods in io.qt with parameters of type QNativePointer Modifier and Type Method Description void
QNativePointer. setPointerAt(long pos, QNativePointer value)
Sets the value of the array element atpos
to which this native pointer points.void
QNativePointer. setPointerValue(QNativePointer value)
Sets the value of this pointer tovalue
.