#include #include #include #include #include #include #include #include #include #include #include "gen_qtooltip.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" void QToolTip_ShowText(QPoint* pos, struct miqt_string text) { QString text_QString = QString::fromUtf8(text.data, text.len); QToolTip::showText(*pos, text_QString); } void QToolTip_HideText() { QToolTip::hideText(); } bool QToolTip_IsVisible() { return QToolTip::isVisible(); } struct miqt_string QToolTip_Text() { QString _ret = QToolTip::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QPalette* QToolTip_Palette() { return new QPalette(QToolTip::palette()); } void QToolTip_SetPalette(QPalette* palette) { QToolTip::setPalette(*palette); } QFont* QToolTip_Font() { return new QFont(QToolTip::font()); } void QToolTip_SetFont(QFont* font) { QToolTip::setFont(*font); } void QToolTip_ShowText3(QPoint* pos, struct miqt_string text, QWidget* w) { QString text_QString = QString::fromUtf8(text.data, text.len); QToolTip::showText(*pos, text_QString, w); } void QToolTip_ShowText4(QPoint* pos, struct miqt_string text, QWidget* w, QRect* rect) { QString text_QString = QString::fromUtf8(text.data, text.len); QToolTip::showText(*pos, text_QString, w, *rect); } void QToolTip_ShowText5(QPoint* pos, struct miqt_string text, QWidget* w, QRect* rect, int msecShowTime) { QString text_QString = QString::fromUtf8(text.data, text.len); QToolTip::showText(*pos, text_QString, w, *rect, static_cast(msecShowTime)); } void QToolTip_Delete(QToolTip* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }