#include #include #include #include #include #include #include #include #include "gen_qfutureinterface.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" QFutureInterfaceBase* QFutureInterfaceBase_new() { return new QFutureInterfaceBase(); } QFutureInterfaceBase* QFutureInterfaceBase_new2(QFutureInterfaceBase* other) { return new QFutureInterfaceBase(*other); } QFutureInterfaceBase* QFutureInterfaceBase_new3(int initialState) { return new QFutureInterfaceBase(static_cast(initialState)); } void QFutureInterfaceBase_OperatorAssign(QFutureInterfaceBase* self, QFutureInterfaceBase* other) { self->operator=(*other); } void QFutureInterfaceBase_ReportStarted(QFutureInterfaceBase* self) { self->reportStarted(); } void QFutureInterfaceBase_ReportFinished(QFutureInterfaceBase* self) { self->reportFinished(); } void QFutureInterfaceBase_ReportCanceled(QFutureInterfaceBase* self) { self->reportCanceled(); } void QFutureInterfaceBase_ReportResultsReady(QFutureInterfaceBase* self, int beginIndex, int endIndex) { self->reportResultsReady(static_cast(beginIndex), static_cast(endIndex)); } void QFutureInterfaceBase_SetRunnable(QFutureInterfaceBase* self, QRunnable* runnable) { self->setRunnable(runnable); } void QFutureInterfaceBase_SetThreadPool(QFutureInterfaceBase* self, QThreadPool* pool) { self->setThreadPool(pool); } QThreadPool* QFutureInterfaceBase_ThreadPool(const QFutureInterfaceBase* self) { return self->threadPool(); } void QFutureInterfaceBase_SetFilterMode(QFutureInterfaceBase* self, bool enable) { self->setFilterMode(enable); } void QFutureInterfaceBase_SetProgressRange(QFutureInterfaceBase* self, int minimum, int maximum) { self->setProgressRange(static_cast(minimum), static_cast(maximum)); } int QFutureInterfaceBase_ProgressMinimum(const QFutureInterfaceBase* self) { return self->progressMinimum(); } int QFutureInterfaceBase_ProgressMaximum(const QFutureInterfaceBase* self) { return self->progressMaximum(); } bool QFutureInterfaceBase_IsProgressUpdateNeeded(const QFutureInterfaceBase* self) { return self->isProgressUpdateNeeded(); } void QFutureInterfaceBase_SetProgressValue(QFutureInterfaceBase* self, int progressValue) { self->setProgressValue(static_cast(progressValue)); } int QFutureInterfaceBase_ProgressValue(const QFutureInterfaceBase* self) { return self->progressValue(); } void QFutureInterfaceBase_SetProgressValueAndText(QFutureInterfaceBase* self, int progressValue, struct miqt_string progressText) { QString progressText_QString = QString::fromUtf8(progressText.data, progressText.len); self->setProgressValueAndText(static_cast(progressValue), progressText_QString); } struct miqt_string QFutureInterfaceBase_ProgressText(const QFutureInterfaceBase* self) { QString _ret = self->progressText(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } void QFutureInterfaceBase_SetExpectedResultCount(QFutureInterfaceBase* self, int resultCount) { self->setExpectedResultCount(static_cast(resultCount)); } int QFutureInterfaceBase_ExpectedResultCount(QFutureInterfaceBase* self) { return self->expectedResultCount(); } int QFutureInterfaceBase_ResultCount(const QFutureInterfaceBase* self) { return self->resultCount(); } bool QFutureInterfaceBase_QueryState(const QFutureInterfaceBase* self, int state) { return self->queryState(static_cast(state)); } bool QFutureInterfaceBase_IsRunning(const QFutureInterfaceBase* self) { return self->isRunning(); } bool QFutureInterfaceBase_IsStarted(const QFutureInterfaceBase* self) { return self->isStarted(); } bool QFutureInterfaceBase_IsCanceled(const QFutureInterfaceBase* self) { return self->isCanceled(); } bool QFutureInterfaceBase_IsFinished(const QFutureInterfaceBase* self) { return self->isFinished(); } bool QFutureInterfaceBase_IsPaused(const QFutureInterfaceBase* self) { return self->isPaused(); } void QFutureInterfaceBase_SetPaused(QFutureInterfaceBase* self, bool paused) { self->setPaused(paused); } void QFutureInterfaceBase_TogglePaused(QFutureInterfaceBase* self) { self->togglePaused(); } bool QFutureInterfaceBase_IsSuspending(const QFutureInterfaceBase* self) { return self->isSuspending(); } bool QFutureInterfaceBase_IsSuspended(const QFutureInterfaceBase* self) { return self->isSuspended(); } bool QFutureInterfaceBase_IsThrottled(const QFutureInterfaceBase* self) { return self->isThrottled(); } bool QFutureInterfaceBase_IsResultReadyAt(const QFutureInterfaceBase* self, int index) { return self->isResultReadyAt(static_cast(index)); } bool QFutureInterfaceBase_IsValid(const QFutureInterfaceBase* self) { return self->isValid(); } int QFutureInterfaceBase_LoadState(const QFutureInterfaceBase* self) { return self->loadState(); } void QFutureInterfaceBase_Cancel(QFutureInterfaceBase* self) { self->cancel(); } void QFutureInterfaceBase_CancelAndFinish(QFutureInterfaceBase* self) { self->cancelAndFinish(); } void QFutureInterfaceBase_SetSuspended(QFutureInterfaceBase* self, bool suspend) { self->setSuspended(suspend); } void QFutureInterfaceBase_ToggleSuspended(QFutureInterfaceBase* self) { self->toggleSuspended(); } void QFutureInterfaceBase_ReportSuspended(const QFutureInterfaceBase* self) { self->reportSuspended(); } void QFutureInterfaceBase_SetThrottled(QFutureInterfaceBase* self, bool enable) { self->setThrottled(enable); } void QFutureInterfaceBase_WaitForFinished(QFutureInterfaceBase* self) { self->waitForFinished(); } bool QFutureInterfaceBase_WaitForNextResult(QFutureInterfaceBase* self) { return self->waitForNextResult(); } void QFutureInterfaceBase_WaitForResult(QFutureInterfaceBase* self, int resultIndex) { self->waitForResult(static_cast(resultIndex)); } void QFutureInterfaceBase_WaitForResume(QFutureInterfaceBase* self) { self->waitForResume(); } void QFutureInterfaceBase_SuspendIfRequested(QFutureInterfaceBase* self) { self->suspendIfRequested(); } QMutex* QFutureInterfaceBase_Mutex(const QFutureInterfaceBase* self) { QMutex& _ret = self->mutex(); // Cast returned reference into pointer return &_ret; } bool QFutureInterfaceBase_HasException(const QFutureInterfaceBase* self) { return self->hasException(); } bool QFutureInterfaceBase_OperatorEqual(const QFutureInterfaceBase* self, QFutureInterfaceBase* other) { return (*self == *other); } bool QFutureInterfaceBase_OperatorNotEqual(const QFutureInterfaceBase* self, QFutureInterfaceBase* other) { return (*self != *other); } void QFutureInterfaceBase_Swap(QFutureInterfaceBase* self, QFutureInterfaceBase* other) { self->swap(*other); } bool QFutureInterfaceBase_IsChainCanceled(const QFutureInterfaceBase* self) { return self->isChainCanceled(); } void QFutureInterfaceBase_Delete(QFutureInterfaceBase* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }