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