1 Star 0 Fork 0

yangzheng/walk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mouseevent.go 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
Alexander Neumann 提交于 2019-11-13 14:46 . *Event: Add Once method
// Copyright 2011 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"github.com/lxn/win"
)
type MouseButton int
const (
LeftButton MouseButton = win.MK_LBUTTON
RightButton MouseButton = win.MK_RBUTTON
MiddleButton MouseButton = win.MK_MBUTTON
)
type mouseEventHandlerInfo struct {
handler MouseEventHandler
once bool
}
// MouseEventHandler is called for mouse events. x and y are measured in native pixels.
type MouseEventHandler func(x, y int, button MouseButton)
type MouseEvent struct {
handlers []mouseEventHandlerInfo
}
func (e *MouseEvent) Attach(handler MouseEventHandler) int {
handlerInfo := mouseEventHandlerInfo{handler, false}
for i, h := range e.handlers {
if h.handler == nil {
e.handlers[i] = handlerInfo
return i
}
}
e.handlers = append(e.handlers, handlerInfo)
return len(e.handlers) - 1
}
func (e *MouseEvent) Detach(handle int) {
e.handlers[handle].handler = nil
}
func (e *MouseEvent) Once(handler MouseEventHandler) {
i := e.Attach(handler)
e.handlers[i].once = true
}
type MouseEventPublisher struct {
event MouseEvent
}
func (p *MouseEventPublisher) Event() *MouseEvent {
return &p.event
}
// Publish publishes mouse event. x and y are measured in native pixels.
func (p *MouseEventPublisher) Publish(x, y int, button MouseButton) {
for i, h := range p.event.handlers {
if h.handler != nil {
h.handler(x, y, button)
if h.once {
p.event.Detach(i)
}
}
}
}
func MouseWheelEventDelta(button MouseButton) int {
return int(int32(button) >> 16)
}
func MouseWheelEventKeyState(button MouseButton) int {
return int(int32(button) & 0xFFFF)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xtyzheng/walk.git
git@gitee.com:xtyzheng/walk.git
xtyzheng
walk
walk
master

搜索帮助