mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
119 lines
5.2 KiB
C++
119 lines
5.2 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QABSTRACTBUTTON_H
|
|
#define MIQT_QT_GEN_QABSTRACTBUTTON_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 QAbstractButton;
|
|
class QButtonGroup;
|
|
class QEvent;
|
|
class QFocusEvent;
|
|
class QIcon;
|
|
class QKeyEvent;
|
|
class QKeySequence;
|
|
class QMetaObject;
|
|
class QMouseEvent;
|
|
class QObject;
|
|
class QPaintDevice;
|
|
class QPaintEvent;
|
|
class QPoint;
|
|
class QSize;
|
|
class QTimerEvent;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QAbstractButton QAbstractButton;
|
|
typedef struct QButtonGroup QButtonGroup;
|
|
typedef struct QEvent QEvent;
|
|
typedef struct QFocusEvent QFocusEvent;
|
|
typedef struct QIcon QIcon;
|
|
typedef struct QKeyEvent QKeyEvent;
|
|
typedef struct QKeySequence QKeySequence;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QMouseEvent QMouseEvent;
|
|
typedef struct QObject QObject;
|
|
typedef struct QPaintDevice QPaintDevice;
|
|
typedef struct QPaintEvent QPaintEvent;
|
|
typedef struct QPoint QPoint;
|
|
typedef struct QSize QSize;
|
|
typedef struct QTimerEvent QTimerEvent;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QMetaObject* QAbstractButton_MetaObject(const QAbstractButton* self);
|
|
void* QAbstractButton_Metacast(QAbstractButton* self, const char* param1);
|
|
struct miqt_string QAbstractButton_Tr(const char* s);
|
|
struct miqt_string QAbstractButton_TrUtf8(const char* s);
|
|
void QAbstractButton_SetText(QAbstractButton* self, struct miqt_string text);
|
|
struct miqt_string QAbstractButton_Text(const QAbstractButton* self);
|
|
void QAbstractButton_SetIcon(QAbstractButton* self, QIcon* icon);
|
|
QIcon* QAbstractButton_Icon(const QAbstractButton* self);
|
|
QSize* QAbstractButton_IconSize(const QAbstractButton* self);
|
|
void QAbstractButton_SetShortcut(QAbstractButton* self, QKeySequence* key);
|
|
QKeySequence* QAbstractButton_Shortcut(const QAbstractButton* self);
|
|
void QAbstractButton_SetCheckable(QAbstractButton* self, bool checkable);
|
|
bool QAbstractButton_IsCheckable(const QAbstractButton* self);
|
|
bool QAbstractButton_IsChecked(const QAbstractButton* self);
|
|
void QAbstractButton_SetDown(QAbstractButton* self, bool down);
|
|
bool QAbstractButton_IsDown(const QAbstractButton* self);
|
|
void QAbstractButton_SetAutoRepeat(QAbstractButton* self, bool autoRepeat);
|
|
bool QAbstractButton_AutoRepeat(const QAbstractButton* self);
|
|
void QAbstractButton_SetAutoRepeatDelay(QAbstractButton* self, int autoRepeatDelay);
|
|
int QAbstractButton_AutoRepeatDelay(const QAbstractButton* self);
|
|
void QAbstractButton_SetAutoRepeatInterval(QAbstractButton* self, int autoRepeatInterval);
|
|
int QAbstractButton_AutoRepeatInterval(const QAbstractButton* self);
|
|
void QAbstractButton_SetAutoExclusive(QAbstractButton* self, bool autoExclusive);
|
|
bool QAbstractButton_AutoExclusive(const QAbstractButton* self);
|
|
QButtonGroup* QAbstractButton_Group(const QAbstractButton* self);
|
|
void QAbstractButton_SetIconSize(QAbstractButton* self, QSize* size);
|
|
void QAbstractButton_AnimateClick(QAbstractButton* self);
|
|
void QAbstractButton_Click(QAbstractButton* self);
|
|
void QAbstractButton_Toggle(QAbstractButton* self);
|
|
void QAbstractButton_SetChecked(QAbstractButton* self, bool checked);
|
|
void QAbstractButton_Pressed(QAbstractButton* self);
|
|
void QAbstractButton_connect_Pressed(QAbstractButton* self, intptr_t slot);
|
|
void QAbstractButton_Released(QAbstractButton* self);
|
|
void QAbstractButton_connect_Released(QAbstractButton* self, intptr_t slot);
|
|
void QAbstractButton_Clicked(QAbstractButton* self);
|
|
void QAbstractButton_connect_Clicked(QAbstractButton* self, intptr_t slot);
|
|
void QAbstractButton_Toggled(QAbstractButton* self, bool checked);
|
|
void QAbstractButton_connect_Toggled(QAbstractButton* self, intptr_t slot);
|
|
void QAbstractButton_PaintEvent(QAbstractButton* self, QPaintEvent* e);
|
|
bool QAbstractButton_HitButton(const QAbstractButton* self, QPoint* pos);
|
|
void QAbstractButton_CheckStateSet(QAbstractButton* self);
|
|
void QAbstractButton_NextCheckState(QAbstractButton* self);
|
|
bool QAbstractButton_Event(QAbstractButton* self, QEvent* e);
|
|
void QAbstractButton_KeyPressEvent(QAbstractButton* self, QKeyEvent* e);
|
|
void QAbstractButton_KeyReleaseEvent(QAbstractButton* self, QKeyEvent* e);
|
|
void QAbstractButton_MousePressEvent(QAbstractButton* self, QMouseEvent* e);
|
|
void QAbstractButton_MouseReleaseEvent(QAbstractButton* self, QMouseEvent* e);
|
|
void QAbstractButton_MouseMoveEvent(QAbstractButton* self, QMouseEvent* e);
|
|
void QAbstractButton_FocusInEvent(QAbstractButton* self, QFocusEvent* e);
|
|
void QAbstractButton_FocusOutEvent(QAbstractButton* self, QFocusEvent* e);
|
|
void QAbstractButton_ChangeEvent(QAbstractButton* self, QEvent* e);
|
|
void QAbstractButton_TimerEvent(QAbstractButton* self, QTimerEvent* e);
|
|
struct miqt_string QAbstractButton_Tr2(const char* s, const char* c);
|
|
struct miqt_string QAbstractButton_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QAbstractButton_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QAbstractButton_TrUtf83(const char* s, const char* c, int n);
|
|
void QAbstractButton_AnimateClick1(QAbstractButton* self, int msec);
|
|
void QAbstractButton_Clicked1(QAbstractButton* self, bool checked);
|
|
void QAbstractButton_connect_Clicked1(QAbstractButton* self, intptr_t slot);
|
|
void QAbstractButton_Delete(QAbstractButton* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|