From 4066ba83557eb2cf045b1ed3a9a0cfeb24195cc1 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 17 Feb 2014 20:32:42 +0100 Subject: [PATCH] [Input] Added KeyModifiers enumeration KeyModifiers are represented as a bitwise combination of the Alt, Control and Shift keys. --- Source/OpenTK/Input/KeyModifiers.cs | 57 +++++++++++++++++++++++++++++ Source/OpenTK/OpenTK.csproj | 1 + 2 files changed, 58 insertions(+) create mode 100644 Source/OpenTK/Input/KeyModifiers.cs diff --git a/Source/OpenTK/Input/KeyModifiers.cs b/Source/OpenTK/Input/KeyModifiers.cs new file mode 100644 index 00000000..dd47244f --- /dev/null +++ b/Source/OpenTK/Input/KeyModifiers.cs @@ -0,0 +1,57 @@ +#region License +// +// HatPosition.cs +// +// Author: +// Stefanos A. +// +// Copyright (c) 2006-2014 Stefanos Apostolopoulos +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +#endregion + +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenTK.Input +{ + /// + /// Enumerates modifier keys. + /// + [Flags] + public enum KeyModifiers : byte + { + /// + /// The alt key modifier (option on Mac). + /// + Alt = 1 << 0, + + /// + /// The control key modifier. + /// + Control = 1 << 1, + + /// + /// The shift key modifier. + /// + Shift = 1 << 2 + } +} diff --git a/Source/OpenTK/OpenTK.csproj b/Source/OpenTK/OpenTK.csproj index fc6f41d8..921c9135 100644 --- a/Source/OpenTK/OpenTK.csproj +++ b/Source/OpenTK/OpenTK.csproj @@ -801,6 +801,7 @@ +