mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 10:47:57 +08:00
26 lines
672 B
Go
26 lines
672 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
// CEF 浏览器窗口组件定义-非windows
|
|
package cef
|
|
|
|
// NewCefTray LCL窗口组件 非windows系统不支持CefTray
|
|
func (m *LCLBrowserWindow) NewCefTray(width, height int32, url string) ITray {
|
|
return nil
|
|
}
|
|
|
|
// NewCefTray VF窗口组件 非windows系统不支持CefTray
|
|
func (m *ViewsFrameworkBrowserWindow) NewCefTray(width, height int32, url string) ITray {
|
|
return nil
|
|
}
|