2024-10-20 05:21:03 +00:00
|
|
|
#include <QFont>
|
|
|
|
#include <QSizeF>
|
|
|
|
#include <QStaticText>
|
|
|
|
#include <QString>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
|
|
|
#include <QTextOption>
|
|
|
|
#include <QTransform>
|
|
|
|
#include <qstatictext.h>
|
|
|
|
#include "gen_qstatictext.h"
|
2024-12-11 06:55:47 +00:00
|
|
|
|
|
|
|
#ifndef _Bool
|
|
|
|
#define _Bool bool
|
|
|
|
#endif
|
2024-10-20 05:21:03 +00:00
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QStaticText* QStaticText_new() {
|
|
|
|
return new QStaticText();
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QStaticText* QStaticText_new2(struct miqt_string text) {
|
2024-10-20 05:21:03 +00:00
|
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
2024-12-07 04:15:57 +00:00
|
|
|
return new QStaticText(text_QString);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QStaticText* QStaticText_new3(QStaticText* other) {
|
|
|
|
return new QStaticText(*other);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_OperatorAssign(QStaticText* self, QStaticText* param1) {
|
|
|
|
self->operator=(*param1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_Swap(QStaticText* self, QStaticText* other) {
|
|
|
|
self->swap(*other);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_SetText(QStaticText* self, struct miqt_string text) {
|
|
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
|
|
self->setText(text_QString);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QStaticText_Text(const QStaticText* self) {
|
|
|
|
QString _ret = self->text();
|
|
|
|
// 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 QStaticText_SetTextFormat(QStaticText* self, int textFormat) {
|
|
|
|
self->setTextFormat(static_cast<Qt::TextFormat>(textFormat));
|
|
|
|
}
|
|
|
|
|
|
|
|
int QStaticText_TextFormat(const QStaticText* self) {
|
|
|
|
Qt::TextFormat _ret = self->textFormat();
|
|
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_SetTextWidth(QStaticText* self, double textWidth) {
|
|
|
|
self->setTextWidth(static_cast<qreal>(textWidth));
|
|
|
|
}
|
|
|
|
|
|
|
|
double QStaticText_TextWidth(const QStaticText* self) {
|
|
|
|
qreal _ret = self->textWidth();
|
|
|
|
return static_cast<double>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_SetTextOption(QStaticText* self, QTextOption* textOption) {
|
|
|
|
self->setTextOption(*textOption);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextOption* QStaticText_TextOption(const QStaticText* self) {
|
|
|
|
return new QTextOption(self->textOption());
|
|
|
|
}
|
|
|
|
|
|
|
|
QSizeF* QStaticText_Size(const QStaticText* self) {
|
|
|
|
return new QSizeF(self->size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_Prepare(QStaticText* self) {
|
|
|
|
self->prepare();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_SetPerformanceHint(QStaticText* self, int performanceHint) {
|
|
|
|
self->setPerformanceHint(static_cast<QStaticText::PerformanceHint>(performanceHint));
|
|
|
|
}
|
|
|
|
|
|
|
|
int QStaticText_PerformanceHint(const QStaticText* self) {
|
|
|
|
QStaticText::PerformanceHint _ret = self->performanceHint();
|
|
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QStaticText_OperatorEqual(const QStaticText* self, QStaticText* param1) {
|
2024-11-22 06:06:01 +00:00
|
|
|
return (*self == *param1);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QStaticText_OperatorNotEqual(const QStaticText* self, QStaticText* param1) {
|
2024-11-22 06:06:01 +00:00
|
|
|
return (*self != *param1);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_Prepare1(QStaticText* self, QTransform* matrix) {
|
|
|
|
self->prepare(*matrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QStaticText_Prepare2(QStaticText* self, QTransform* matrix, QFont* font) {
|
|
|
|
self->prepare(*matrix, *font);
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QStaticText_Delete(QStaticText* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QStaticText*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|