-
Notifications
You must be signed in to change notification settings - Fork 283
/
mousecursor.go
58 lines (52 loc) · 1.97 KB
/
mousecursor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package flutter
import (
"fmt"
"github.com/go-flutter-desktop/go-flutter/plugin"
"github.com/go-gl/glfw/v3.3/glfw"
)
const mousecursorChannelName = "flutter/mousecursor"
// mousecursorPlugin implements flutter.Plugin and handles method calls to the
// flutter/mousecursor channel.
type mousecursorPlugin struct {
window *glfw.Window
lastCursor *glfw.Cursor
}
var defaultMousecursorPlugin = &mousecursorPlugin{}
func (p *mousecursorPlugin) InitPlugin(messenger plugin.BinaryMessenger) error {
channel := plugin.NewMethodChannel(messenger, mousecursorChannelName, plugin.StandardMethodCodec{})
channel.HandleFuncSync("activateSystemCursor", p.handleActivateSystemCursor)
return nil
}
func (p *mousecursorPlugin) InitPluginGLFW(window *glfw.Window) error {
p.window = window
return nil
}
func (p *mousecursorPlugin) handleActivateSystemCursor(arguments interface{}) (reply interface{}, err error) {
args := arguments.(map[interface{}]interface{})
var cursor *glfw.Cursor
if args["kind"] == "none" {
p.window.SetInputMode(glfw.CursorMode, glfw.CursorHidden)
} else {
p.window.SetInputMode(glfw.CursorMode, glfw.CursorNormal)
}
switch kind := args["kind"]; {
case kind == "none" || kind == "basic":
// nil cursor resets to standard arrow cursor
case kind == "forbidden" || kind == "grab" || kind == "grabbing":
// nil cursor resets to standard arrow cursor
// go-gl GLFW currently (latest tagged v3.3 version) has no cursors for "forbidden", "grab" and "grabbing"
// TODO: Wait for https://github.com/glfw/glfw/commit/7dbdd2e6a5f01d2a4b377a197618948617517b0e to appear in go-gl GLFW and implement the "forbidden" cursor
case kind == "click":
cursor = glfw.CreateStandardCursor(glfw.HandCursor)
case kind == "text":
cursor = glfw.CreateStandardCursor(glfw.IBeamCursor)
default:
return nil, fmt.Errorf("cursor kind %s not implemented", args["kind"])
}
p.window.SetCursor(cursor)
if p.lastCursor != nil {
p.lastCursor.Destroy()
}
p.lastCursor = cursor
return nil, nil
}