miqt/qt/gen_qsocketnotifier.go

213 lines
5.5 KiB
Go
Raw Normal View History

package qt
/*
#include "gen_qsocketnotifier.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QSocketNotifier__Type int
const (
QSocketNotifier__Type__Read QSocketNotifier__Type = 0
QSocketNotifier__Type__Write QSocketNotifier__Type = 1
QSocketNotifier__Type__Exception QSocketNotifier__Type = 2
)
type QSocketNotifier struct {
h *C.QSocketNotifier
*QObject
}
func (this *QSocketNotifier) cPointer() *C.QSocketNotifier {
if this == nil {
return nil
}
return this.h
}
func newQSocketNotifier(h *C.QSocketNotifier) *QSocketNotifier {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QSocketNotifier{h: h, QObject: newQObject_U(unsafe.Pointer(h))}
}
func newQSocketNotifier_U(h unsafe.Pointer) *QSocketNotifier {
return newQSocketNotifier((*C.QSocketNotifier)(h))
}
2024-08-29 07:01:51 +00:00
// NewQSocketNotifier constructs a new QSocketNotifier object.
func NewQSocketNotifier(socket uintptr, param2 QSocketNotifier__Type) *QSocketNotifier {
ret := C.QSocketNotifier_new((C.uintptr_t)(socket), (C.uintptr_t)(param2))
2024-08-29 07:01:51 +00:00
return newQSocketNotifier(ret)
}
// NewQSocketNotifier2 constructs a new QSocketNotifier object.
func NewQSocketNotifier2(socket uintptr, param2 QSocketNotifier__Type, parent *QObject) *QSocketNotifier {
ret := C.QSocketNotifier_new2((C.uintptr_t)(socket), (C.uintptr_t)(param2), parent.cPointer())
2024-08-29 07:01:51 +00:00
return newQSocketNotifier(ret)
}
func (this *QSocketNotifier) MetaObject() *QMetaObject {
ret := C.QSocketNotifier_MetaObject(this.h)
return newQMetaObject_U(unsafe.Pointer(ret))
}
func QSocketNotifier_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_Tr(s_Cstring, &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
func QSocketNotifier_TrUtf8(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_TrUtf8(s_Cstring, &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
2024-08-29 07:01:51 +00:00
func (this *QSocketNotifier) Socket() uint64 {
ret := C.QSocketNotifier_Socket(this.h)
2024-08-29 07:01:51 +00:00
return (uint64)(ret)
}
2024-09-04 06:54:22 +00:00
func (this *QSocketNotifier) Type() QSocketNotifier__Type {
2024-08-29 07:01:51 +00:00
ret := C.QSocketNotifier_Type(this.h)
2024-09-04 06:54:22 +00:00
return (QSocketNotifier__Type)(ret)
}
func (this *QSocketNotifier) IsEnabled() bool {
ret := C.QSocketNotifier_IsEnabled(this.h)
return (bool)(ret)
}
func (this *QSocketNotifier) SetEnabled(enabled bool) {
C.QSocketNotifier_SetEnabled(this.h, (C.bool)(enabled))
}
func QSocketNotifier_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 _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_Tr2(s_Cstring, c_Cstring, &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
func QSocketNotifier_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 _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_Tr3(s_Cstring, c_Cstring, (C.int)(n), &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
func QSocketNotifier_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 _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_TrUtf82(s_Cstring, c_Cstring, &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
func QSocketNotifier_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 _out *C.char = nil
var _out_Strlen C.int = 0
C.QSocketNotifier_TrUtf83(s_Cstring, c_Cstring, (C.int)(n), &_out, &_out_Strlen)
ret := C.GoStringN(_out, _out_Strlen)
C.free(unsafe.Pointer(_out))
return ret
}
func (this *QSocketNotifier) Delete() {
C.QSocketNotifier_Delete(this.h)
}
type QSocketDescriptor struct {
h *C.QSocketDescriptor
}
func (this *QSocketDescriptor) cPointer() *C.QSocketDescriptor {
if this == nil {
return nil
}
return this.h
}
func newQSocketDescriptor(h *C.QSocketDescriptor) *QSocketDescriptor {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QSocketDescriptor{h: h}
}
func newQSocketDescriptor_U(h unsafe.Pointer) *QSocketDescriptor {
return newQSocketDescriptor((*C.QSocketDescriptor)(h))
}
// NewQSocketDescriptor constructs a new QSocketDescriptor object.
2024-08-29 07:01:51 +00:00
func NewQSocketDescriptor() *QSocketDescriptor {
ret := C.QSocketDescriptor_new()
return newQSocketDescriptor(ret)
}
// NewQSocketDescriptor2 constructs a new QSocketDescriptor object.
func NewQSocketDescriptor2(param1 *QSocketDescriptor) *QSocketDescriptor {
ret := C.QSocketDescriptor_new2(param1.cPointer())
return newQSocketDescriptor(ret)
}
// NewQSocketDescriptor3 constructs a new QSocketDescriptor object.
func NewQSocketDescriptor3(descriptor uintptr) *QSocketDescriptor {
if runtime.GOOS == "linux" {
ret := C.QSocketDescriptor_new3((C.uintptr_t)(descriptor))
return newQSocketDescriptor(ret)
} else {
panic("Unsupported OS")
}
}
func (this *QSocketDescriptor) IsValid() bool {
ret := C.QSocketDescriptor_IsValid(this.h)
return (bool)(ret)
}
func (this *QSocketDescriptor) Delete() {
C.QSocketDescriptor_Delete(this.h)
}