mirror of
https://gitee.com/energye/energy.git
synced 2024-12-15 01:41:49 +08:00
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package main
|
||
|
||
import (
|
||
"github.com/energye/energy/v2/cef"
|
||
"github.com/energye/energy/v2/cef/process"
|
||
"github.com/energye/energy/v2/common"
|
||
)
|
||
|
||
func main() {
|
||
// 进程类型获取
|
||
// 通过命令行参数 type 区分
|
||
process.Args.Print()
|
||
if process.Args.ProcessType() == process.PT_MAIN {
|
||
// 主进程
|
||
println("main process")
|
||
} else if process.Args.ProcessType() == process.PT_GPU {
|
||
println("gpu process")
|
||
} else if process.Args.ProcessType() == process.PT_UTILITY {
|
||
println("utility process")
|
||
} else if process.Args.ProcessType() == process.PT_RENDERER {
|
||
// 渲染进程
|
||
println("renderer process")
|
||
}
|
||
process.FrameId()
|
||
//全局初始化 每个应用都必须调用的
|
||
cef.GlobalInit(nil, nil)
|
||
//创建应用
|
||
cefApp := cef.NewApplication()
|
||
//指定一个URL地址,或本地html文件目录
|
||
cef.BrowserWindow.Config.Url = "https://energy.yanghy.cn"
|
||
if common.IsLinux() && cefApp.IsUIGtk3() {
|
||
cef.BrowserWindow.Config.IconFS = "resources/icon.png"
|
||
} else {
|
||
cef.BrowserWindow.Config.IconFS = "resources/icon.ico"
|
||
}
|
||
//运行应用
|
||
cef.Run(cefApp)
|
||
}
|