8 changed files with 56 additions and 13 deletions
@ -0,0 +1,14 @@ |
|||||
|
// -----------------------------------------------------------------------
|
||||
|
// <copyright file="IMouseDevice.cs" company="Steven Kirk">
|
||||
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
||||
|
// </copyright>
|
||||
|
// -----------------------------------------------------------------------
|
||||
|
|
||||
|
namespace Perspex.Input |
||||
|
{ |
||||
|
using System; |
||||
|
|
||||
|
public interface IMouseDevice : IPointerDevice |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,17 @@ |
|||||
|
// -----------------------------------------------------------------------
|
||||
|
// <copyright file="IPointerDevice.cs" company="Steven Kirk">
|
||||
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
||||
|
// </copyright>
|
||||
|
// -----------------------------------------------------------------------
|
||||
|
|
||||
|
namespace Perspex.Input |
||||
|
{ |
||||
|
using System; |
||||
|
|
||||
|
public interface IPointerDevice : IInputDevice |
||||
|
{ |
||||
|
IVisual Captured { get; } |
||||
|
|
||||
|
IDisposable Capture(IVisual visual); |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue