mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
#ifndef GEN_QHISTORYSTATE_H
|
|
#define GEN_QHISTORYSTATE_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QAbstractState;
|
|
class QAbstractTransition;
|
|
class QHistoryState;
|
|
class QMetaObject;
|
|
class QState;
|
|
#else
|
|
typedef struct QAbstractState QAbstractState;
|
|
typedef struct QAbstractTransition QAbstractTransition;
|
|
typedef struct QHistoryState QHistoryState;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QState QState;
|
|
#endif
|
|
|
|
QHistoryState* QHistoryState_new();
|
|
QHistoryState* QHistoryState_new2(int typeVal);
|
|
QHistoryState* QHistoryState_new3(QState* parent);
|
|
QHistoryState* QHistoryState_new4(int typeVal, QState* parent);
|
|
QMetaObject* QHistoryState_MetaObject(const QHistoryState* self);
|
|
void* QHistoryState_Metacast(QHistoryState* self, const char* param1);
|
|
struct miqt_string* QHistoryState_Tr(const char* s);
|
|
struct miqt_string* QHistoryState_TrUtf8(const char* s);
|
|
QAbstractTransition* QHistoryState_DefaultTransition(const QHistoryState* self);
|
|
void QHistoryState_SetDefaultTransition(QHistoryState* self, QAbstractTransition* transition);
|
|
QAbstractState* QHistoryState_DefaultState(const QHistoryState* self);
|
|
void QHistoryState_SetDefaultState(QHistoryState* self, QAbstractState* state);
|
|
int QHistoryState_HistoryType(const QHistoryState* self);
|
|
void QHistoryState_SetHistoryType(QHistoryState* self, int typeVal);
|
|
struct miqt_string* QHistoryState_Tr2(const char* s, const char* c);
|
|
struct miqt_string* QHistoryState_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string* QHistoryState_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string* QHistoryState_TrUtf83(const char* s, const char* c, int n);
|
|
void QHistoryState_Delete(QHistoryState* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|