miqt/qt/multimedia/gen_qvideowidgetcontrol.go

294 lines
9.2 KiB
Go
Raw Normal View History

2024-11-04 10:15:32 +00:00
package multimedia
/*
#include "gen_qvideowidgetcontrol.h"
#include <stdlib.h>
*/
import "C"
import (
"github.com/mappu/miqt/qt"
"runtime"
"runtime/cgo"
"unsafe"
)
type QVideoWidgetControl struct {
2024-11-19 06:29:06 +00:00
h *C.QVideoWidgetControl
isSubclass bool
2024-11-04 10:15:32 +00:00
*QMediaControl
}
func (this *QVideoWidgetControl) cPointer() *C.QVideoWidgetControl {
if this == nil {
return nil
}
return this.h
}
func (this *QVideoWidgetControl) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQVideoWidgetControl constructs the type using only CGO pointers.
func newQVideoWidgetControl(h *C.QVideoWidgetControl, h_QMediaControl *C.QMediaControl, h_QObject *C.QObject) *QVideoWidgetControl {
2024-11-04 10:15:32 +00:00
if h == nil {
return nil
}
2024-11-19 06:29:06 +00:00
return &QVideoWidgetControl{h: h,
QMediaControl: newQMediaControl(h_QMediaControl, h_QObject)}
2024-11-04 10:15:32 +00:00
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQVideoWidgetControl constructs the type using only unsafe pointers.
func UnsafeNewQVideoWidgetControl(h unsafe.Pointer, h_QMediaControl unsafe.Pointer, h_QObject unsafe.Pointer) *QVideoWidgetControl {
if h == nil {
return nil
}
return &QVideoWidgetControl{h: (*C.QVideoWidgetControl)(h),
QMediaControl: UnsafeNewQMediaControl(h_QMediaControl, h_QObject)}
2024-11-04 10:15:32 +00:00
}
func (this *QVideoWidgetControl) MetaObject() *qt.QMetaObject {
return qt.UnsafeNewQMetaObject(unsafe.Pointer(C.QVideoWidgetControl_MetaObject(this.h)))
}
func (this *QVideoWidgetControl) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QVideoWidgetControl_Metacast(this.h, param1_Cstring))
}
func QVideoWidgetControl_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QVideoWidgetControl_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QVideoWidgetControl_TrUtf8(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QVideoWidgetControl_TrUtf8(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QVideoWidgetControl) VideoWidget() *qt.QWidget {
2024-11-19 06:29:06 +00:00
return qt.UnsafeNewQWidget(unsafe.Pointer(C.QVideoWidgetControl_VideoWidget(this.h)), nil, nil)
2024-11-04 10:15:32 +00:00
}
func (this *QVideoWidgetControl) AspectRatioMode() qt.AspectRatioMode {
return (qt.AspectRatioMode)(C.QVideoWidgetControl_AspectRatioMode(this.h))
}
func (this *QVideoWidgetControl) SetAspectRatioMode(mode qt.AspectRatioMode) {
C.QVideoWidgetControl_SetAspectRatioMode(this.h, (C.int)(mode))
}
func (this *QVideoWidgetControl) IsFullScreen() bool {
return (bool)(C.QVideoWidgetControl_IsFullScreen(this.h))
}
func (this *QVideoWidgetControl) SetFullScreen(fullScreen bool) {
C.QVideoWidgetControl_SetFullScreen(this.h, (C.bool)(fullScreen))
}
func (this *QVideoWidgetControl) Brightness() int {
return (int)(C.QVideoWidgetControl_Brightness(this.h))
}
func (this *QVideoWidgetControl) SetBrightness(brightness int) {
C.QVideoWidgetControl_SetBrightness(this.h, (C.int)(brightness))
}
func (this *QVideoWidgetControl) Contrast() int {
return (int)(C.QVideoWidgetControl_Contrast(this.h))
}
func (this *QVideoWidgetControl) SetContrast(contrast int) {
C.QVideoWidgetControl_SetContrast(this.h, (C.int)(contrast))
}
func (this *QVideoWidgetControl) Hue() int {
return (int)(C.QVideoWidgetControl_Hue(this.h))
}
func (this *QVideoWidgetControl) SetHue(hue int) {
C.QVideoWidgetControl_SetHue(this.h, (C.int)(hue))
}
func (this *QVideoWidgetControl) Saturation() int {
return (int)(C.QVideoWidgetControl_Saturation(this.h))
}
func (this *QVideoWidgetControl) SetSaturation(saturation int) {
C.QVideoWidgetControl_SetSaturation(this.h, (C.int)(saturation))
}
func (this *QVideoWidgetControl) FullScreenChanged(fullScreen bool) {
C.QVideoWidgetControl_FullScreenChanged(this.h, (C.bool)(fullScreen))
}
func (this *QVideoWidgetControl) OnFullScreenChanged(slot func(fullScreen bool)) {
C.QVideoWidgetControl_connect_FullScreenChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QVideoWidgetControl_FullScreenChanged
func miqt_exec_callback_QVideoWidgetControl_FullScreenChanged(cb C.intptr_t, fullScreen C.bool) {
gofunc, ok := cgo.Handle(cb).Value().(func(fullScreen bool))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (bool)(fullScreen)
gofunc(slotval1)
}
func (this *QVideoWidgetControl) BrightnessChanged(brightness int) {
C.QVideoWidgetControl_BrightnessChanged(this.h, (C.int)(brightness))
}
func (this *QVideoWidgetControl) OnBrightnessChanged(slot func(brightness int)) {
C.QVideoWidgetControl_connect_BrightnessChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QVideoWidgetControl_BrightnessChanged
func miqt_exec_callback_QVideoWidgetControl_BrightnessChanged(cb C.intptr_t, brightness C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(brightness int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(brightness)
gofunc(slotval1)
}
func (this *QVideoWidgetControl) ContrastChanged(contrast int) {
C.QVideoWidgetControl_ContrastChanged(this.h, (C.int)(contrast))
}
func (this *QVideoWidgetControl) OnContrastChanged(slot func(contrast int)) {
C.QVideoWidgetControl_connect_ContrastChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QVideoWidgetControl_ContrastChanged
func miqt_exec_callback_QVideoWidgetControl_ContrastChanged(cb C.intptr_t, contrast C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(contrast int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(contrast)
gofunc(slotval1)
}
func (this *QVideoWidgetControl) HueChanged(hue int) {
C.QVideoWidgetControl_HueChanged(this.h, (C.int)(hue))
}
func (this *QVideoWidgetControl) OnHueChanged(slot func(hue int)) {
C.QVideoWidgetControl_connect_HueChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QVideoWidgetControl_HueChanged
func miqt_exec_callback_QVideoWidgetControl_HueChanged(cb C.intptr_t, hue C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(hue int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(hue)
gofunc(slotval1)
}
func (this *QVideoWidgetControl) SaturationChanged(saturation int) {
C.QVideoWidgetControl_SaturationChanged(this.h, (C.int)(saturation))
}
func (this *QVideoWidgetControl) OnSaturationChanged(slot func(saturation int)) {
C.QVideoWidgetControl_connect_SaturationChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QVideoWidgetControl_SaturationChanged
func miqt_exec_callback_QVideoWidgetControl_SaturationChanged(cb C.intptr_t, saturation C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(saturation int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(saturation)
gofunc(slotval1)
}
func QVideoWidgetControl_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.QVideoWidgetControl_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QVideoWidgetControl_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.QVideoWidgetControl_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
}
func QVideoWidgetControl_TrUtf82(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.QVideoWidgetControl_TrUtf82(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QVideoWidgetControl_TrUtf83(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.QVideoWidgetControl_TrUtf83(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 *QVideoWidgetControl) Delete() {
2024-11-19 06:29:06 +00:00
C.QVideoWidgetControl_Delete(this.h, C.bool(this.isSubclass))
2024-11-04 10:15:32 +00:00
}
// 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 *QVideoWidgetControl) GoGC() {
runtime.SetFinalizer(this, func(this *QVideoWidgetControl) {
this.Delete()
runtime.KeepAlive(this.h)
})
}