2024-08-25 16:08:24 +12:00
|
|
|
#ifndef GEN_QSHORTCUT_H
|
|
|
|
#define GEN_QSHORTCUT_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 18:07:56 +13:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-15 10:29:05 +12:00
|
|
|
|
2024-08-25 16:08:24 +12:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QKeySequence;
|
|
|
|
class QMetaObject;
|
|
|
|
class QShortcut;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QKeySequence QKeySequence;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QShortcut QShortcut;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QShortcut* QShortcut_new(QWidget* parent);
|
2024-08-29 19:01:51 +12:00
|
|
|
QShortcut* QShortcut_new2(QKeySequence* key, QWidget* parent);
|
|
|
|
QShortcut* QShortcut_new3(QKeySequence* key, QWidget* parent, const char* member);
|
|
|
|
QShortcut* QShortcut_new4(QKeySequence* key, QWidget* parent, const char* member, const char* ambiguousMember);
|
2024-09-18 12:12:02 +12:00
|
|
|
QShortcut* QShortcut_new5(QKeySequence* key, QWidget* parent, const char* member, const char* ambiguousMember, int shortcutContext);
|
2024-09-11 17:41:09 +12:00
|
|
|
QMetaObject* QShortcut_MetaObject(const QShortcut* self);
|
2024-09-21 10:32:57 +12:00
|
|
|
void* QShortcut_Metacast(QShortcut* self, const char* param1);
|
2024-10-19 12:53:33 +13:00
|
|
|
struct miqt_string QShortcut_Tr(const char* s);
|
|
|
|
struct miqt_string QShortcut_TrUtf8(const char* s);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_SetKey(QShortcut* self, QKeySequence* key);
|
2024-09-11 17:41:09 +12:00
|
|
|
QKeySequence* QShortcut_Key(const QShortcut* self);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_SetEnabled(QShortcut* self, bool enable);
|
2024-09-11 17:41:09 +12:00
|
|
|
bool QShortcut_IsEnabled(const QShortcut* self);
|
2024-09-18 12:12:02 +12:00
|
|
|
void QShortcut_SetContext(QShortcut* self, int context);
|
|
|
|
int QShortcut_Context(const QShortcut* self);
|
2024-10-19 12:53:33 +13:00
|
|
|
void QShortcut_SetWhatsThis(QShortcut* self, struct miqt_string text);
|
|
|
|
struct miqt_string QShortcut_WhatsThis(const QShortcut* self);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_SetAutoRepeat(QShortcut* self, bool on);
|
2024-09-11 17:41:09 +12:00
|
|
|
bool QShortcut_AutoRepeat(const QShortcut* self);
|
|
|
|
int QShortcut_Id(const QShortcut* self);
|
|
|
|
QWidget* QShortcut_ParentWidget(const QShortcut* self);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_Activated(QShortcut* self);
|
2024-10-13 19:06:06 +13:00
|
|
|
void QShortcut_connect_Activated(QShortcut* self, intptr_t slot);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_ActivatedAmbiguously(QShortcut* self);
|
2024-10-13 19:06:06 +13:00
|
|
|
void QShortcut_connect_ActivatedAmbiguously(QShortcut* self, intptr_t slot);
|
2024-10-19 12:53:33 +13:00
|
|
|
struct miqt_string QShortcut_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QShortcut_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QShortcut_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QShortcut_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 16:08:24 +12:00
|
|
|
void QShortcut_Delete(QShortcut* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|