1 Star 0 Fork 0

程序员锡哥/walk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mouseevent.go 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
// 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 MouseEventHandler func(x, y int, button MouseButton)
type MouseEvent struct {
handlers []MouseEventHandler
}
func (e *MouseEvent) Attach(handler MouseEventHandler) int {
for i, h := range e.handlers {
if h == nil {
e.handlers[i] = handler
return i
}
}
e.handlers = append(e.handlers, handler)
return len(e.handlers) - 1
}
func (e *MouseEvent) Detach(handle int) {
e.handlers[handle] = nil
}
type MouseEventPublisher struct {
event MouseEvent
}
func (p *MouseEventPublisher) Event() *MouseEvent {
return &p.event
}
func (p *MouseEventPublisher) Publish(x, y int, button MouseButton) {
for _, handler := range p.event.handlers {
if handler != nil {
handler(x, y, button)
}
}
}
func MouseWheelEventDelta(button MouseButton) int {
return int(int32(button) >> 16)
}
func MouseWheelEventKeyState(button MouseButton) int {
return int(int32(button) & 0xFFFF)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/msgy/walk.git
git@gitee.com:msgy/walk.git
msgy
walk
walk
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385