miqt/qt6/gen_qinputdialog.h

298 lines
19 KiB
C++

#pragma once
#ifndef MIQT_QT6_GEN_QINPUTDIALOG_H
#define MIQT_QT6_GEN_QINPUTDIALOG_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 QActionEvent;
class QChildEvent;
class QCloseEvent;
class QContextMenuEvent;
class QDialog;
class QDragEnterEvent;
class QDragLeaveEvent;
class QDragMoveEvent;
class QDropEvent;
class QEnterEvent;
class QEvent;
class QFocusEvent;
class QHideEvent;
class QInputDialog;
class QInputMethodEvent;
class QKeyEvent;
class QMetaMethod;
class QMetaObject;
class QMouseEvent;
class QMoveEvent;
class QObject;
class QPaintDevice;
class QPaintEngine;
class QPaintEvent;
class QPainter;
class QPoint;
class QResizeEvent;
class QShowEvent;
class QSize;
class QTabletEvent;
class QTimerEvent;
class QVariant;
class QWheelEvent;
class QWidget;
#else
typedef struct QActionEvent QActionEvent;
typedef struct QChildEvent QChildEvent;
typedef struct QCloseEvent QCloseEvent;
typedef struct QContextMenuEvent QContextMenuEvent;
typedef struct QDialog QDialog;
typedef struct QDragEnterEvent QDragEnterEvent;
typedef struct QDragLeaveEvent QDragLeaveEvent;
typedef struct QDragMoveEvent QDragMoveEvent;
typedef struct QDropEvent QDropEvent;
typedef struct QEnterEvent QEnterEvent;
typedef struct QEvent QEvent;
typedef struct QFocusEvent QFocusEvent;
typedef struct QHideEvent QHideEvent;
typedef struct QInputDialog QInputDialog;
typedef struct QInputMethodEvent QInputMethodEvent;
typedef struct QKeyEvent QKeyEvent;
typedef struct QMetaMethod QMetaMethod;
typedef struct QMetaObject QMetaObject;
typedef struct QMouseEvent QMouseEvent;
typedef struct QMoveEvent QMoveEvent;
typedef struct QObject QObject;
typedef struct QPaintDevice QPaintDevice;
typedef struct QPaintEngine QPaintEngine;
typedef struct QPaintEvent QPaintEvent;
typedef struct QPainter QPainter;
typedef struct QPoint QPoint;
typedef struct QResizeEvent QResizeEvent;
typedef struct QShowEvent QShowEvent;
typedef struct QSize QSize;
typedef struct QTabletEvent QTabletEvent;
typedef struct QTimerEvent QTimerEvent;
typedef struct QVariant QVariant;
typedef struct QWheelEvent QWheelEvent;
typedef struct QWidget QWidget;
#endif
QInputDialog* QInputDialog_new(QWidget* parent);
QInputDialog* QInputDialog_new2();
QInputDialog* QInputDialog_new3(QWidget* parent, int flags);
void QInputDialog_virtbase(QInputDialog* src, QDialog** outptr_QDialog);
QMetaObject* QInputDialog_MetaObject(const QInputDialog* self);
void* QInputDialog_Metacast(QInputDialog* self, const char* param1);
struct miqt_string QInputDialog_Tr(const char* s);
void QInputDialog_SetInputMode(QInputDialog* self, int mode);
int QInputDialog_InputMode(const QInputDialog* self);
void QInputDialog_SetLabelText(QInputDialog* self, struct miqt_string text);
struct miqt_string QInputDialog_LabelText(const QInputDialog* self);
void QInputDialog_SetOption(QInputDialog* self, int option);
bool QInputDialog_TestOption(const QInputDialog* self, int option);
void QInputDialog_SetOptions(QInputDialog* self, int options);
int QInputDialog_Options(const QInputDialog* self);
void QInputDialog_SetTextValue(QInputDialog* self, struct miqt_string text);
struct miqt_string QInputDialog_TextValue(const QInputDialog* self);
void QInputDialog_SetTextEchoMode(QInputDialog* self, int mode);
int QInputDialog_TextEchoMode(const QInputDialog* self);
void QInputDialog_SetComboBoxEditable(QInputDialog* self, bool editable);
bool QInputDialog_IsComboBoxEditable(const QInputDialog* self);
void QInputDialog_SetComboBoxItems(QInputDialog* self, struct miqt_array /* of struct miqt_string */ items);
struct miqt_array /* of struct miqt_string */ QInputDialog_ComboBoxItems(const QInputDialog* self);
void QInputDialog_SetIntValue(QInputDialog* self, int value);
int QInputDialog_IntValue(const QInputDialog* self);
void QInputDialog_SetIntMinimum(QInputDialog* self, int min);
int QInputDialog_IntMinimum(const QInputDialog* self);
void QInputDialog_SetIntMaximum(QInputDialog* self, int max);
int QInputDialog_IntMaximum(const QInputDialog* self);
void QInputDialog_SetIntRange(QInputDialog* self, int min, int max);
void QInputDialog_SetIntStep(QInputDialog* self, int step);
int QInputDialog_IntStep(const QInputDialog* self);
void QInputDialog_SetDoubleValue(QInputDialog* self, double value);
double QInputDialog_DoubleValue(const QInputDialog* self);
void QInputDialog_SetDoubleMinimum(QInputDialog* self, double min);
double QInputDialog_DoubleMinimum(const QInputDialog* self);
void QInputDialog_SetDoubleMaximum(QInputDialog* self, double max);
double QInputDialog_DoubleMaximum(const QInputDialog* self);
void QInputDialog_SetDoubleRange(QInputDialog* self, double min, double max);
void QInputDialog_SetDoubleDecimals(QInputDialog* self, int decimals);
int QInputDialog_DoubleDecimals(const QInputDialog* self);
void QInputDialog_SetOkButtonText(QInputDialog* self, struct miqt_string text);
struct miqt_string QInputDialog_OkButtonText(const QInputDialog* self);
void QInputDialog_SetCancelButtonText(QInputDialog* self, struct miqt_string text);
struct miqt_string QInputDialog_CancelButtonText(const QInputDialog* self);
QSize* QInputDialog_MinimumSizeHint(const QInputDialog* self);
QSize* QInputDialog_SizeHint(const QInputDialog* self);
void QInputDialog_SetVisible(QInputDialog* self, bool visible);
struct miqt_string QInputDialog_GetText(QWidget* parent, struct miqt_string title, struct miqt_string label);
struct miqt_string QInputDialog_GetMultiLineText(QWidget* parent, struct miqt_string title, struct miqt_string label);
struct miqt_string QInputDialog_GetItem(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items);
int QInputDialog_GetInt(QWidget* parent, struct miqt_string title, struct miqt_string label);
double QInputDialog_GetDouble(QWidget* parent, struct miqt_string title, struct miqt_string label);
void QInputDialog_SetDoubleStep(QInputDialog* self, double step);
double QInputDialog_DoubleStep(const QInputDialog* self);
void QInputDialog_TextValueChanged(QInputDialog* self, struct miqt_string text);
void QInputDialog_connect_TextValueChanged(QInputDialog* self, intptr_t slot);
void QInputDialog_TextValueSelected(QInputDialog* self, struct miqt_string text);
void QInputDialog_connect_TextValueSelected(QInputDialog* self, intptr_t slot);
void QInputDialog_IntValueChanged(QInputDialog* self, int value);
void QInputDialog_connect_IntValueChanged(QInputDialog* self, intptr_t slot);
void QInputDialog_IntValueSelected(QInputDialog* self, int value);
void QInputDialog_connect_IntValueSelected(QInputDialog* self, intptr_t slot);
void QInputDialog_DoubleValueChanged(QInputDialog* self, double value);
void QInputDialog_connect_DoubleValueChanged(QInputDialog* self, intptr_t slot);
void QInputDialog_DoubleValueSelected(QInputDialog* self, double value);
void QInputDialog_connect_DoubleValueSelected(QInputDialog* self, intptr_t slot);
void QInputDialog_Done(QInputDialog* self, int result);
struct miqt_string QInputDialog_Tr2(const char* s, const char* c);
struct miqt_string QInputDialog_Tr3(const char* s, const char* c, int n);
void QInputDialog_SetOption2(QInputDialog* self, int option, bool on);
struct miqt_string QInputDialog_GetText4(QWidget* parent, struct miqt_string title, struct miqt_string label, int echo);
struct miqt_string QInputDialog_GetText5(QWidget* parent, struct miqt_string title, struct miqt_string label, int echo, struct miqt_string text);
struct miqt_string QInputDialog_GetText6(QWidget* parent, struct miqt_string title, struct miqt_string label, int echo, struct miqt_string text, bool* ok);
struct miqt_string QInputDialog_GetText7(QWidget* parent, struct miqt_string title, struct miqt_string label, int echo, struct miqt_string text, bool* ok, int flags);
struct miqt_string QInputDialog_GetText8(QWidget* parent, struct miqt_string title, struct miqt_string label, int echo, struct miqt_string text, bool* ok, int flags, int inputMethodHints);
struct miqt_string QInputDialog_GetMultiLineText4(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_string text);
struct miqt_string QInputDialog_GetMultiLineText5(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_string text, bool* ok);
struct miqt_string QInputDialog_GetMultiLineText6(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_string text, bool* ok, int flags);
struct miqt_string QInputDialog_GetMultiLineText7(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_string text, bool* ok, int flags, int inputMethodHints);
struct miqt_string QInputDialog_GetItem5(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items, int current);
struct miqt_string QInputDialog_GetItem6(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items, int current, bool editable);
struct miqt_string QInputDialog_GetItem7(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items, int current, bool editable, bool* ok);
struct miqt_string QInputDialog_GetItem8(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items, int current, bool editable, bool* ok, int flags);
struct miqt_string QInputDialog_GetItem9(QWidget* parent, struct miqt_string title, struct miqt_string label, struct miqt_array /* of struct miqt_string */ items, int current, bool editable, bool* ok, int flags, int inputMethodHints);
int QInputDialog_GetInt4(QWidget* parent, struct miqt_string title, struct miqt_string label, int value);
int QInputDialog_GetInt5(QWidget* parent, struct miqt_string title, struct miqt_string label, int value, int minValue);
int QInputDialog_GetInt6(QWidget* parent, struct miqt_string title, struct miqt_string label, int value, int minValue, int maxValue);
int QInputDialog_GetInt7(QWidget* parent, struct miqt_string title, struct miqt_string label, int value, int minValue, int maxValue, int step);
int QInputDialog_GetInt8(QWidget* parent, struct miqt_string title, struct miqt_string label, int value, int minValue, int maxValue, int step, bool* ok);
int QInputDialog_GetInt9(QWidget* parent, struct miqt_string title, struct miqt_string label, int value, int minValue, int maxValue, int step, bool* ok, int flags);
double QInputDialog_GetDouble4(QWidget* parent, struct miqt_string title, struct miqt_string label, double value);
double QInputDialog_GetDouble5(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue);
double QInputDialog_GetDouble6(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue, double maxValue);
double QInputDialog_GetDouble7(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue, double maxValue, int decimals);
double QInputDialog_GetDouble8(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue, double maxValue, int decimals, bool* ok);
double QInputDialog_GetDouble9(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue, double maxValue, int decimals, bool* ok, int flags);
double QInputDialog_GetDouble10(QWidget* parent, struct miqt_string title, struct miqt_string label, double value, double minValue, double maxValue, int decimals, bool* ok, int flags, double step);
bool QInputDialog_override_virtual_MinimumSizeHint(void* self, intptr_t slot);
QSize* QInputDialog_virtualbase_MinimumSizeHint(const void* self);
bool QInputDialog_override_virtual_SizeHint(void* self, intptr_t slot);
QSize* QInputDialog_virtualbase_SizeHint(const void* self);
bool QInputDialog_override_virtual_SetVisible(void* self, intptr_t slot);
void QInputDialog_virtualbase_SetVisible(void* self, bool visible);
bool QInputDialog_override_virtual_Done(void* self, intptr_t slot);
void QInputDialog_virtualbase_Done(void* self, int result);
bool QInputDialog_override_virtual_Open(void* self, intptr_t slot);
void QInputDialog_virtualbase_Open(void* self);
bool QInputDialog_override_virtual_Exec(void* self, intptr_t slot);
int QInputDialog_virtualbase_Exec(void* self);
bool QInputDialog_override_virtual_Accept(void* self, intptr_t slot);
void QInputDialog_virtualbase_Accept(void* self);
bool QInputDialog_override_virtual_Reject(void* self, intptr_t slot);
void QInputDialog_virtualbase_Reject(void* self);
bool QInputDialog_override_virtual_KeyPressEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_KeyPressEvent(void* self, QKeyEvent* param1);
bool QInputDialog_override_virtual_CloseEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_CloseEvent(void* self, QCloseEvent* param1);
bool QInputDialog_override_virtual_ShowEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ShowEvent(void* self, QShowEvent* param1);
bool QInputDialog_override_virtual_ResizeEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ResizeEvent(void* self, QResizeEvent* param1);
bool QInputDialog_override_virtual_ContextMenuEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ContextMenuEvent(void* self, QContextMenuEvent* param1);
bool QInputDialog_override_virtual_EventFilter(void* self, intptr_t slot);
bool QInputDialog_virtualbase_EventFilter(void* self, QObject* param1, QEvent* param2);
bool QInputDialog_override_virtual_DevType(void* self, intptr_t slot);
int QInputDialog_virtualbase_DevType(const void* self);
bool QInputDialog_override_virtual_HeightForWidth(void* self, intptr_t slot);
int QInputDialog_virtualbase_HeightForWidth(const void* self, int param1);
bool QInputDialog_override_virtual_HasHeightForWidth(void* self, intptr_t slot);
bool QInputDialog_virtualbase_HasHeightForWidth(const void* self);
bool QInputDialog_override_virtual_PaintEngine(void* self, intptr_t slot);
QPaintEngine* QInputDialog_virtualbase_PaintEngine(const void* self);
bool QInputDialog_override_virtual_Event(void* self, intptr_t slot);
bool QInputDialog_virtualbase_Event(void* self, QEvent* event);
bool QInputDialog_override_virtual_MousePressEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_MousePressEvent(void* self, QMouseEvent* event);
bool QInputDialog_override_virtual_MouseReleaseEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_MouseReleaseEvent(void* self, QMouseEvent* event);
bool QInputDialog_override_virtual_MouseDoubleClickEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_MouseDoubleClickEvent(void* self, QMouseEvent* event);
bool QInputDialog_override_virtual_MouseMoveEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_MouseMoveEvent(void* self, QMouseEvent* event);
bool QInputDialog_override_virtual_WheelEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_WheelEvent(void* self, QWheelEvent* event);
bool QInputDialog_override_virtual_KeyReleaseEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_KeyReleaseEvent(void* self, QKeyEvent* event);
bool QInputDialog_override_virtual_FocusInEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_FocusInEvent(void* self, QFocusEvent* event);
bool QInputDialog_override_virtual_FocusOutEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_FocusOutEvent(void* self, QFocusEvent* event);
bool QInputDialog_override_virtual_EnterEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_EnterEvent(void* self, QEnterEvent* event);
bool QInputDialog_override_virtual_LeaveEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_LeaveEvent(void* self, QEvent* event);
bool QInputDialog_override_virtual_PaintEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_PaintEvent(void* self, QPaintEvent* event);
bool QInputDialog_override_virtual_MoveEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_MoveEvent(void* self, QMoveEvent* event);
bool QInputDialog_override_virtual_TabletEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_TabletEvent(void* self, QTabletEvent* event);
bool QInputDialog_override_virtual_ActionEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ActionEvent(void* self, QActionEvent* event);
bool QInputDialog_override_virtual_DragEnterEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_DragEnterEvent(void* self, QDragEnterEvent* event);
bool QInputDialog_override_virtual_DragMoveEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_DragMoveEvent(void* self, QDragMoveEvent* event);
bool QInputDialog_override_virtual_DragLeaveEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_DragLeaveEvent(void* self, QDragLeaveEvent* event);
bool QInputDialog_override_virtual_DropEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_DropEvent(void* self, QDropEvent* event);
bool QInputDialog_override_virtual_HideEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_HideEvent(void* self, QHideEvent* event);
bool QInputDialog_override_virtual_NativeEvent(void* self, intptr_t slot);
bool QInputDialog_virtualbase_NativeEvent(void* self, struct miqt_string eventType, void* message, intptr_t* result);
bool QInputDialog_override_virtual_ChangeEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ChangeEvent(void* self, QEvent* param1);
bool QInputDialog_override_virtual_Metric(void* self, intptr_t slot);
int QInputDialog_virtualbase_Metric(const void* self, int param1);
bool QInputDialog_override_virtual_InitPainter(void* self, intptr_t slot);
void QInputDialog_virtualbase_InitPainter(const void* self, QPainter* painter);
bool QInputDialog_override_virtual_Redirected(void* self, intptr_t slot);
QPaintDevice* QInputDialog_virtualbase_Redirected(const void* self, QPoint* offset);
bool QInputDialog_override_virtual_SharedPainter(void* self, intptr_t slot);
QPainter* QInputDialog_virtualbase_SharedPainter(const void* self);
bool QInputDialog_override_virtual_InputMethodEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_InputMethodEvent(void* self, QInputMethodEvent* param1);
bool QInputDialog_override_virtual_InputMethodQuery(void* self, intptr_t slot);
QVariant* QInputDialog_virtualbase_InputMethodQuery(const void* self, int param1);
bool QInputDialog_override_virtual_FocusNextPrevChild(void* self, intptr_t slot);
bool QInputDialog_virtualbase_FocusNextPrevChild(void* self, bool next);
bool QInputDialog_override_virtual_TimerEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_TimerEvent(void* self, QTimerEvent* event);
bool QInputDialog_override_virtual_ChildEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_ChildEvent(void* self, QChildEvent* event);
bool QInputDialog_override_virtual_CustomEvent(void* self, intptr_t slot);
void QInputDialog_virtualbase_CustomEvent(void* self, QEvent* event);
bool QInputDialog_override_virtual_ConnectNotify(void* self, intptr_t slot);
void QInputDialog_virtualbase_ConnectNotify(void* self, QMetaMethod* signal);
bool QInputDialog_override_virtual_DisconnectNotify(void* self, intptr_t slot);
void QInputDialog_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal);
void QInputDialog_Delete(QInputDialog* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif