2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIMACRO_H
|
|
|
|
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIMACRO_H
|
2024-11-06 18:30:07 +13:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#include "../../libmiqt/libmiqt.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2024-11-19 19:29:06 +13:00
|
|
|
class QChildEvent;
|
|
|
|
class QEvent;
|
|
|
|
class QMetaMethod;
|
2024-11-06 18:30:07 +13:00
|
|
|
class QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QObject;
|
|
|
|
class QTimerEvent;
|
2024-11-06 18:30:07 +13:00
|
|
|
class QsciMacro;
|
|
|
|
class QsciScintilla;
|
|
|
|
#else
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QChildEvent QChildEvent;
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
2024-11-06 18:30:07 +13:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QTimerEvent QTimerEvent;
|
2024-11-06 18:30:07 +13:00
|
|
|
typedef struct QsciMacro QsciMacro;
|
|
|
|
typedef struct QsciScintilla QsciScintilla;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QsciMacro* QsciMacro_new(QsciScintilla* parent);
|
|
|
|
QsciMacro* QsciMacro_new2(struct miqt_string asc, QsciScintilla* parent);
|
|
|
|
void QsciMacro_virtbase(QsciMacro* src, QObject** outptr_QObject);
|
2025-02-01 13:45:16 +13:00
|
|
|
QMetaObject* QsciMacro_metaObject(const QsciMacro* self);
|
|
|
|
void* QsciMacro_metacast(QsciMacro* self, const char* param1);
|
|
|
|
struct miqt_string QsciMacro_tr(const char* s);
|
|
|
|
void QsciMacro_clear(QsciMacro* self);
|
|
|
|
bool QsciMacro_load(QsciMacro* self, struct miqt_string asc);
|
|
|
|
struct miqt_string QsciMacro_save(const QsciMacro* self);
|
|
|
|
void QsciMacro_play(QsciMacro* self);
|
|
|
|
void QsciMacro_startRecording(QsciMacro* self);
|
|
|
|
void QsciMacro_endRecording(QsciMacro* self);
|
|
|
|
struct miqt_string QsciMacro_tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QsciMacro_tr3(const char* s, const char* c, int n);
|
|
|
|
bool QsciMacro_override_virtual_play(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_play(void* self);
|
|
|
|
bool QsciMacro_override_virtual_startRecording(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_startRecording(void* self);
|
|
|
|
bool QsciMacro_override_virtual_endRecording(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_endRecording(void* self);
|
|
|
|
bool QsciMacro_override_virtual_event(void* self, intptr_t slot);
|
|
|
|
bool QsciMacro_virtualbase_event(void* self, QEvent* event);
|
|
|
|
bool QsciMacro_override_virtual_eventFilter(void* self, intptr_t slot);
|
|
|
|
bool QsciMacro_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event);
|
|
|
|
bool QsciMacro_override_virtual_timerEvent(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_timerEvent(void* self, QTimerEvent* event);
|
|
|
|
bool QsciMacro_override_virtual_childEvent(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_childEvent(void* self, QChildEvent* event);
|
|
|
|
bool QsciMacro_override_virtual_customEvent(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_customEvent(void* self, QEvent* event);
|
|
|
|
bool QsciMacro_override_virtual_connectNotify(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_connectNotify(void* self, QMetaMethod* signal);
|
|
|
|
bool QsciMacro_override_virtual_disconnectNotify(void* self, intptr_t slot);
|
|
|
|
void QsciMacro_virtualbase_disconnectNotify(void* self, QMetaMethod* signal);
|
|
|
|
void QsciMacro_delete(QsciMacro* self);
|
2024-11-06 18:30:07 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-11-06 18:30:07 +13:00
|
|
|
|
|
|
|
#endif
|