mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
96 lines
4.6 KiB
C++
96 lines
4.6 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QSIGNALMAPPER_H
|
|
#define MIQT_QT_GEN_QSIGNALMAPPER_H
|
|
|
|
#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
|
|
class QChildEvent;
|
|
class QEvent;
|
|
class QMetaMethod;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QSignalMapper;
|
|
class QTimerEvent;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QChildEvent QChildEvent;
|
|
typedef struct QEvent QEvent;
|
|
typedef struct QMetaMethod QMetaMethod;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QSignalMapper QSignalMapper;
|
|
typedef struct QTimerEvent QTimerEvent;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QSignalMapper* QSignalMapper_new();
|
|
QSignalMapper* QSignalMapper_new2(QObject* parent);
|
|
void QSignalMapper_virtbase(QSignalMapper* src, QObject** outptr_QObject);
|
|
QMetaObject* QSignalMapper_metaObject(const QSignalMapper* self);
|
|
void* QSignalMapper_metacast(QSignalMapper* self, const char* param1);
|
|
struct miqt_string QSignalMapper_tr(const char* s);
|
|
struct miqt_string QSignalMapper_trUtf8(const char* s);
|
|
void QSignalMapper_setMapping(QSignalMapper* self, QObject* sender, int id);
|
|
void QSignalMapper_setMapping2(QSignalMapper* self, QObject* sender, struct miqt_string text);
|
|
void QSignalMapper_setMapping3(QSignalMapper* self, QObject* sender, QWidget* widget);
|
|
void QSignalMapper_setMapping4(QSignalMapper* self, QObject* sender, QObject* object);
|
|
void QSignalMapper_removeMappings(QSignalMapper* self, QObject* sender);
|
|
QObject* QSignalMapper_mapping(const QSignalMapper* self, int id);
|
|
QObject* QSignalMapper_mappingWithText(const QSignalMapper* self, struct miqt_string text);
|
|
QObject* QSignalMapper_mappingWithWidget(const QSignalMapper* self, QWidget* widget);
|
|
QObject* QSignalMapper_mappingWithObject(const QSignalMapper* self, QObject* object);
|
|
void QSignalMapper_mapped(QSignalMapper* self, int param1);
|
|
void QSignalMapper_connect_mapped(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedWithQString(QSignalMapper* self, struct miqt_string param1);
|
|
void QSignalMapper_connect_mappedWithQString(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedWithQWidget(QSignalMapper* self, QWidget* param1);
|
|
void QSignalMapper_connect_mappedWithQWidget(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedWithQObject(QSignalMapper* self, QObject* param1);
|
|
void QSignalMapper_connect_mappedWithQObject(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedInt(QSignalMapper* self, int param1);
|
|
void QSignalMapper_connect_mappedInt(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedString(QSignalMapper* self, struct miqt_string param1);
|
|
void QSignalMapper_connect_mappedString(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedWidget(QSignalMapper* self, QWidget* param1);
|
|
void QSignalMapper_connect_mappedWidget(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_mappedObject(QSignalMapper* self, QObject* param1);
|
|
void QSignalMapper_connect_mappedObject(QSignalMapper* self, intptr_t slot);
|
|
void QSignalMapper_map(QSignalMapper* self);
|
|
void QSignalMapper_mapWithSender(QSignalMapper* self, QObject* sender);
|
|
struct miqt_string QSignalMapper_tr2(const char* s, const char* c);
|
|
struct miqt_string QSignalMapper_tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QSignalMapper_trUtf82(const char* s, const char* c);
|
|
struct miqt_string QSignalMapper_trUtf83(const char* s, const char* c, int n);
|
|
bool QSignalMapper_override_virtual_event(void* self, intptr_t slot);
|
|
bool QSignalMapper_virtualbase_event(void* self, QEvent* event);
|
|
bool QSignalMapper_override_virtual_eventFilter(void* self, intptr_t slot);
|
|
bool QSignalMapper_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event);
|
|
bool QSignalMapper_override_virtual_timerEvent(void* self, intptr_t slot);
|
|
void QSignalMapper_virtualbase_timerEvent(void* self, QTimerEvent* event);
|
|
bool QSignalMapper_override_virtual_childEvent(void* self, intptr_t slot);
|
|
void QSignalMapper_virtualbase_childEvent(void* self, QChildEvent* event);
|
|
bool QSignalMapper_override_virtual_customEvent(void* self, intptr_t slot);
|
|
void QSignalMapper_virtualbase_customEvent(void* self, QEvent* event);
|
|
bool QSignalMapper_override_virtual_connectNotify(void* self, intptr_t slot);
|
|
void QSignalMapper_virtualbase_connectNotify(void* self, QMetaMethod* signal);
|
|
bool QSignalMapper_override_virtual_disconnectNotify(void* self, intptr_t slot);
|
|
void QSignalMapper_virtualbase_disconnectNotify(void* self, QMetaMethod* signal);
|
|
void QSignalMapper_delete(QSignalMapper* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|