2023-01-07 16:59:27 +08:00
|
|
|
//----------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
2023-02-19 23:21:47 +08:00
|
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2023-01-07 16:59:27 +08:00
|
|
|
//
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
//go:build windows
|
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package cef
|
|
|
|
|
|
|
|
import (
|
2023-02-12 17:28:31 +08:00
|
|
|
"github.com/energye/golcl/lcl"
|
2023-01-07 16:59:27 +08:00
|
|
|
"github.com/energye/golcl/lcl/win"
|
|
|
|
)
|
|
|
|
|
2023-02-12 17:28:31 +08:00
|
|
|
// 显示标题栏
|
2023-01-07 21:29:08 +08:00
|
|
|
func (m *ViewsFrameworkBrowserWindow) ShowTitle() {
|
2023-02-12 17:28:31 +08:00
|
|
|
m.WindowProperty().EnableHideCaption = false
|
|
|
|
//handle := m.WindowComponent().WindowHandle()
|
|
|
|
//win.SetWindowLong(handle.ToPtr(), win.GWL_STYLE, uintptr(win.GetWindowLong(handle.ToPtr(), win.GWL_STYLE)|win.WS_CAPTION))
|
|
|
|
//win.SetWindowPos(handle.ToPtr(), 0, 0, 0, 0, 0, win.SWP_NOSIZE|win.SWP_NOMOVE|win.SWP_NOZORDER|win.SWP_NOACTIVATE|win.SWP_FRAMECHANGED)
|
|
|
|
m.WindowComponent().SetOnIsFrameless(func(sender lcl.IObject, window *ICefWindow, aResult *bool) {
|
|
|
|
*aResult = false
|
|
|
|
})
|
2023-01-07 21:29:08 +08:00
|
|
|
}
|
|
|
|
|
2023-02-12 17:28:31 +08:00
|
|
|
// 隐藏标题栏
|
2023-01-07 16:59:27 +08:00
|
|
|
func (m *ViewsFrameworkBrowserWindow) HideTitle() {
|
2023-02-12 17:28:31 +08:00
|
|
|
m.WindowProperty().EnableHideCaption = true
|
|
|
|
//handle := m.WindowComponent().WindowHandle()
|
|
|
|
//win.SetWindowLong(handle.ToPtr(), win.GWL_STYLE, uintptr(win.GetWindowLong(handle.ToPtr(), win.GWL_STYLE)&^win.WS_CAPTION))
|
|
|
|
//win.SetWindowPos(handle.ToPtr(), 0, 0, 0, 0, 0, win.SWP_NOSIZE|win.SWP_NOMOVE|win.SWP_NOZORDER|win.SWP_NOACTIVATE|win.SWP_FRAMECHANGED)
|
|
|
|
m.WindowComponent().SetOnIsFrameless(func(sender lcl.IObject, window *ICefWindow, aResult *bool) {
|
|
|
|
*aResult = true
|
|
|
|
})
|
2023-01-07 16:59:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetDefaultInTaskBar() {
|
|
|
|
m.SetShowInTaskBar()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetShowInTaskBar() {
|
|
|
|
handle := m.WindowComponent().WindowHandle()
|
|
|
|
win.ShowWindow(handle.ToPtr(), win.SW_SHOW)
|
|
|
|
win.SetWindowLong(handle.ToPtr(), win.GWL_EXSTYLE, win.WS_EX_APPWINDOW)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ViewsFrameworkBrowserWindow) SetNotInTaskBar() {
|
|
|
|
handle := m.WindowComponent().WindowHandle()
|
|
|
|
win.ShowWindow(handle.ToPtr(), win.SW_HIDE)
|
2023-01-07 21:29:08 +08:00
|
|
|
win.SetWindowLong(handle.ToPtr(), win.GWL_EXSTYLE, win.WS_EX_TOOLWINDOW)
|
2023-01-07 16:59:27 +08:00
|
|
|
}
|