2024-10-20 05:21:03 +00:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontComboBox>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QString>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <qfontcombobox.h>
|
|
|
|
#include "gen_qfontcombobox.h"
|
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QFontComboBox* QFontComboBox_new(QWidget* parent) {
|
|
|
|
return new QFontComboBox(parent);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QFontComboBox* QFontComboBox_new2() {
|
|
|
|
return new QFontComboBox();
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QMetaObject* QFontComboBox_MetaObject(const QFontComboBox* self) {
|
|
|
|
return (QMetaObject*) self->metaObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
void* QFontComboBox_Metacast(QFontComboBox* self, const char* param1) {
|
|
|
|
return self->qt_metacast(param1);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QFontComboBox_Tr(const char* s) {
|
|
|
|
QString _ret = QFontComboBox::tr(s);
|
|
|
|
// 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 QFontComboBox_SetWritingSystem(QFontComboBox* self, int writingSystem) {
|
|
|
|
self->setWritingSystem(static_cast<QFontDatabase::WritingSystem>(writingSystem));
|
|
|
|
}
|
|
|
|
|
|
|
|
int QFontComboBox_WritingSystem(const QFontComboBox* self) {
|
|
|
|
QFontDatabase::WritingSystem _ret = self->writingSystem();
|
|
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QFontComboBox_SetFontFilters(QFontComboBox* self, int filters) {
|
|
|
|
self->setFontFilters(static_cast<QFontComboBox::FontFilters>(filters));
|
|
|
|
}
|
|
|
|
|
|
|
|
int QFontComboBox_FontFilters(const QFontComboBox* self) {
|
|
|
|
QFontComboBox::FontFilters _ret = self->fontFilters();
|
|
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
QFont* QFontComboBox_CurrentFont(const QFontComboBox* self) {
|
|
|
|
return new QFont(self->currentFont());
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize* QFontComboBox_SizeHint(const QFontComboBox* self) {
|
|
|
|
return new QSize(self->sizeHint());
|
|
|
|
}
|
|
|
|
|
|
|
|
void QFontComboBox_SetSampleTextForSystem(QFontComboBox* self, int writingSystem, struct miqt_string sampleText) {
|
|
|
|
QString sampleText_QString = QString::fromUtf8(sampleText.data, sampleText.len);
|
|
|
|
self->setSampleTextForSystem(static_cast<QFontDatabase::WritingSystem>(writingSystem), sampleText_QString);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QFontComboBox_SampleTextForSystem(const QFontComboBox* self, int writingSystem) {
|
|
|
|
QString _ret = self->sampleTextForSystem(static_cast<QFontDatabase::WritingSystem>(writingSystem));
|
|
|
|
// 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 QFontComboBox_SetSampleTextForFont(QFontComboBox* self, struct miqt_string fontFamily, struct miqt_string sampleText) {
|
|
|
|
QString fontFamily_QString = QString::fromUtf8(fontFamily.data, fontFamily.len);
|
|
|
|
QString sampleText_QString = QString::fromUtf8(sampleText.data, sampleText.len);
|
|
|
|
self->setSampleTextForFont(fontFamily_QString, sampleText_QString);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QFontComboBox_SampleTextForFont(const QFontComboBox* self, struct miqt_string fontFamily) {
|
|
|
|
QString fontFamily_QString = QString::fromUtf8(fontFamily.data, fontFamily.len);
|
|
|
|
QString _ret = self->sampleTextForFont(fontFamily_QString);
|
|
|
|
// 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 QFontComboBox_SetDisplayFont(QFontComboBox* self, struct miqt_string fontFamily, QFont* font) {
|
|
|
|
QString fontFamily_QString = QString::fromUtf8(fontFamily.data, fontFamily.len);
|
|
|
|
self->setDisplayFont(fontFamily_QString, *font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QFontComboBox_SetCurrentFont(QFontComboBox* self, QFont* f) {
|
|
|
|
self->setCurrentFont(*f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QFontComboBox_CurrentFontChanged(QFontComboBox* self, QFont* f) {
|
|
|
|
self->currentFontChanged(*f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QFontComboBox_connect_CurrentFontChanged(QFontComboBox* self, intptr_t slot) {
|
|
|
|
QFontComboBox::connect(self, static_cast<void (QFontComboBox::*)(const QFont&)>(&QFontComboBox::currentFontChanged), self, [=](const QFont& f) {
|
|
|
|
const QFont& f_ret = f;
|
|
|
|
// Cast returned reference into pointer
|
|
|
|
QFont* sigval1 = const_cast<QFont*>(&f_ret);
|
|
|
|
miqt_exec_callback_QFontComboBox_CurrentFontChanged(slot, sigval1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QFontComboBox_Tr2(const char* s, const char* c) {
|
|
|
|
QString _ret = QFontComboBox::tr(s, c);
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct miqt_string QFontComboBox_Tr3(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QFontComboBox::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();
|
|
|
|
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 QFontComboBox_Delete(QFontComboBox* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|