mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
105 lines
2.2 KiB
Go
105 lines
2.2 KiB
Go
package qt6
|
|
|
|
/*
|
|
|
|
#include "gen_qwhatsthis.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QWhatsThis struct {
|
|
h *C.QWhatsThis
|
|
isSubclass bool
|
|
}
|
|
|
|
func (this *QWhatsThis) cPointer() *C.QWhatsThis {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *QWhatsThis) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
// newQWhatsThis constructs the type using only CGO pointers.
|
|
func newQWhatsThis(h *C.QWhatsThis) *QWhatsThis {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QWhatsThis{h: h}
|
|
}
|
|
|
|
// UnsafeNewQWhatsThis constructs the type using only unsafe pointers.
|
|
func UnsafeNewQWhatsThis(h unsafe.Pointer) *QWhatsThis {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
|
|
return &QWhatsThis{h: (*C.QWhatsThis)(h)}
|
|
}
|
|
|
|
func QWhatsThis_EnterWhatsThisMode() {
|
|
C.QWhatsThis_EnterWhatsThisMode()
|
|
}
|
|
|
|
func QWhatsThis_InWhatsThisMode() bool {
|
|
return (bool)(C.QWhatsThis_InWhatsThisMode())
|
|
}
|
|
|
|
func QWhatsThis_LeaveWhatsThisMode() {
|
|
C.QWhatsThis_LeaveWhatsThisMode()
|
|
}
|
|
|
|
func QWhatsThis_ShowText(pos *QPoint, text string) {
|
|
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))
|
|
C.QWhatsThis_ShowText(pos.cPointer(), text_ms)
|
|
}
|
|
|
|
func QWhatsThis_HideText() {
|
|
C.QWhatsThis_HideText()
|
|
}
|
|
|
|
func QWhatsThis_CreateAction() *QAction {
|
|
return UnsafeNewQAction(unsafe.Pointer(C.QWhatsThis_CreateAction()), nil)
|
|
}
|
|
|
|
func QWhatsThis_ShowText3(pos *QPoint, text string, w *QWidget) {
|
|
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))
|
|
C.QWhatsThis_ShowText3(pos.cPointer(), text_ms, w.cPointer())
|
|
}
|
|
|
|
func QWhatsThis_CreateAction1(parent *QObject) *QAction {
|
|
return UnsafeNewQAction(unsafe.Pointer(C.QWhatsThis_CreateAction1(parent.cPointer())), nil)
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QWhatsThis) Delete() {
|
|
C.QWhatsThis_Delete(this.h, C.bool(this.isSubclass))
|
|
}
|
|
|
|
// 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 *QWhatsThis) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QWhatsThis) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|