energy/cef/cef-browser-window-views-framework_other.go
2023-01-25 09:31:07 +08:00

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() {
}