energy/cef/types_callback.go

57 lines
1.0 KiB
Go
Raw Normal View History

2022-10-04 13:21:05 +08:00
//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
2022-10-04 13:21:05 +08:00
//
//----------------------------------------
2023-02-20 00:20:01 +08:00
// CEF 回调事件实现
2022-10-04 13:21:05 +08:00
package cef
2022-10-04 22:34:57 +08:00
import (
"github.com/energye/energy/v2/cef/internal/def"
2023-05-31 18:00:34 +08:00
"github.com/energye/energy/v2/common/imports"
2022-10-04 22:34:57 +08:00
)
2022-10-04 13:21:05 +08:00
2023-05-31 17:41:14 +08:00
// Instance 实例
func (m *ICefCallback) Instance() uintptr {
if m == nil {
return 0
}
return uintptr(m.instance)
}
func (m *ICefCallback) Free() {
if m.instance != nil {
m.base.Free(m.Instance())
m.instance = nil
}
}
func (m *ICefCallback) IsValid() bool {
if m == nil || m.instance == nil {
return false
}
return m.instance != nil
}
2023-02-20 00:20:01 +08:00
// Cont 继续执行
2022-10-04 13:21:05 +08:00
func (m *ICefCallback) Cont() {
2023-05-31 17:41:14 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CEFCallback_Cont).Call(uintptr(m.instance))
2022-10-04 13:21:05 +08:00
}
2023-02-20 00:20:01 +08:00
// Cancel 取消执行
2022-10-04 13:21:05 +08:00
func (m *ICefCallback) Cancel() {
2023-05-31 17:41:14 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CEFCallback_Cancel).Call(uintptr(m.instance))
2022-10-04 13:21:05 +08:00
}