mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
UWP: More mouse events
This commit is contained in:
parent
de9c84f686
commit
112221f046
6 changed files with 64 additions and 6 deletions
|
@ -62,6 +62,9 @@ public:
|
|||
void MouseUp(float x, float y, capi::CMouseButton b) {
|
||||
capi::mouse_up(x, y, b);
|
||||
}
|
||||
void MouseMove(float x, float y) {
|
||||
capi::mouse_move(x, y);
|
||||
}
|
||||
|
||||
void Reload() { capi::reload(); }
|
||||
void Stop() { capi::stop(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue