miqt/qt/gen_qgraphicsproxywidget.go

148 lines
4.5 KiB
Go
Raw Permalink Normal View History

package qt
/*
#include "gen_qgraphicsproxywidget.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QGraphicsProxyWidget__ int
const (
2024-09-20 07:13:26 +00:00
QGraphicsProxyWidget__Type QGraphicsProxyWidget__ = 12
2024-09-04 06:54:22 +00:00
)
type QGraphicsProxyWidget struct {
h *C.QGraphicsProxyWidget
*QGraphicsWidget
}
func (this *QGraphicsProxyWidget) cPointer() *C.QGraphicsProxyWidget {
if this == nil {
return nil
}
return this.h
}
func newQGraphicsProxyWidget(h *C.QGraphicsProxyWidget) *QGraphicsProxyWidget {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QGraphicsProxyWidget{h: h, QGraphicsWidget: newQGraphicsWidget_U(unsafe.Pointer(h))}
}
func newQGraphicsProxyWidget_U(h unsafe.Pointer) *QGraphicsProxyWidget {
return newQGraphicsProxyWidget((*C.QGraphicsProxyWidget)(h))
}
2024-08-29 07:01:51 +00:00
// NewQGraphicsProxyWidget constructs a new QGraphicsProxyWidget object.
func NewQGraphicsProxyWidget() *QGraphicsProxyWidget {
ret := C.QGraphicsProxyWidget_new()
return newQGraphicsProxyWidget(ret)
}
// NewQGraphicsProxyWidget2 constructs a new QGraphicsProxyWidget object.
func NewQGraphicsProxyWidget2(parent *QGraphicsItem) *QGraphicsProxyWidget {
ret := C.QGraphicsProxyWidget_new2(parent.cPointer())
return newQGraphicsProxyWidget(ret)
}
// NewQGraphicsProxyWidget3 constructs a new QGraphicsProxyWidget object.
func NewQGraphicsProxyWidget3(parent *QGraphicsItem, wFlags WindowType) *QGraphicsProxyWidget {
ret := C.QGraphicsProxyWidget_new3(parent.cPointer(), (C.int)(wFlags))
2024-08-29 07:01:51 +00:00
return newQGraphicsProxyWidget(ret)
}
func (this *QGraphicsProxyWidget) MetaObject() *QMetaObject {
return newQMetaObject_U(unsafe.Pointer(C.QGraphicsProxyWidget_MetaObject(this.h)))
}
func (this *QGraphicsProxyWidget) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return C.QGraphicsProxyWidget_Metacast(this.h, param1_Cstring)
}
func QGraphicsProxyWidget_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms *C.struct_miqt_string = C.QGraphicsProxyWidget_Tr(s_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func (this *QGraphicsProxyWidget) SetWidget(widget *QWidget) {
C.QGraphicsProxyWidget_SetWidget(this.h, widget.cPointer())
}
func (this *QGraphicsProxyWidget) Widget() *QWidget {
return newQWidget_U(unsafe.Pointer(C.QGraphicsProxyWidget_Widget(this.h)))
}
func (this *QGraphicsProxyWidget) SubWidgetRect(widget *QWidget) *QRectF {
_ret := C.QGraphicsProxyWidget_SubWidgetRect(this.h, widget.cPointer())
_goptr := newQRectF(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QGraphicsProxyWidget) SetGeometry(rect *QRectF) {
C.QGraphicsProxyWidget_SetGeometry(this.h, rect.cPointer())
}
func (this *QGraphicsProxyWidget) Paint(painter *QPainter, option *QStyleOptionGraphicsItem, widget *QWidget) {
C.QGraphicsProxyWidget_Paint(this.h, painter.cPointer(), option.cPointer(), widget.cPointer())
}
func (this *QGraphicsProxyWidget) Type() int {
return (int)(C.QGraphicsProxyWidget_Type(this.h))
}
func (this *QGraphicsProxyWidget) CreateProxyForChildWidget(child *QWidget) *QGraphicsProxyWidget {
return newQGraphicsProxyWidget_U(unsafe.Pointer(C.QGraphicsProxyWidget_CreateProxyForChildWidget(this.h, child.cPointer())))
}
func QGraphicsProxyWidget_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.QGraphicsProxyWidget_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QGraphicsProxyWidget_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.QGraphicsProxyWidget_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
// Delete this object from C++ memory.
func (this *QGraphicsProxyWidget) Delete() {
C.QGraphicsProxyWidget_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 *QGraphicsProxyWidget) GoGC() {
runtime.SetFinalizer(this, func(this *QGraphicsProxyWidget) {
this.Delete()
runtime.KeepAlive(this.h)
})
}