2024-10-20 05:21:03 +00:00
|
|
|
#include <QScrollerProperties>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <qscrollerproperties.h>
|
|
|
|
#include "gen_qscrollerproperties.h"
|
2024-12-11 06:55:47 +00:00
|
|
|
|
|
|
|
#ifndef _Bool
|
|
|
|
#define _Bool bool
|
|
|
|
#endif
|
2024-10-20 05:21:03 +00:00
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QScrollerProperties* QScrollerProperties_new() {
|
|
|
|
return new QScrollerProperties();
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QScrollerProperties* QScrollerProperties_new2(QScrollerProperties* sp) {
|
|
|
|
return new QScrollerProperties(*sp);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QScrollerProperties_OperatorAssign(QScrollerProperties* self, QScrollerProperties* sp) {
|
|
|
|
self->operator=(*sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QScrollerProperties_OperatorEqual(const QScrollerProperties* self, QScrollerProperties* sp) {
|
2024-11-22 06:06:01 +00:00
|
|
|
return (*self == *sp);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QScrollerProperties_OperatorNotEqual(const QScrollerProperties* self, QScrollerProperties* sp) {
|
2024-11-22 06:06:01 +00:00
|
|
|
return (*self != *sp);
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QScrollerProperties_SetDefaultScrollerProperties(QScrollerProperties* sp) {
|
|
|
|
QScrollerProperties::setDefaultScrollerProperties(*sp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QScrollerProperties_UnsetDefaultScrollerProperties() {
|
|
|
|
QScrollerProperties::unsetDefaultScrollerProperties();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant* QScrollerProperties_ScrollMetric(const QScrollerProperties* self, int metric) {
|
|
|
|
return new QVariant(self->scrollMetric(static_cast<QScrollerProperties::ScrollMetric>(metric)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QScrollerProperties_SetScrollMetric(QScrollerProperties* self, int metric, QVariant* value) {
|
|
|
|
self->setScrollMetric(static_cast<QScrollerProperties::ScrollMetric>(metric), *value);
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QScrollerProperties_Delete(QScrollerProperties* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QScrollerProperties*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|