mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package qt
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -fPIC
|
|
#cgo pkg-config: Qt5Widgets
|
|
#include "gen_qscrollerproperties.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
type QScrollerProperties struct {
|
|
h *C.QScrollerProperties
|
|
}
|
|
|
|
func (this *QScrollerProperties) cPointer() *C.QScrollerProperties {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func newQScrollerProperties(h *C.QScrollerProperties) *QScrollerProperties {
|
|
return &QScrollerProperties{h: h}
|
|
}
|
|
|
|
func newQScrollerProperties_U(h unsafe.Pointer) *QScrollerProperties {
|
|
return newQScrollerProperties((*C.QScrollerProperties)(h))
|
|
}
|
|
|
|
// NewQScrollerProperties constructs a new QScrollerProperties object.
|
|
func NewQScrollerProperties() *QScrollerProperties {
|
|
ret := C.QScrollerProperties_new()
|
|
return newQScrollerProperties(ret)
|
|
}
|
|
|
|
// NewQScrollerProperties2 constructs a new QScrollerProperties object.
|
|
func NewQScrollerProperties2(sp *QScrollerProperties) *QScrollerProperties {
|
|
ret := C.QScrollerProperties_new2(sp.cPointer())
|
|
return newQScrollerProperties(ret)
|
|
}
|
|
|
|
func (this *QScrollerProperties) OperatorAssign(sp *QScrollerProperties) {
|
|
C.QScrollerProperties_OperatorAssign(this.h, sp.cPointer())
|
|
}
|
|
|
|
func (this *QScrollerProperties) OperatorEqual(sp *QScrollerProperties) bool {
|
|
ret := C.QScrollerProperties_OperatorEqual(this.h, sp.cPointer())
|
|
return (bool)(ret)
|
|
}
|
|
|
|
func (this *QScrollerProperties) OperatorNotEqual(sp *QScrollerProperties) bool {
|
|
ret := C.QScrollerProperties_OperatorNotEqual(this.h, sp.cPointer())
|
|
return (bool)(ret)
|
|
}
|
|
|
|
func QScrollerProperties_SetDefaultScrollerProperties(sp *QScrollerProperties) {
|
|
C.QScrollerProperties_SetDefaultScrollerProperties(sp.cPointer())
|
|
}
|
|
|
|
func QScrollerProperties_UnsetDefaultScrollerProperties() {
|
|
C.QScrollerProperties_UnsetDefaultScrollerProperties()
|
|
}
|
|
|
|
func (this *QScrollerProperties) Delete() {
|
|
C.QScrollerProperties_Delete(this.h)
|
|
}
|