miqt/qt6/gen_qspinbox.go

513 lines
14 KiB
Go
Raw Normal View History

2024-10-20 05:21:03 +00:00
package qt6
/*
#include "gen_qspinbox.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QSpinBox struct {
h *C.QSpinBox
*QAbstractSpinBox
}
func (this *QSpinBox) cPointer() *C.QSpinBox {
if this == nil {
return nil
}
return this.h
}
func (this *QSpinBox) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
func newQSpinBox(h *C.QSpinBox) *QSpinBox {
if h == nil {
return nil
}
return &QSpinBox{h: h, QAbstractSpinBox: UnsafeNewQAbstractSpinBox(unsafe.Pointer(h))}
}
func UnsafeNewQSpinBox(h unsafe.Pointer) *QSpinBox {
return newQSpinBox((*C.QSpinBox)(h))
}
// NewQSpinBox constructs a new QSpinBox object.
func NewQSpinBox(parent *QWidget) *QSpinBox {
ret := C.QSpinBox_new(parent.cPointer())
2024-10-20 05:21:03 +00:00
return newQSpinBox(ret)
}
// NewQSpinBox2 constructs a new QSpinBox object.
func NewQSpinBox2() *QSpinBox {
ret := C.QSpinBox_new2()
2024-10-20 05:21:03 +00:00
return newQSpinBox(ret)
}
func (this *QSpinBox) MetaObject() *QMetaObject {
return UnsafeNewQMetaObject(unsafe.Pointer(C.QSpinBox_MetaObject(this.h)))
}
func (this *QSpinBox) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QSpinBox_Metacast(this.h, param1_Cstring))
}
func QSpinBox_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QSpinBox_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QSpinBox) Value() int {
return (int)(C.QSpinBox_Value(this.h))
}
func (this *QSpinBox) Prefix() string {
var _ms C.struct_miqt_string = C.QSpinBox_Prefix(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QSpinBox) SetPrefix(prefix string) {
prefix_ms := C.struct_miqt_string{}
prefix_ms.data = C.CString(prefix)
prefix_ms.len = C.size_t(len(prefix))
defer C.free(unsafe.Pointer(prefix_ms.data))
C.QSpinBox_SetPrefix(this.h, prefix_ms)
}
func (this *QSpinBox) Suffix() string {
var _ms C.struct_miqt_string = C.QSpinBox_Suffix(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QSpinBox) SetSuffix(suffix string) {
suffix_ms := C.struct_miqt_string{}
suffix_ms.data = C.CString(suffix)
suffix_ms.len = C.size_t(len(suffix))
defer C.free(unsafe.Pointer(suffix_ms.data))
C.QSpinBox_SetSuffix(this.h, suffix_ms)
}
func (this *QSpinBox) CleanText() string {
var _ms C.struct_miqt_string = C.QSpinBox_CleanText(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QSpinBox) SingleStep() int {
return (int)(C.QSpinBox_SingleStep(this.h))
}
func (this *QSpinBox) SetSingleStep(val int) {
C.QSpinBox_SetSingleStep(this.h, (C.int)(val))
}
func (this *QSpinBox) Minimum() int {
return (int)(C.QSpinBox_Minimum(this.h))
}
func (this *QSpinBox) SetMinimum(min int) {
C.QSpinBox_SetMinimum(this.h, (C.int)(min))
}
func (this *QSpinBox) Maximum() int {
return (int)(C.QSpinBox_Maximum(this.h))
}
func (this *QSpinBox) SetMaximum(max int) {
C.QSpinBox_SetMaximum(this.h, (C.int)(max))
}
func (this *QSpinBox) SetRange(min int, max int) {
C.QSpinBox_SetRange(this.h, (C.int)(min), (C.int)(max))
}
func (this *QSpinBox) StepType() QAbstractSpinBox__StepType {
return (QAbstractSpinBox__StepType)(C.QSpinBox_StepType(this.h))
}
func (this *QSpinBox) SetStepType(stepType QAbstractSpinBox__StepType) {
C.QSpinBox_SetStepType(this.h, (C.int)(stepType))
}
func (this *QSpinBox) DisplayIntegerBase() int {
return (int)(C.QSpinBox_DisplayIntegerBase(this.h))
}
func (this *QSpinBox) SetDisplayIntegerBase(base int) {
C.QSpinBox_SetDisplayIntegerBase(this.h, (C.int)(base))
}
func (this *QSpinBox) SetValue(val int) {
C.QSpinBox_SetValue(this.h, (C.int)(val))
}
func (this *QSpinBox) ValueChanged(param1 int) {
C.QSpinBox_ValueChanged(this.h, (C.int)(param1))
}
func (this *QSpinBox) OnValueChanged(slot func(param1 int)) {
C.QSpinBox_connect_ValueChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QSpinBox_ValueChanged
func miqt_exec_callback_QSpinBox_ValueChanged(cb C.intptr_t, param1 C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(param1 int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(param1)
gofunc(slotval1)
}
func (this *QSpinBox) TextChanged(param1 string) {
param1_ms := C.struct_miqt_string{}
param1_ms.data = C.CString(param1)
param1_ms.len = C.size_t(len(param1))
defer C.free(unsafe.Pointer(param1_ms.data))
C.QSpinBox_TextChanged(this.h, param1_ms)
}
func (this *QSpinBox) OnTextChanged(slot func(param1 string)) {
C.QSpinBox_connect_TextChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QSpinBox_TextChanged
func miqt_exec_callback_QSpinBox_TextChanged(cb C.intptr_t, param1 C.struct_miqt_string) {
gofunc, ok := cgo.Handle(cb).Value().(func(param1 string))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
var param1_ms C.struct_miqt_string = param1
param1_ret := C.GoStringN(param1_ms.data, C.int(int64(param1_ms.len)))
C.free(unsafe.Pointer(param1_ms.data))
slotval1 := param1_ret
gofunc(slotval1)
}
func QSpinBox_Tr2(s string, c string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
var _ms C.struct_miqt_string = C.QSpinBox_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QSpinBox_Tr3(s string, c string, n int) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
var _ms C.struct_miqt_string = C.QSpinBox_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
// Delete this object from C++ memory.
func (this *QSpinBox) Delete() {
C.QSpinBox_Delete(this.h)
}
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
// from C++ memory once it is unreachable from Go memory.
func (this *QSpinBox) GoGC() {
runtime.SetFinalizer(this, func(this *QSpinBox) {
this.Delete()
runtime.KeepAlive(this.h)
})
}
type QDoubleSpinBox struct {
h *C.QDoubleSpinBox
*QAbstractSpinBox
}
func (this *QDoubleSpinBox) cPointer() *C.QDoubleSpinBox {
if this == nil {
return nil
}
return this.h
}
func (this *QDoubleSpinBox) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
func newQDoubleSpinBox(h *C.QDoubleSpinBox) *QDoubleSpinBox {
if h == nil {
return nil
}
return &QDoubleSpinBox{h: h, QAbstractSpinBox: UnsafeNewQAbstractSpinBox(unsafe.Pointer(h))}
}
func UnsafeNewQDoubleSpinBox(h unsafe.Pointer) *QDoubleSpinBox {
return newQDoubleSpinBox((*C.QDoubleSpinBox)(h))
}
// NewQDoubleSpinBox constructs a new QDoubleSpinBox object.
func NewQDoubleSpinBox(parent *QWidget) *QDoubleSpinBox {
ret := C.QDoubleSpinBox_new(parent.cPointer())
2024-10-20 05:21:03 +00:00
return newQDoubleSpinBox(ret)
}
// NewQDoubleSpinBox2 constructs a new QDoubleSpinBox object.
func NewQDoubleSpinBox2() *QDoubleSpinBox {
ret := C.QDoubleSpinBox_new2()
2024-10-20 05:21:03 +00:00
return newQDoubleSpinBox(ret)
}
func (this *QDoubleSpinBox) MetaObject() *QMetaObject {
return UnsafeNewQMetaObject(unsafe.Pointer(C.QDoubleSpinBox_MetaObject(this.h)))
}
func (this *QDoubleSpinBox) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QDoubleSpinBox_Metacast(this.h, param1_Cstring))
}
func QDoubleSpinBox_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QDoubleSpinBox_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QDoubleSpinBox) Value() float64 {
return (float64)(C.QDoubleSpinBox_Value(this.h))
}
func (this *QDoubleSpinBox) Prefix() string {
var _ms C.struct_miqt_string = C.QDoubleSpinBox_Prefix(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QDoubleSpinBox) SetPrefix(prefix string) {
prefix_ms := C.struct_miqt_string{}
prefix_ms.data = C.CString(prefix)
prefix_ms.len = C.size_t(len(prefix))
defer C.free(unsafe.Pointer(prefix_ms.data))
C.QDoubleSpinBox_SetPrefix(this.h, prefix_ms)
}
func (this *QDoubleSpinBox) Suffix() string {
var _ms C.struct_miqt_string = C.QDoubleSpinBox_Suffix(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QDoubleSpinBox) SetSuffix(suffix string) {
suffix_ms := C.struct_miqt_string{}
suffix_ms.data = C.CString(suffix)
suffix_ms.len = C.size_t(len(suffix))
defer C.free(unsafe.Pointer(suffix_ms.data))
C.QDoubleSpinBox_SetSuffix(this.h, suffix_ms)
}
func (this *QDoubleSpinBox) CleanText() string {
var _ms C.struct_miqt_string = C.QDoubleSpinBox_CleanText(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QDoubleSpinBox) SingleStep() float64 {
return (float64)(C.QDoubleSpinBox_SingleStep(this.h))
}
func (this *QDoubleSpinBox) SetSingleStep(val float64) {
C.QDoubleSpinBox_SetSingleStep(this.h, (C.double)(val))
}
func (this *QDoubleSpinBox) Minimum() float64 {
return (float64)(C.QDoubleSpinBox_Minimum(this.h))
}
func (this *QDoubleSpinBox) SetMinimum(min float64) {
C.QDoubleSpinBox_SetMinimum(this.h, (C.double)(min))
}
func (this *QDoubleSpinBox) Maximum() float64 {
return (float64)(C.QDoubleSpinBox_Maximum(this.h))
}
func (this *QDoubleSpinBox) SetMaximum(max float64) {
C.QDoubleSpinBox_SetMaximum(this.h, (C.double)(max))
}
func (this *QDoubleSpinBox) SetRange(min float64, max float64) {
C.QDoubleSpinBox_SetRange(this.h, (C.double)(min), (C.double)(max))
}
func (this *QDoubleSpinBox) StepType() QAbstractSpinBox__StepType {
return (QAbstractSpinBox__StepType)(C.QDoubleSpinBox_StepType(this.h))
}
func (this *QDoubleSpinBox) SetStepType(stepType QAbstractSpinBox__StepType) {
C.QDoubleSpinBox_SetStepType(this.h, (C.int)(stepType))
}
func (this *QDoubleSpinBox) Decimals() int {
return (int)(C.QDoubleSpinBox_Decimals(this.h))
}
func (this *QDoubleSpinBox) SetDecimals(prec int) {
C.QDoubleSpinBox_SetDecimals(this.h, (C.int)(prec))
}
func (this *QDoubleSpinBox) Validate(input string, pos *int) QValidator__State {
input_ms := C.struct_miqt_string{}
input_ms.data = C.CString(input)
input_ms.len = C.size_t(len(input))
defer C.free(unsafe.Pointer(input_ms.data))
return (QValidator__State)(C.QDoubleSpinBox_Validate(this.h, input_ms, (*C.int)(unsafe.Pointer(pos))))
}
func (this *QDoubleSpinBox) ValueFromText(text string) float64 {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
return (float64)(C.QDoubleSpinBox_ValueFromText(this.h, text_ms))
}
func (this *QDoubleSpinBox) TextFromValue(val float64) string {
var _ms C.struct_miqt_string = C.QDoubleSpinBox_TextFromValue(this.h, (C.double)(val))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QDoubleSpinBox) Fixup(str string) {
str_ms := C.struct_miqt_string{}
str_ms.data = C.CString(str)
str_ms.len = C.size_t(len(str))
defer C.free(unsafe.Pointer(str_ms.data))
C.QDoubleSpinBox_Fixup(this.h, str_ms)
}
func (this *QDoubleSpinBox) SetValue(val float64) {
C.QDoubleSpinBox_SetValue(this.h, (C.double)(val))
}
func (this *QDoubleSpinBox) ValueChanged(param1 float64) {
C.QDoubleSpinBox_ValueChanged(this.h, (C.double)(param1))
}
func (this *QDoubleSpinBox) OnValueChanged(slot func(param1 float64)) {
C.QDoubleSpinBox_connect_ValueChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QDoubleSpinBox_ValueChanged
func miqt_exec_callback_QDoubleSpinBox_ValueChanged(cb C.intptr_t, param1 C.double) {
gofunc, ok := cgo.Handle(cb).Value().(func(param1 float64))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (float64)(param1)
gofunc(slotval1)
}
func (this *QDoubleSpinBox) TextChanged(param1 string) {
param1_ms := C.struct_miqt_string{}
param1_ms.data = C.CString(param1)
param1_ms.len = C.size_t(len(param1))
defer C.free(unsafe.Pointer(param1_ms.data))
C.QDoubleSpinBox_TextChanged(this.h, param1_ms)
}
func (this *QDoubleSpinBox) OnTextChanged(slot func(param1 string)) {
C.QDoubleSpinBox_connect_TextChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QDoubleSpinBox_TextChanged
func miqt_exec_callback_QDoubleSpinBox_TextChanged(cb C.intptr_t, param1 C.struct_miqt_string) {
gofunc, ok := cgo.Handle(cb).Value().(func(param1 string))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
var param1_ms C.struct_miqt_string = param1
param1_ret := C.GoStringN(param1_ms.data, C.int(int64(param1_ms.len)))
C.free(unsafe.Pointer(param1_ms.data))
slotval1 := param1_ret
gofunc(slotval1)
}
func QDoubleSpinBox_Tr2(s string, c string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
var _ms C.struct_miqt_string = C.QDoubleSpinBox_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QDoubleSpinBox_Tr3(s string, c string, n int) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
var _ms C.struct_miqt_string = C.QDoubleSpinBox_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
// Delete this object from C++ memory.
func (this *QDoubleSpinBox) Delete() {
C.QDoubleSpinBox_Delete(this.h)
}
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
// from C++ memory once it is unreachable from Go memory.
func (this *QDoubleSpinBox) GoGC() {
runtime.SetFinalizer(this, func(this *QDoubleSpinBox) {
this.Delete()
runtime.KeepAlive(this.h)
})
}