Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MouseEvent.cs « Input « TextUICocoa « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f98aa6467792acca5bcc07e94c96346800b2c488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//

using AppKit;

namespace Microsoft.VisualStudio.Text.Editor
{
    /// <summary>
    /// A native <see cref="NSEvent"/> mouse input event that 
    /// allows for indicating that the event has been handled.
    /// </summary>
    public sealed class MouseEvent : InputEvent
    {
        internal MouseEvent(NSEvent @event) : base(@event)
        {
        }
    }
}