[ElmSharp] Fix SetNextFocusObject issue (#401)
[platform/core/csapi/tizenfx.git] / external / src / OpenTK / OpenTK / Input / ButtonState.cs
1  //
2  // The Open Toolkit Library License
3  //
4  // Copyright (c) 2006 - 2010 the Open Toolkit library.
5  //
6  // Permission is hereby granted, free of charge, to any person obtaining a copy
7  // of this software and associated documentation files (the "Software"), to deal
8  // in the Software without restriction, including without limitation the rights to
9  // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
10  // the Software, and to permit persons to whom the Software is furnished to do
11  // so, subject to the following conditions:
12  //
13  // The above copyright notice and this permission notice shall be included in all
14  // copies or substantial portions of the Software.
15  //
16  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18  // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21  // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22  // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23  // OTHER DEALINGS IN THE SOFTWARE.
24  //
25
26 namespace OpenTK.Input
27 {
28     /// <summary>
29     /// Enumerates possible mouse button states.
30     /// </summary>
31     public enum ButtonState
32     {
33         /// <summary>
34         /// Indicates that a mouse button is released.
35         /// </summary>
36         Released = 0,
37
38         /// <summary>
39         /// Indicates that a mouse button is pressed.
40         /// </summary>
41         Pressed = 1
42     }
43 }
44