-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vasiliy Tolstov <[email protected]>
- Loading branch information
Showing
19 changed files
with
2,078 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package vnc | ||
|
||
// Button represents a mask of pointer presses/releases. | ||
type Button uint8 | ||
|
||
//go:generate stringer -type=Button | ||
|
||
// All available button mask components. | ||
const ( | ||
BtnLeft Button = 1 << iota | ||
BtnMiddle | ||
BtnRight | ||
BtnFour | ||
BtnFive | ||
BtnSix | ||
BtnSeven | ||
BtnEight | ||
BtnNone Button = 0 | ||
) | ||
|
||
func Mask(button Button) uint8 { | ||
return uint8(button) | ||
} |
Oops, something went wrong.