2023-02-20 14:42:17 +08:00
|
|
|
// ----------------------------------------
|
2022-10-04 13:21:05 +08:00
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
2023-02-20 14:42:17 +08:00
|
|
|
// # Licensed under Apache License Version 2.0, January 2004
|
2023-02-19 23:21:47 +08:00
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2022-10-04 13:21:05 +08:00
|
|
|
//
|
2023-02-20 14:42:17 +08:00
|
|
|
// ----------------------------------------
|
2022-10-04 13:21:05 +08:00
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// CEF Frame
|
2022-10-04 13:21:05 +08:00
|
|
|
package cef
|
|
|
|
|
|
|
|
import (
|
2023-02-13 21:25:35 +08:00
|
|
|
"github.com/energye/energy/common/imports"
|
2022-10-04 22:34:57 +08:00
|
|
|
. "github.com/energye/energy/consts"
|
2022-10-04 13:21:05 +08:00
|
|
|
"github.com/energye/golcl/lcl/api"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2023-02-25 23:07:13 +08:00
|
|
|
// Instance 实例
|
|
|
|
func (m *ICefFrame) Instance() uintptr {
|
|
|
|
return uintptr(m.instance)
|
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Undo 撤销操作
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Undo() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Undo).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Redo 恢复
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Redo() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Redo).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Cut 剪切
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Cut() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Cut).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Copy 复制
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Copy() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Copy).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Paste 粘贴
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Paste() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Paste).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// Del 删除
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) Del() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_Del).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// SelectAll 选择所有
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) SelectAll() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_SelectAll).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// ViewSource 显示源码
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) ViewSource() {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_ViewSource).Call(m.Instance())
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// LoadUrl 加载URL
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) LoadUrl(url string) {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_LoadUrl).Call(m.Instance(), api.PascalStr(url))
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// ExecuteJavaScript 执行JS
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) ExecuteJavaScript(code, scriptUrl string, startLine int32) {
|
2023-02-26 19:14:49 +08:00
|
|
|
imports.Proc(internale_CEFFrame_ExecuteJavaScript).Call(m.Instance(), api.PascalStr(code), api.PascalStr(scriptUrl), uintptr(startLine))
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// IsValid 该Frame是否有效
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) IsValid() bool {
|
2023-02-26 19:14:49 +08:00
|
|
|
r1, _, _ := imports.Proc(internale_CEFFrame_IsValid).Call(m.Instance())
|
2022-12-03 21:56:51 +08:00
|
|
|
return api.GoBool(r1)
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// IsMain 是否为主Frame
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) IsMain() bool {
|
2023-02-26 19:14:49 +08:00
|
|
|
r1, _, _ := imports.Proc(internale_CEFFrame_IsMain).Call(m.Instance())
|
2022-12-03 21:56:51 +08:00
|
|
|
return api.GoBool(r1)
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
// IsFocused 是否已获取焦点
|
2022-10-04 13:21:05 +08:00
|
|
|
func (m *ICefFrame) IsFocused() bool {
|
2023-02-26 19:14:49 +08:00
|
|
|
r1, _, _ := imports.Proc(internale_CEFFrame_IsFocused).Call(m.Instance())
|
2022-12-03 21:56:51 +08:00
|
|
|
return api.GoBool(r1)
|
2022-10-04 13:21:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-26 19:14:49 +08:00
|
|
|
//// SendProcessMessageByIPC 发送进程消息
|
|
|
|
//func (m *ICefFrame) SendProcessMessageByIPC(targetProcess CefProcessId, processMessage *ipc.ICefProcessMessage) ProcessMessageError {
|
|
|
|
// if processMessage == nil || processMessage.Name == "" || processMessage.ArgumentList == nil {
|
|
|
|
// return PMErr_REQUIRED_PARAMS_IS_NULL
|
|
|
|
// } else if ipc.InternalIPCNameCheck(processMessage.Name) {
|
|
|
|
// return PMErr_NAME_CANNOT_USED
|
|
|
|
// }
|
|
|
|
// data := processMessage.ArgumentList.Package()
|
|
|
|
// r1 := _CEFFrame_SendProcessMessageByIPC(m.Browser.Identifier(), m.Id, processMessage.Name, targetProcess, int32(processMessage.ArgumentList.Size()), uintptr(unsafe.Pointer(&data[0])), uintptr(len(data)))
|
|
|
|
// return ProcessMessageError(r1)
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//func _CEFFrame_SendProcessMessageByIPC(browseId int32, frameId int64, name string, targetProcess CefProcessId, itemLength int32, data, dataLen uintptr) uintptr {
|
|
|
|
// r1, _, _ := imports.Proc(internale_CEFFrame_SendProcessMessageByIPC).Call(uintptr(browseId), uintptr(unsafe.Pointer(&frameId)), api.PascalStr(name), uintptr(targetProcess), uintptr(itemLength), data, dataLen)
|
|
|
|
// return r1
|
|
|
|
//}
|
2023-02-25 23:07:13 +08:00
|
|
|
|
2023-02-26 19:14:49 +08:00
|
|
|
// SendProcessMessage 发送进程消息
|
2023-02-25 23:07:13 +08:00
|
|
|
func (m *ICefFrame) SendProcessMessage(targetProcess CefProcessId, message *ICefProcessMessage) {
|
|
|
|
imports.Proc(internale_CEFFrame_SendProcessMessage).Call(m.Instance(), targetProcess.ToPtr(), message.Instance())
|
|
|
|
}
|
2023-02-26 19:14:49 +08:00
|
|
|
|
|
|
|
func (m *ICefFrame) LoadRequest(request *ICefRequest) {
|
|
|
|
if m == nil || request == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
imports.Proc(internale_CEFFrame_LoadRequest).Call(m.Instance(), request.Instance())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) Browser() *ICefBrowser {
|
|
|
|
var result uintptr
|
|
|
|
imports.Proc(internale_CEFFrame_Browser).Call(m.Instance(), uintptr(unsafe.Pointer(&result)))
|
|
|
|
return &ICefBrowser{instance: unsafe.Pointer(result)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) V8Context() *ICefV8Context {
|
|
|
|
var result uintptr
|
|
|
|
imports.Proc(internale_CEFFrame_GetV8Context).Call(m.Instance(), uintptr(unsafe.Pointer(&result)))
|
|
|
|
return &ICefV8Context{instance: unsafe.Pointer(result)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) Identifier() int64 {
|
|
|
|
var result uintptr
|
|
|
|
imports.Proc(internale_CEFFrame_Identifier).Call(m.Instance(), uintptr(unsafe.Pointer(&result)))
|
|
|
|
return int64(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) Name() string {
|
|
|
|
r1, _, _ := imports.Proc(internale_CEFFrame_Name).Call(m.Instance())
|
|
|
|
return api.GoStr(r1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) Url() string {
|
|
|
|
r1, _, _ := imports.Proc(internale_CEFFrame_Url).Call(m.Instance())
|
|
|
|
return api.GoStr(r1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ICefFrame) Parent() *ICefFrame {
|
|
|
|
var result uintptr
|
|
|
|
imports.Proc(internale_CEFFrame_Parent).Call(m.Instance(), uintptr(unsafe.Pointer(&result)))
|
|
|
|
return &ICefFrame{instance: unsafe.Pointer(result)}
|
|
|
|
}
|
2023-03-04 11:19:45 +08:00
|
|
|
|
2023-03-09 19:27:00 +08:00
|
|
|
func (m *ICefFrame) Free() {
|
2023-03-12 15:29:46 +08:00
|
|
|
if m.instance != nil {
|
|
|
|
m.base.Free(m.Instance())
|
|
|
|
m.instance = nil
|
|
|
|
}
|
2023-03-09 19:27:00 +08:00
|
|
|
}
|
|
|
|
|
2023-03-04 11:19:45 +08:00
|
|
|
// FrameRef -> *ICefFrame
|
|
|
|
var FrameRef frameRef
|
|
|
|
|
|
|
|
// frameRef
|
|
|
|
type frameRef uintptr
|
|
|
|
|
|
|
|
func (m *frameRef) UnWrap(data *ICefFrame) *ICefFrame {
|
|
|
|
var result uintptr
|
|
|
|
imports.Proc(internale_CEFFrameRef_UnWrap).Call(data.Instance(), uintptr(unsafe.Pointer(&result)))
|
2023-03-04 11:58:35 +08:00
|
|
|
data.instance = unsafe.Pointer(result)
|
|
|
|
return data
|
2023-03-04 11:19:45 +08:00
|
|
|
}
|