2024-08-25 04:08:24 +00:00
# ifndef GEN_QINPUTDIALOG_H
# define GEN_QINPUTDIALOG_H
# 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 QInputDialog ;
class QMetaObject ;
class QSize ;
2024-08-29 07:01:51 +00:00
class QWidget ;
2024-08-25 04:08:24 +00:00
# else
typedef struct QInputDialog QInputDialog ;
typedef struct QMetaObject QMetaObject ;
typedef struct QSize QSize ;
2024-08-29 07:01:51 +00:00
typedef struct QWidget QWidget ;
2024-08-25 04:08:24 +00:00
# endif
2024-10-26 00:46:42 +00:00
QInputDialog * QInputDialog_new ( QWidget * parent ) ;
QInputDialog * QInputDialog_new2 ( ) ;
2024-08-29 07:01:51 +00:00
QInputDialog * QInputDialog_new3 ( QWidget * parent , int flags ) ;
2024-09-11 05:41:09 +00:00
QMetaObject * QInputDialog_MetaObject ( const QInputDialog * self ) ;
2024-09-20 22:32:57 +00:00
void * QInputDialog_Metacast ( QInputDialog * self , const char * param1 ) ;
2024-10-18 23:53:33 +00:00
struct miqt_string QInputDialog_Tr ( const char * s ) ;
struct miqt_string QInputDialog_TrUtf8 ( const char * s ) ;
2024-09-18 00:12:02 +00:00
void QInputDialog_SetInputMode ( QInputDialog * self , int mode ) ;
int QInputDialog_InputMode ( const QInputDialog * self ) ;
2024-10-18 23:53:33 +00:00
void QInputDialog_SetLabelText ( QInputDialog * self , struct miqt_string text ) ;
struct miqt_string QInputDialog_LabelText ( const QInputDialog * self ) ;
2024-09-18 00:12:02 +00:00
void QInputDialog_SetOption ( QInputDialog * self , int option ) ;
bool QInputDialog_TestOption ( const QInputDialog * self , int option ) ;
2024-08-29 07:01:51 +00:00
void QInputDialog_SetOptions ( QInputDialog * self , int options ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_Options ( const QInputDialog * self ) ;
2024-10-18 23:53:33 +00:00
void QInputDialog_SetTextValue ( QInputDialog * self , struct miqt_string text ) ;
struct miqt_string QInputDialog_TextValue ( const QInputDialog * self ) ;
2024-09-18 00:12:02 +00:00
void QInputDialog_SetTextEchoMode ( QInputDialog * self , int mode ) ;
int QInputDialog_TextEchoMode ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetComboBoxEditable ( QInputDialog * self , bool editable ) ;
2024-09-11 05:41:09 +00:00
bool QInputDialog_IsComboBoxEditable ( const QInputDialog * self ) ;
2024-10-18 23:53:33 +00:00
void QInputDialog_SetComboBoxItems ( QInputDialog * self , struct miqt_array * /* of struct miqt_string */ items ) ;
2024-09-14 22:29:05 +00:00
struct miqt_array * QInputDialog_ComboBoxItems ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetIntValue ( QInputDialog * self , int value ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_IntValue ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetIntMinimum ( QInputDialog * self , int min ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_IntMinimum ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetIntMaximum ( QInputDialog * self , int max ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_IntMaximum ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetIntRange ( QInputDialog * self , int min , int max ) ;
void QInputDialog_SetIntStep ( QInputDialog * self , int step ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_IntStep ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetDoubleValue ( QInputDialog * self , double value ) ;
2024-09-11 05:41:09 +00:00
double QInputDialog_DoubleValue ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetDoubleMinimum ( QInputDialog * self , double min ) ;
2024-09-11 05:41:09 +00:00
double QInputDialog_DoubleMinimum ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetDoubleMaximum ( QInputDialog * self , double max ) ;
2024-09-11 05:41:09 +00:00
double QInputDialog_DoubleMaximum ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetDoubleRange ( QInputDialog * self , double min , double max ) ;
void QInputDialog_SetDoubleDecimals ( QInputDialog * self , int decimals ) ;
2024-09-11 05:41:09 +00:00
int QInputDialog_DoubleDecimals ( const QInputDialog * self ) ;
2024-10-18 23:53:33 +00:00
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 ) ;
2024-09-11 05:41:09 +00:00
QSize * QInputDialog_MinimumSizeHint ( const QInputDialog * self ) ;
QSize * QInputDialog_SizeHint ( const QInputDialog * self ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetVisible ( QInputDialog * self , bool visible ) ;
2024-10-18 23:53:33 +00:00
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 ) ;
double QInputDialog_GetDouble2 ( QWidget * parent , struct miqt_string title , struct miqt_string label , double value , double minValue , double maxValue , int decimals , bool * ok , int flags , double step ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_SetDoubleStep ( QInputDialog * self , double step ) ;
2024-09-11 05:41:09 +00:00
double QInputDialog_DoubleStep ( const QInputDialog * self ) ;
2024-10-18 23:53:33 +00:00
void QInputDialog_TextValueChanged ( QInputDialog * self , struct miqt_string text ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_TextValueChanged ( QInputDialog * self , intptr_t slot ) ;
2024-10-18 23:53:33 +00:00
void QInputDialog_TextValueSelected ( QInputDialog * self , struct miqt_string text ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_TextValueSelected ( QInputDialog * self , intptr_t slot ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_IntValueChanged ( QInputDialog * self , int value ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_IntValueChanged ( QInputDialog * self , intptr_t slot ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_IntValueSelected ( QInputDialog * self , int value ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_IntValueSelected ( QInputDialog * self , intptr_t slot ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_DoubleValueChanged ( QInputDialog * self , double value ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_DoubleValueChanged ( QInputDialog * self , intptr_t slot ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_DoubleValueSelected ( QInputDialog * self , double value ) ;
2024-10-13 06:06:06 +00:00
void QInputDialog_connect_DoubleValueSelected ( QInputDialog * self , intptr_t slot ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_Done ( QInputDialog * self , int result ) ;
2024-10-18 23:53:33 +00:00
struct miqt_string QInputDialog_Tr2 ( const char * s , const char * c ) ;
struct miqt_string QInputDialog_Tr3 ( const char * s , const char * c , int n ) ;
struct miqt_string QInputDialog_TrUtf82 ( const char * s , const char * c ) ;
struct miqt_string QInputDialog_TrUtf83 ( const char * s , const char * c , int n ) ;
2024-09-18 00:12:02 +00:00
void QInputDialog_SetOption2 ( QInputDialog * self , int option , bool on ) ;
2024-10-18 23:53:33 +00:00
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 ) ;
2024-08-25 04:08:24 +00:00
void QInputDialog_Delete ( QInputDialog * self ) ;
# ifdef __cplusplus
} /* extern C */
# endif
# endif