mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
#ifndef GEN_QFOCUSFRAME_H
|
|
#define GEN_QFOCUSFRAME_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QFocusFrame;
|
|
class QMetaObject;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QFocusFrame QFocusFrame;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QFocusFrame* QFocusFrame_new();
|
|
QFocusFrame* QFocusFrame_new2(QWidget* parent);
|
|
QMetaObject* QFocusFrame_MetaObject(const QFocusFrame* self);
|
|
void QFocusFrame_Tr(const char* s, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_TrUtf8(const char* s, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_SetWidget(QFocusFrame* self, QWidget* widget);
|
|
QWidget* QFocusFrame_Widget(const QFocusFrame* self);
|
|
void QFocusFrame_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QFocusFrame_Delete(QFocusFrame* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|