2022-10-04 13:21:05 +08:00
|
|
|
//----------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
2023-02-19 23:21:47 +08:00
|
|
|
// 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 回调事件实现
|
2023-06-01 10:15:20 +08:00
|
|
|
|
2022-10-04 13:21:05 +08:00
|
|
|
package cef
|
|
|
|
|
2022-10-04 22:34:57 +08:00
|
|
|
import (
|
2023-06-11 00:10:55 +08:00
|
|
|
"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
|
|
|
|
}
|
2023-06-11 00:10:55 +08:00
|
|
|
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
|
|
|
|
}
|
2023-06-11 00:10:55 +08:00
|
|
|
imports.Proc(def.CEFCallback_Cancel).Call(uintptr(m.instance))
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|