energy/cef/cef-types-display.go
2023-03-01 13:38:43 +08:00

44 lines
1.2 KiB
Go

// ----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// # Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// ----------------------------------------
// CefDisplay
package cef
import (
"github.com/energye/energy/common/imports"
"unsafe"
)
func (m *ICefDisplay) ID() (result int64) {
imports.Proc(internale_CEFDisplay_ID).Call(uintptr(m.instance), uintptr(unsafe.Pointer(&result)))
return
}
func (m *ICefDisplay) DeviceScaleFactor() float32 {
var result uintptr
imports.Proc(internale_CEFDisplay_DeviceScaleFactor).Call(uintptr(m.instance), uintptr(unsafe.Pointer(&result)))
return *(*float32)(unsafe.Pointer(result))
}
func (m *ICefDisplay) Rotation() int32 {
r1, _, _ := imports.Proc(internale_CEFDisplay_Rotation).Call(uintptr(m.instance))
return int32(r1)
}
func (m *ICefDisplay) Bounds() (result TCefRect) {
imports.Proc(internale_CEFDisplay_Bounds).Call(uintptr(m.instance), uintptr(unsafe.Pointer(&result)))
return
}
func (m *ICefDisplay) WorkArea() (result TCefRect) {
imports.Proc(internale_CEFDisplay_WorkArea).Call(uintptr(m.instance), uintptr(unsafe.Pointer(&result)))
return
}