-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputconfig.go
More file actions
27 lines (24 loc) · 1.22 KB
/
inputconfig.go
File metadata and controls
27 lines (24 loc) · 1.22 KB
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
package os
// Code generated by aidlgen. DO NOT EDIT.
type InputConfig int32
const (
InputConfigDEFAULT InputConfig = 0
InputConfigNoInputChannel InputConfig = (1 << 0)
InputConfigNotVisible InputConfig = (1 << 1)
InputConfigNotFocusable InputConfig = (1 << 2)
InputConfigNotTouchable InputConfig = (1 << 3)
InputConfigPreventSplitting InputConfig = (1 << 4)
InputConfigDuplicateTouchToWallpaper InputConfig = (1 << 5)
InputConfigIsWallpaper InputConfig = (1 << 6)
InputConfigPauseDispatching InputConfig = (1 << 7)
InputConfigTrustedOverlay InputConfig = (1 << 8)
InputConfigWatchOutsideTouch InputConfig = (1 << 9)
InputConfigSLIPPERY InputConfig = (1 << 10)
InputConfigDisableUserActivity InputConfig = (1 << 11)
InputConfigDropInput InputConfig = (1 << 12)
InputConfigDropInputIfObscured InputConfig = (1 << 13)
InputConfigSPY InputConfig = (1 << 14)
InputConfigInterceptsStylus InputConfig = (1 << 15)
InputConfigCLONE InputConfig = (1 << 16)
InputConfigGlobalStylusBlocksTouch InputConfig = (1 << 17)
)