mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
326 lines
9.5 KiB
C++
326 lines
9.5 KiB
C++
#include <QByteArray>
|
|
#include <QIODevice>
|
|
#include <QMetaObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include "qiodevice.h"
|
|
#include "gen_qiodevice.h"
|
|
#include "_cgo_export.h"
|
|
|
|
QMetaObject* QIODevice_MetaObject(const QIODevice* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QIODevice_Metacast(QIODevice* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string* QIODevice_Tr(const char* s) {
|
|
QString _ret = QIODevice::tr(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QIODevice_TrUtf8(const char* s) {
|
|
QString _ret = QIODevice::trUtf8(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
int QIODevice_OpenMode(const QIODevice* self) {
|
|
QIODevice::OpenMode _ret = self->openMode();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QIODevice_SetTextModeEnabled(QIODevice* self, bool enabled) {
|
|
self->setTextModeEnabled(enabled);
|
|
}
|
|
|
|
bool QIODevice_IsTextModeEnabled(const QIODevice* self) {
|
|
return self->isTextModeEnabled();
|
|
}
|
|
|
|
bool QIODevice_IsOpen(const QIODevice* self) {
|
|
return self->isOpen();
|
|
}
|
|
|
|
bool QIODevice_IsReadable(const QIODevice* self) {
|
|
return self->isReadable();
|
|
}
|
|
|
|
bool QIODevice_IsWritable(const QIODevice* self) {
|
|
return self->isWritable();
|
|
}
|
|
|
|
bool QIODevice_IsSequential(const QIODevice* self) {
|
|
return self->isSequential();
|
|
}
|
|
|
|
int QIODevice_ReadChannelCount(const QIODevice* self) {
|
|
return self->readChannelCount();
|
|
}
|
|
|
|
int QIODevice_WriteChannelCount(const QIODevice* self) {
|
|
return self->writeChannelCount();
|
|
}
|
|
|
|
int QIODevice_CurrentReadChannel(const QIODevice* self) {
|
|
return self->currentReadChannel();
|
|
}
|
|
|
|
void QIODevice_SetCurrentReadChannel(QIODevice* self, int channel) {
|
|
self->setCurrentReadChannel(static_cast<int>(channel));
|
|
}
|
|
|
|
int QIODevice_CurrentWriteChannel(const QIODevice* self) {
|
|
return self->currentWriteChannel();
|
|
}
|
|
|
|
void QIODevice_SetCurrentWriteChannel(QIODevice* self, int channel) {
|
|
self->setCurrentWriteChannel(static_cast<int>(channel));
|
|
}
|
|
|
|
bool QIODevice_Open(QIODevice* self, int mode) {
|
|
return self->open(static_cast<QIODevice::OpenMode>(mode));
|
|
}
|
|
|
|
void QIODevice_Close(QIODevice* self) {
|
|
self->close();
|
|
}
|
|
|
|
long long QIODevice_Pos(const QIODevice* self) {
|
|
qint64 _ret = self->pos();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_Size(const QIODevice* self) {
|
|
qint64 _ret = self->size();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
bool QIODevice_Seek(QIODevice* self, long long pos) {
|
|
return self->seek(static_cast<qint64>(pos));
|
|
}
|
|
|
|
bool QIODevice_AtEnd(const QIODevice* self) {
|
|
return self->atEnd();
|
|
}
|
|
|
|
bool QIODevice_Reset(QIODevice* self) {
|
|
return self->reset();
|
|
}
|
|
|
|
long long QIODevice_BytesAvailable(const QIODevice* self) {
|
|
qint64 _ret = self->bytesAvailable();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_BytesToWrite(const QIODevice* self) {
|
|
qint64 _ret = self->bytesToWrite();
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_Read(QIODevice* self, char* data, long long maxlen) {
|
|
qint64 _ret = self->read(data, static_cast<qint64>(maxlen));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
QByteArray* QIODevice_ReadWithMaxlen(QIODevice* self, long long maxlen) {
|
|
return new QByteArray(self->read(static_cast<qint64>(maxlen)));
|
|
}
|
|
|
|
QByteArray* QIODevice_ReadAll(QIODevice* self) {
|
|
return new QByteArray(self->readAll());
|
|
}
|
|
|
|
long long QIODevice_ReadLine(QIODevice* self, char* data, long long maxlen) {
|
|
qint64 _ret = self->readLine(data, static_cast<qint64>(maxlen));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
QByteArray* QIODevice_ReadLine2(QIODevice* self) {
|
|
return new QByteArray(self->readLine());
|
|
}
|
|
|
|
bool QIODevice_CanReadLine(const QIODevice* self) {
|
|
return self->canReadLine();
|
|
}
|
|
|
|
void QIODevice_StartTransaction(QIODevice* self) {
|
|
self->startTransaction();
|
|
}
|
|
|
|
void QIODevice_CommitTransaction(QIODevice* self) {
|
|
self->commitTransaction();
|
|
}
|
|
|
|
void QIODevice_RollbackTransaction(QIODevice* self) {
|
|
self->rollbackTransaction();
|
|
}
|
|
|
|
bool QIODevice_IsTransactionStarted(const QIODevice* self) {
|
|
return self->isTransactionStarted();
|
|
}
|
|
|
|
long long QIODevice_Write(QIODevice* self, const char* data, long long lenVal) {
|
|
qint64 _ret = self->write(data, static_cast<qint64>(lenVal));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_WriteWithData(QIODevice* self, const char* data) {
|
|
qint64 _ret = self->write(data);
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_Write2(QIODevice* self, QByteArray* data) {
|
|
qint64 _ret = self->write(*data);
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
long long QIODevice_Peek(QIODevice* self, char* data, long long maxlen) {
|
|
qint64 _ret = self->peek(data, static_cast<qint64>(maxlen));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
QByteArray* QIODevice_PeekWithMaxlen(QIODevice* self, long long maxlen) {
|
|
return new QByteArray(self->peek(static_cast<qint64>(maxlen)));
|
|
}
|
|
|
|
long long QIODevice_Skip(QIODevice* self, long long maxSize) {
|
|
qint64 _ret = self->skip(static_cast<qint64>(maxSize));
|
|
return static_cast<long long>(_ret);
|
|
}
|
|
|
|
bool QIODevice_WaitForReadyRead(QIODevice* self, int msecs) {
|
|
return self->waitForReadyRead(static_cast<int>(msecs));
|
|
}
|
|
|
|
bool QIODevice_WaitForBytesWritten(QIODevice* self, int msecs) {
|
|
return self->waitForBytesWritten(static_cast<int>(msecs));
|
|
}
|
|
|
|
void QIODevice_UngetChar(QIODevice* self, char c) {
|
|
self->ungetChar(static_cast<char>(c));
|
|
}
|
|
|
|
bool QIODevice_PutChar(QIODevice* self, char c) {
|
|
return self->putChar(static_cast<char>(c));
|
|
}
|
|
|
|
bool QIODevice_GetChar(QIODevice* self, char* c) {
|
|
return self->getChar(c);
|
|
}
|
|
|
|
struct miqt_string* QIODevice_ErrorString(const QIODevice* self) {
|
|
QString _ret = self->errorString();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
void QIODevice_ReadyRead(QIODevice* self) {
|
|
self->readyRead();
|
|
}
|
|
|
|
void QIODevice_connect_ReadyRead(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)()>(&QIODevice::readyRead), self, [=]() {
|
|
miqt_exec_callback_QIODevice_ReadyRead(slot);
|
|
});
|
|
}
|
|
|
|
void QIODevice_ChannelReadyRead(QIODevice* self, int channel) {
|
|
self->channelReadyRead(static_cast<int>(channel));
|
|
}
|
|
|
|
void QIODevice_connect_ChannelReadyRead(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)(int)>(&QIODevice::channelReadyRead), self, [=](int channel) {
|
|
int sigval1 = channel;
|
|
miqt_exec_callback_QIODevice_ChannelReadyRead(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QIODevice_BytesWritten(QIODevice* self, long long bytes) {
|
|
self->bytesWritten(static_cast<qint64>(bytes));
|
|
}
|
|
|
|
void QIODevice_connect_BytesWritten(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)(qint64)>(&QIODevice::bytesWritten), self, [=](qint64 bytes) {
|
|
qint64 bytes_ret = bytes;
|
|
long long sigval1 = static_cast<long long>(bytes_ret);
|
|
miqt_exec_callback_QIODevice_BytesWritten(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QIODevice_ChannelBytesWritten(QIODevice* self, int channel, long long bytes) {
|
|
self->channelBytesWritten(static_cast<int>(channel), static_cast<qint64>(bytes));
|
|
}
|
|
|
|
void QIODevice_connect_ChannelBytesWritten(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)(int, qint64)>(&QIODevice::channelBytesWritten), self, [=](int channel, qint64 bytes) {
|
|
int sigval1 = channel;
|
|
qint64 bytes_ret = bytes;
|
|
long long sigval2 = static_cast<long long>(bytes_ret);
|
|
miqt_exec_callback_QIODevice_ChannelBytesWritten(slot, sigval1, sigval2);
|
|
});
|
|
}
|
|
|
|
void QIODevice_AboutToClose(QIODevice* self) {
|
|
self->aboutToClose();
|
|
}
|
|
|
|
void QIODevice_connect_AboutToClose(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)()>(&QIODevice::aboutToClose), self, [=]() {
|
|
miqt_exec_callback_QIODevice_AboutToClose(slot);
|
|
});
|
|
}
|
|
|
|
void QIODevice_ReadChannelFinished(QIODevice* self) {
|
|
self->readChannelFinished();
|
|
}
|
|
|
|
void QIODevice_connect_ReadChannelFinished(QIODevice* self, void* slot) {
|
|
QIODevice::connect(self, static_cast<void (QIODevice::*)()>(&QIODevice::readChannelFinished), self, [=]() {
|
|
miqt_exec_callback_QIODevice_ReadChannelFinished(slot);
|
|
});
|
|
}
|
|
|
|
struct miqt_string* QIODevice_Tr2(const char* s, const char* c) {
|
|
QString _ret = QIODevice::tr(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QIODevice_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QIODevice::tr(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QIODevice_TrUtf82(const char* s, const char* c) {
|
|
QString _ret = QIODevice::trUtf8(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QIODevice_TrUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QIODevice::trUtf8(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
QByteArray* QIODevice_ReadLine1(QIODevice* self, long long maxlen) {
|
|
return new QByteArray(self->readLine(static_cast<qint64>(maxlen)));
|
|
}
|
|
|
|
void QIODevice_Delete(QIODevice* self) {
|
|
delete self;
|
|
}
|
|
|