2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QFONTCOMBOBOX_H
|
|
|
|
#define GEN_QFONTCOMBOBOX_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QFont;
|
|
|
|
class QFontComboBox;
|
|
|
|
class QMetaObject;
|
|
|
|
class QSize;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QFont QFont;
|
|
|
|
typedef struct QFontComboBox QFontComboBox;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QFontComboBox* QFontComboBox_new(QWidget* parent);
|
|
|
|
QFontComboBox* QFontComboBox_new2();
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QFontComboBox_MetaObject(const QFontComboBox* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QFontComboBox_Metacast(QFontComboBox* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QFontComboBox_Tr(const char* s);
|
|
|
|
struct miqt_string QFontComboBox_TrUtf8(const char* s);
|
2024-09-18 00:12:02 +00:00
|
|
|
void QFontComboBox_SetWritingSystem(QFontComboBox* self, int writingSystem);
|
|
|
|
int QFontComboBox_WritingSystem(const QFontComboBox* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QFontComboBox_SetFontFilters(QFontComboBox* self, int filters);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QFontComboBox_FontFilters(const QFontComboBox* self);
|
|
|
|
QFont* QFontComboBox_CurrentFont(const QFontComboBox* self);
|
|
|
|
QSize* QFontComboBox_SizeHint(const QFontComboBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QFontComboBox_SetCurrentFont(QFontComboBox* self, QFont* f);
|
|
|
|
void QFontComboBox_CurrentFontChanged(QFontComboBox* self, QFont* f);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QFontComboBox_connect_CurrentFontChanged(QFontComboBox* self, intptr_t slot);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QFontComboBox_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QFontComboBox_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QFontComboBox_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QFontComboBox_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QFontComboBox_Delete(QFontComboBox* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|