2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QABSTRACTSPINBOX_H
|
|
|
|
#define MIQT_QT_GEN_QABSTRACTSPINBOX_H
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#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 QAbstractSpinBox;
|
|
|
|
class QEvent;
|
|
|
|
class QMetaObject;
|
|
|
|
class QSize;
|
2024-08-29 07:01:51 +00:00
|
|
|
class QVariant;
|
2024-08-25 04:08:24 +00:00
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QAbstractSpinBox QAbstractSpinBox;
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QSize QSize;
|
2024-08-29 07:01:51 +00:00
|
|
|
typedef struct QVariant QVariant;
|
2024-08-25 04:08:24 +00:00
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QAbstractSpinBox* QAbstractSpinBox_new(QWidget* parent);
|
|
|
|
QAbstractSpinBox* QAbstractSpinBox_new2();
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QAbstractSpinBox_MetaObject(const QAbstractSpinBox* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QAbstractSpinBox_Metacast(QAbstractSpinBox* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QAbstractSpinBox_Tr(const char* s);
|
|
|
|
struct miqt_string QAbstractSpinBox_TrUtf8(const char* s);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QAbstractSpinBox_ButtonSymbols(const QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_SetButtonSymbols(QAbstractSpinBox* self, int bs);
|
|
|
|
void QAbstractSpinBox_SetCorrectionMode(QAbstractSpinBox* self, int cm);
|
|
|
|
int QAbstractSpinBox_CorrectionMode(const QAbstractSpinBox* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_HasAcceptableInput(const QAbstractSpinBox* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QAbstractSpinBox_Text(const QAbstractSpinBox* self);
|
|
|
|
struct miqt_string QAbstractSpinBox_SpecialValueText(const QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_SetSpecialValueText(QAbstractSpinBox* self, struct miqt_string txt);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_Wrapping(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_SetWrapping(QAbstractSpinBox* self, bool w);
|
|
|
|
void QAbstractSpinBox_SetReadOnly(QAbstractSpinBox* self, bool r);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_IsReadOnly(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_SetKeyboardTracking(QAbstractSpinBox* self, bool kt);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_KeyboardTracking(const QAbstractSpinBox* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QAbstractSpinBox_SetAlignment(QAbstractSpinBox* self, int flag);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QAbstractSpinBox_Alignment(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_SetFrame(QAbstractSpinBox* self, bool frame);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_HasFrame(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_SetAccelerated(QAbstractSpinBox* self, bool on);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_IsAccelerated(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_SetGroupSeparatorShown(QAbstractSpinBox* self, bool shown);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QAbstractSpinBox_IsGroupSeparatorShown(const QAbstractSpinBox* self);
|
|
|
|
QSize* QAbstractSpinBox_SizeHint(const QAbstractSpinBox* self);
|
|
|
|
QSize* QAbstractSpinBox_MinimumSizeHint(const QAbstractSpinBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_InterpretText(QAbstractSpinBox* self);
|
|
|
|
bool QAbstractSpinBox_Event(QAbstractSpinBox* self, QEvent* event);
|
2024-09-18 00:12:02 +00:00
|
|
|
QVariant* QAbstractSpinBox_InputMethodQuery(const QAbstractSpinBox* self, int param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
int QAbstractSpinBox_Validate(const QAbstractSpinBox* self, struct miqt_string input, int* pos);
|
|
|
|
void QAbstractSpinBox_Fixup(const QAbstractSpinBox* self, struct miqt_string input);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_StepBy(QAbstractSpinBox* self, int steps);
|
|
|
|
void QAbstractSpinBox_StepUp(QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_StepDown(QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_SelectAll(QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_Clear(QAbstractSpinBox* self);
|
|
|
|
void QAbstractSpinBox_EditingFinished(QAbstractSpinBox* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QAbstractSpinBox_connect_EditingFinished(QAbstractSpinBox* self, intptr_t slot);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QAbstractSpinBox_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QAbstractSpinBox_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QAbstractSpinBox_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QAbstractSpinBox_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractSpinBox_Delete(QAbstractSpinBox* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|