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.
56 lines
1.1 KiB
56 lines
1.1 KiB
using System;
|
|
using System.ComponentModel;
|
|
using Avalonia.Metadata;
|
|
|
|
namespace Avalonia.Input
|
|
{
|
|
[Flags]
|
|
public enum KeyModifiers
|
|
{
|
|
None = 0,
|
|
Alt = 1,
|
|
Control = 2,
|
|
Shift = 4,
|
|
Meta = 8,
|
|
}
|
|
|
|
[Flags]
|
|
public enum KeyStates
|
|
{
|
|
None = 0,
|
|
Down = 1,
|
|
Toggled = 2,
|
|
}
|
|
|
|
[Flags]
|
|
public enum RawInputModifiers
|
|
{
|
|
None = 0,
|
|
Alt = 1,
|
|
Control = 2,
|
|
Shift = 4,
|
|
Meta = 8,
|
|
|
|
LeftMouseButton = 16,
|
|
RightMouseButton = 32,
|
|
MiddleMouseButton = 64,
|
|
XButton1MouseButton = 128,
|
|
XButton2MouseButton = 256,
|
|
KeyboardMask = Alt | Control | Shift | Meta,
|
|
|
|
PenInverted = 512,
|
|
PenEraser = 1024,
|
|
PenBarrelButton = 2048
|
|
}
|
|
|
|
[NotClientImplementable]
|
|
public interface IKeyboardDevice : IInputDevice, INotifyPropertyChanged
|
|
{
|
|
IInputElement? FocusedElement { get; }
|
|
|
|
void SetFocusedElement(
|
|
IInputElement? element,
|
|
NavigationMethod method,
|
|
KeyModifiers modifiers);
|
|
}
|
|
}
|
|
|