2022-12-07 15:50:59 +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-12-07 15:50:59 +08:00
|
|
|
|
//
|
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
|
// CEFWindowParent组件
|
2022-10-26 20:31:39 +08:00
|
|
|
|
package cef
|
|
|
|
|
|
|
|
|
|
import (
|
2022-11-02 12:47:47 +08:00
|
|
|
|
"github.com/energye/energy/common"
|
2022-10-26 20:31:39 +08:00
|
|
|
|
"github.com/energye/energy/consts"
|
|
|
|
|
"github.com/energye/golcl/lcl"
|
2023-01-23 20:45:33 +08:00
|
|
|
|
"github.com/energye/golcl/lcl/types"
|
2022-10-26 20:31:39 +08:00
|
|
|
|
)
|
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
|
// ITCefWindowParent 接口定义
|
2023-01-04 18:41:48 +08:00
|
|
|
|
type ITCefWindowParent interface {
|
2022-10-26 20:31:39 +08:00
|
|
|
|
lcl.IWinControl
|
2023-02-20 14:42:17 +08:00
|
|
|
|
Type() consts.TCefWindowHandleType // 组件类型, Windows TCEFWindowParent 组件,MacOSX, Linux TCEFLinkedWindowParent 组件
|
|
|
|
|
SetChromium(chromium IChromium, tag int32) // 设置 IChromium, 只 TCEFLinkedWindowParent 有效
|
|
|
|
|
UpdateSize() // 更新组件大小
|
|
|
|
|
HandleAllocated() bool // 处理所有
|
|
|
|
|
CreateHandle() // 创建句柄
|
|
|
|
|
SetOnEnter(fn lcl.TNotifyEvent) // 进入事件
|
|
|
|
|
SetOnExit(fn lcl.TNotifyEvent) // 退出事件
|
|
|
|
|
DestroyChildWindow() bool // 销毁子窗口
|
|
|
|
|
Free() // 释放
|
|
|
|
|
Handle() types.HWND // 组件句柄
|
|
|
|
|
Name() string // 获取组件名称
|
|
|
|
|
SetName(value string) // 设置组件名称
|
|
|
|
|
SetParent(value lcl.IWinControl) // 设置控件父容器
|
|
|
|
|
Align() types.TAlign // 获取控件自动调整
|
|
|
|
|
SetAlign(value types.TAlign) // 设置控件自动调整
|
|
|
|
|
Anchors() types.TAnchors // 获取四个角位置的锚点
|
|
|
|
|
SetAnchors(value types.TAnchors) // 设置四个角位置的锚点
|
|
|
|
|
Visible() bool // 获取控件可视
|
|
|
|
|
SetVisible(value bool) // 设置控件可视
|
|
|
|
|
Enabled() bool // 获取是否启用
|
|
|
|
|
SetEnabled(value bool) // 设置是否启用
|
|
|
|
|
Left() int32 // 获取左边距
|
|
|
|
|
SetLeft(value int32) // 设置左边距
|
|
|
|
|
Top() int32 // 获取上边距
|
|
|
|
|
SetTop(value int32) // 设置上边距
|
|
|
|
|
Width() int32 // 获取宽度
|
|
|
|
|
SetWidth(value int32) // 设置宽度
|
|
|
|
|
Height() int32 // 获取高度
|
|
|
|
|
SetHeight(value int32) // 设置高度
|
|
|
|
|
BoundsRect() (result types.TRect) // 获取矩形边界
|
|
|
|
|
SetBoundsRect(value types.TRect) // 设置矩形边界
|
2022-10-26 20:31:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-20 14:42:17 +08:00
|
|
|
|
// NewCEFWindow 创建CEFWindowParent
|
|
|
|
|
//
|
|
|
|
|
// # Windows return TCEFWindowParent
|
|
|
|
|
//
|
|
|
|
|
// MacOSX, Linux return TCEFLinkedWindowParent
|
2023-01-04 18:41:48 +08:00
|
|
|
|
func NewCEFWindow(owner lcl.IComponent) ITCefWindowParent {
|
2022-11-02 12:47:47 +08:00
|
|
|
|
if common.IsWindows() {
|
2022-10-26 20:31:39 +08:00
|
|
|
|
return NewCEFWindowParent(owner)
|
|
|
|
|
} else {
|
|
|
|
|
return NewCEFLinkedWindowParent(owner)
|
|
|
|
|
}
|
|
|
|
|
}
|