Control the mouse and keyboard Golang?

前端 未结 3 757
长发绾君心
长发绾君心 2021-02-14 02:40

How would one go about controlling retrieving/setting the position of the mouse and triggier keyboard events on the operating system/X11 level? This is similar to functionality

3条回答
  •  不知归路
    2021-02-14 03:25

    There are lots of ways to tackle this.

    The project that appears closest to what you describe is "ui"

    The next level up would be to use one of the go bindings that calls SDL, which might be easier.

    Higher up the stack would be a toolkit like GTK, QT, FLTK, (or even X11 as BurntSushi5 mentioned, but I wouldn't recommend it.) Just search github for the toolkit and select by language.

提交回复
热议问题