mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
#include <QAction>
|
|
#include <QObject>
|
|
#include <QPoint>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QWhatsThis>
|
|
#include <QWidget>
|
|
#include <qwhatsthis.h>
|
|
#include "gen_qwhatsthis.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
void QWhatsThis_EnterWhatsThisMode() {
|
|
QWhatsThis::enterWhatsThisMode();
|
|
}
|
|
|
|
bool QWhatsThis_InWhatsThisMode() {
|
|
return QWhatsThis::inWhatsThisMode();
|
|
}
|
|
|
|
void QWhatsThis_LeaveWhatsThisMode() {
|
|
QWhatsThis::leaveWhatsThisMode();
|
|
}
|
|
|
|
void QWhatsThis_ShowText(QPoint* pos, struct miqt_string text) {
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
QWhatsThis::showText(*pos, text_QString);
|
|
}
|
|
|
|
void QWhatsThis_HideText() {
|
|
QWhatsThis::hideText();
|
|
}
|
|
|
|
QAction* QWhatsThis_CreateAction() {
|
|
return QWhatsThis::createAction();
|
|
}
|
|
|
|
void QWhatsThis_ShowText3(QPoint* pos, struct miqt_string text, QWidget* w) {
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
QWhatsThis::showText(*pos, text_QString, w);
|
|
}
|
|
|
|
QAction* QWhatsThis_CreateAction1(QObject* parent) {
|
|
return QWhatsThis::createAction(parent);
|
|
}
|
|
|
|
void QWhatsThis_Delete(QWhatsThis* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QWhatsThis*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|