mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
68 lines
2.8 KiB
C++
68 lines
2.8 KiB
C++
#ifndef GEN_QPROGRESSBAR_H
|
|
#define GEN_QPROGRESSBAR_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QMetaObject;
|
|
class QProgressBar;
|
|
class QSize;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QProgressBar QProgressBar;
|
|
typedef struct QSize QSize;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QProgressBar* QProgressBar_new();
|
|
QProgressBar* QProgressBar_new2(QWidget* parent);
|
|
QMetaObject* QProgressBar_MetaObject(const QProgressBar* self);
|
|
void QProgressBar_Tr(const char* s, char** _out, int* _out_Strlen);
|
|
void QProgressBar_TrUtf8(const char* s, char** _out, int* _out_Strlen);
|
|
int QProgressBar_Minimum(const QProgressBar* self);
|
|
int QProgressBar_Maximum(const QProgressBar* self);
|
|
int QProgressBar_Value(const QProgressBar* self);
|
|
void QProgressBar_Text(const QProgressBar* self, char** _out, int* _out_Strlen);
|
|
void QProgressBar_SetTextVisible(QProgressBar* self, bool visible);
|
|
bool QProgressBar_IsTextVisible(const QProgressBar* self);
|
|
int QProgressBar_Alignment(const QProgressBar* self);
|
|
void QProgressBar_SetAlignment(QProgressBar* self, int alignment);
|
|
QSize* QProgressBar_SizeHint(const QProgressBar* self);
|
|
QSize* QProgressBar_MinimumSizeHint(const QProgressBar* self);
|
|
uintptr_t QProgressBar_Orientation(const QProgressBar* self);
|
|
void QProgressBar_SetInvertedAppearance(QProgressBar* self, bool invert);
|
|
bool QProgressBar_InvertedAppearance(const QProgressBar* self);
|
|
void QProgressBar_SetTextDirection(QProgressBar* self, uintptr_t textDirection);
|
|
uintptr_t QProgressBar_TextDirection(const QProgressBar* self);
|
|
void QProgressBar_SetFormat(QProgressBar* self, const char* format, size_t format_Strlen);
|
|
void QProgressBar_ResetFormat(QProgressBar* self);
|
|
void QProgressBar_Format(const QProgressBar* self, char** _out, int* _out_Strlen);
|
|
void QProgressBar_Reset(QProgressBar* self);
|
|
void QProgressBar_SetRange(QProgressBar* self, int minimum, int maximum);
|
|
void QProgressBar_SetMinimum(QProgressBar* self, int minimum);
|
|
void QProgressBar_SetMaximum(QProgressBar* self, int maximum);
|
|
void QProgressBar_SetValue(QProgressBar* self, int value);
|
|
void QProgressBar_SetOrientation(QProgressBar* self, uintptr_t orientation);
|
|
void QProgressBar_ValueChanged(QProgressBar* self, int value);
|
|
void QProgressBar_connect_ValueChanged(QProgressBar* self, void* slot);
|
|
void QProgressBar_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QProgressBar_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QProgressBar_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QProgressBar_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QProgressBar_Delete(QProgressBar* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|