miqt/qt6/gen_qwhatsthis.h

46 lines
1.0 KiB
C
Raw Normal View History

#pragma once
#ifndef MIQT_QT6_GEN_QWHATSTHIS_H
#define MIQT_QT6_GEN_QWHATSTHIS_H
2024-10-20 05:21:03 +00:00
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "../libmiqt/libmiqt.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QAction;
class QObject;
class QPoint;
class QWhatsThis;
class QWidget;
#else
typedef struct QAction QAction;
typedef struct QObject QObject;
typedef struct QPoint QPoint;
typedef struct QWhatsThis QWhatsThis;
typedef struct QWidget QWidget;
#endif
void QWhatsThis_EnterWhatsThisMode();
bool QWhatsThis_InWhatsThisMode();
void QWhatsThis_LeaveWhatsThisMode();
void QWhatsThis_ShowText(QPoint* pos, struct miqt_string text);
void QWhatsThis_HideText();
QAction* QWhatsThis_CreateAction();
void QWhatsThis_ShowText3(QPoint* pos, struct miqt_string text, QWidget* w);
QAction* QWhatsThis_CreateAction1(QObject* parent);
2024-11-19 06:29:06 +00:00
void QWhatsThis_Delete(QWhatsThis* self, bool isSubclass);
2024-10-20 05:21:03 +00:00
#ifdef __cplusplus
} /* extern C */
#endif
#endif