mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
#ifndef GEN_QWIDGETACTION_H
|
|
#define GEN_QWIDGETACTION_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QWidget;
|
|
class QWidgetAction;
|
|
#else
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QWidget QWidget;
|
|
typedef struct QWidgetAction QWidgetAction;
|
|
#endif
|
|
|
|
QWidgetAction* QWidgetAction_new(QObject* parent);
|
|
QMetaObject* QWidgetAction_MetaObject(const QWidgetAction* self);
|
|
void QWidgetAction_Tr(const char* s, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_TrUtf8(const char* s, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_SetDefaultWidget(QWidgetAction* self, QWidget* w);
|
|
QWidget* QWidgetAction_DefaultWidget(const QWidgetAction* self);
|
|
QWidget* QWidgetAction_RequestWidget(QWidgetAction* self, QWidget* parent);
|
|
void QWidgetAction_ReleaseWidget(QWidgetAction* self, QWidget* widget);
|
|
void QWidgetAction_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QWidgetAction_Delete(QWidgetAction* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|