energy/cef/types-menubutton.go
2023-07-04 11:21:53 +08:00

47 lines
1.2 KiB
Go

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
//
//----------------------------------------
package cef
import (
"github.com/energye/energy/v2/cef/internal/def"
"github.com/energye/energy/v2/common/imports"
"github.com/energye/energy/v2/consts"
"unsafe"
)
// MenuButtonRef -> ICefMenuButton
var MenuButtonRef menuButton
type menuButton uintptr
func (*menuButton) New() *ICefMenuButton {
var result uintptr
imports.Proc(def.MenuButtonRef_New).Call(uintptr(unsafe.Pointer(&result)))
if result != 0 {
return &ICefMenuButton{&ICefLabelButton{&ICefButton{&ICefView{instance: getInstance(result)}}}}
}
return nil
}
func (m *ICefMenuButton) ShowMenu(menuModel *ICefMenuModel, screenPoint TCefPoint, anchorPosition consts.TCefMenuAnchorPosition) {
if !m.IsValid() {
return
}
imports.Proc(def.MenuButton_ShowMenu).Call(m.Instance(), menuModel.Instance(), uintptr(unsafe.Pointer(&screenPoint)), uintptr(anchorPosition))
}
func (m *ICefMenuButton) TriggerMenu() {
if !m.IsValid() {
return
}
imports.Proc(def.MenuButton_TriggerMenu).Call(m.Instance())
}