2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QCOMMANDLINKBUTTON_H
|
|
|
|
#define GEN_QCOMMANDLINKBUTTON_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 QCommandLinkButton;
|
|
|
|
class QMetaObject;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QCommandLinkButton QCommandLinkButton;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QCommandLinkButton* QCommandLinkButton_new();
|
2024-10-18 23:53:33 +00:00
|
|
|
QCommandLinkButton* QCommandLinkButton_new2(struct miqt_string text);
|
|
|
|
QCommandLinkButton* QCommandLinkButton_new3(struct miqt_string text, struct miqt_string description);
|
2024-08-25 04:08:24 +00:00
|
|
|
QCommandLinkButton* QCommandLinkButton_new4(QWidget* parent);
|
2024-10-18 23:53:33 +00:00
|
|
|
QCommandLinkButton* QCommandLinkButton_new5(struct miqt_string text, QWidget* parent);
|
|
|
|
QCommandLinkButton* QCommandLinkButton_new6(struct miqt_string text, struct miqt_string description, QWidget* parent);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QCommandLinkButton_MetaObject(const QCommandLinkButton* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QCommandLinkButton_Metacast(QCommandLinkButton* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QCommandLinkButton_Tr(const char* s);
|
|
|
|
struct miqt_string QCommandLinkButton_TrUtf8(const char* s);
|
|
|
|
struct miqt_string QCommandLinkButton_Description(const QCommandLinkButton* self);
|
|
|
|
void QCommandLinkButton_SetDescription(QCommandLinkButton* self, struct miqt_string description);
|
|
|
|
struct miqt_string QCommandLinkButton_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QCommandLinkButton_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QCommandLinkButton_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QCommandLinkButton_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QCommandLinkButton_Delete(QCommandLinkButton* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|