2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QSCROLLERPROPERTIES_H
|
|
|
|
#define MIQT_QT_GEN_QSCROLLERPROPERTIES_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 QScrollerProperties;
|
2024-08-29 07:01:51 +00:00
|
|
|
class QVariant;
|
2024-08-25 04:08:24 +00:00
|
|
|
#else
|
|
|
|
typedef struct QScrollerProperties QScrollerProperties;
|
2024-08-29 07:01:51 +00:00
|
|
|
typedef struct QVariant QVariant;
|
2024-08-25 04:08:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
QScrollerProperties* QScrollerProperties_new();
|
|
|
|
QScrollerProperties* QScrollerProperties_new2(QScrollerProperties* sp);
|
|
|
|
void QScrollerProperties_OperatorAssign(QScrollerProperties* self, QScrollerProperties* sp);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QScrollerProperties_OperatorEqual(const QScrollerProperties* self, QScrollerProperties* sp);
|
|
|
|
bool QScrollerProperties_OperatorNotEqual(const QScrollerProperties* self, QScrollerProperties* sp);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QScrollerProperties_SetDefaultScrollerProperties(QScrollerProperties* sp);
|
|
|
|
void QScrollerProperties_UnsetDefaultScrollerProperties();
|
2024-09-18 00:12:02 +00:00
|
|
|
QVariant* QScrollerProperties_ScrollMetric(const QScrollerProperties* self, int metric);
|
|
|
|
void QScrollerProperties_SetScrollMetric(QScrollerProperties* self, int metric, QVariant* value);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QScrollerProperties_Delete(QScrollerProperties* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|