mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
250 lines
7.1 KiB
C++
250 lines
7.1 KiB
C++
#include <QFutureInterfaceBase>
|
|
#include <QMutex>
|
|
#include <QRunnable>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QThreadPool>
|
|
#include <qfutureinterface.h>
|
|
#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<QFutureInterfaceBase::State>(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<int>(beginIndex), static_cast<int>(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<int>(minimum), static_cast<int>(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<int>(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<int>(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<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QFutureInterfaceBase_SetExpectedResultCount(QFutureInterfaceBase* self, int resultCount) {
|
|
self->setExpectedResultCount(static_cast<int>(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<QFutureInterfaceBase::State>(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<int>(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<int>(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<QFutureInterfaceBase*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|