Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Side by Side Diff: sky/specs/pointer.md

Issue 877783008: Specs: improve a hyperlink to the keyboard.md spec in the pointer.md spec (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Pointer Events 1 Pointer Events
2 ============== 2 ==============
3 3
4 Scope 4 Scope
5 ----- 5 -----
6 6
7 The following input devices are supported by sky: 7 The following input devices are supported by sky:
8 - fingers on multitouch screens 8 - fingers on multitouch screens
9 - mice, including mouse wheels 9 - mice, including mouse wheels
10 - styluses on screens 10 - styluses on screens
11 - other devices that emulate mice (track pads, track balls) 11 - other devices that emulate mice (track pads, track balls)
12 - [Keyboard](keyboard.md) 12 - [keyboards and IMEs](keyboard.md)
13 13
14 The following input devices are not supported natively by sky, but can 14 The following input devices are not supported natively by sky, but can
15 be used by connecting directly to the mojo application servicing the 15 be used by connecting directly to the mojo application servicing the
16 relevant device: 16 relevant device:
17 - joysticks 17 - joysticks
18 - track balls that move focus (or raw data from track balls) 18 - track balls that move focus (or raw data from track balls)
19 - raw data from track pads (e.g. multitouch gestures) 19 - raw data from track pads (e.g. multitouch gestures)
20 - raw data from styluses that have their own absolute pads 20 - raw data from styluses that have their own absolute pads
21 - raw data from mice (e.g. to handle mouse capture in 3D games) 21 - raw data from mice (e.g. to handle mouse capture in 3D games)
22 22
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 477
478 final int wheel; 478 final int wheel;
479 final double delta; // revolutions (or fractions thereof) 479 final double delta; // revolutions (or fractions thereof)
480 final int pointer; 480 final int pointer;
481 final double x; // logical pixels 481 final double x; // logical pixels
482 final double y; // logical pixels 482 final double y; // logical pixels
483 483
484 bool get bubbles => false; 484 bool get bubbles => false;
485 } 485 }
486 ``` 486 ```
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698