csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
3.1 KiB
82 lines
3.1 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Avalonia.Input.Raw;
|
|
using Avalonia.VisualTree;
|
|
|
|
namespace Avalonia.Input
|
|
{
|
|
/// <summary>
|
|
/// Handles raw touch events
|
|
/// <remarks>
|
|
/// This class is supposed to be used on per-toplevel basis, don't use a shared one
|
|
/// </remarks>
|
|
/// </summary>
|
|
public class TouchDevice : IInputDevice
|
|
{
|
|
Dictionary<long, Pointer> _pointers = new Dictionary<long, Pointer>();
|
|
|
|
static InputModifiers GetModifiers(InputModifiers modifiers, bool left)
|
|
{
|
|
var mask = (InputModifiers)0x7fffffff ^ InputModifiers.LeftMouseButton ^ InputModifiers.MiddleMouseButton ^
|
|
InputModifiers.RightMouseButton;
|
|
modifiers &= mask;
|
|
if (left)
|
|
modifiers |= InputModifiers.LeftMouseButton;
|
|
return modifiers;
|
|
}
|
|
|
|
public void ProcessRawEvent(RawInputEventArgs ev)
|
|
{
|
|
var args = (RawTouchEventArgs)ev;
|
|
if (!_pointers.TryGetValue(args.TouchPointId, out var pointer))
|
|
{
|
|
if (args.Type == RawPointerEventType.TouchEnd)
|
|
return;
|
|
var hit = args.Root.InputHitTest(args.Position);
|
|
|
|
_pointers[args.TouchPointId] = pointer = new Pointer(Pointer.GetNextFreeId(),
|
|
PointerType.Touch, _pointers.Count == 0);
|
|
pointer.Capture(hit);
|
|
}
|
|
|
|
|
|
var target = pointer.Captured ?? args.Root;
|
|
if (args.Type == RawPointerEventType.TouchBegin)
|
|
{
|
|
target.RaiseEvent(new PointerPressedEventArgs(target, pointer,
|
|
args.Root, args.Position, ev.Timestamp,
|
|
new PointerPointProperties(GetModifiers(args.InputModifiers, pointer.IsPrimary)),
|
|
GetModifiers(args.InputModifiers, false)));
|
|
}
|
|
|
|
if (args.Type == RawPointerEventType.TouchEnd)
|
|
{
|
|
_pointers.Remove(args.TouchPointId);
|
|
using (pointer)
|
|
{
|
|
target.RaiseEvent(new PointerReleasedEventArgs(target, pointer,
|
|
args.Root, args.Position, ev.Timestamp,
|
|
new PointerPointProperties(GetModifiers(args.InputModifiers, false)),
|
|
GetModifiers(args.InputModifiers, pointer.IsPrimary),
|
|
pointer.IsPrimary ? MouseButton.Left : MouseButton.None));
|
|
}
|
|
}
|
|
if (args.Type == RawPointerEventType.TouchCancel)
|
|
{
|
|
_pointers.Remove(args.TouchPointId);
|
|
using (pointer)
|
|
pointer.Capture(null);
|
|
}
|
|
|
|
if (args.Type == RawPointerEventType.TouchUpdate)
|
|
{
|
|
var modifiers = GetModifiers(args.InputModifiers, pointer.IsPrimary);
|
|
target.RaiseEvent(new PointerEventArgs(InputElement.PointerMovedEvent, target, pointer, args.Root,
|
|
args.Position, ev.Timestamp, new PointerPointProperties(modifiers), modifiers));
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|