mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 10:47:57 +08:00
34 lines
581 B
Go
34 lines
581 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
package cef
|
|
|
|
//显示标题栏
|
|
func (m *ViewsFrameworkBrowserWindow) ShowTitle() {
|
|
}
|
|
|
|
//隐藏标题栏
|
|
func (m *ViewsFrameworkBrowserWindow) HideTitle() {
|
|
|
|
}
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetDefaultInTaskBar() {
|
|
|
|
}
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetShowInTaskBar() {
|
|
|
|
}
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetNotInTaskBar() {
|
|
|
|
}
|