30
|
1 // This file (GtkSharp.cs) is a part of the IBBoard.GtkSharp project and is copyright 2011 IBBoard
|
|
2 //
|
|
3 // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
|
|
4
|
|
5 using System;
|
|
6
|
|
7 namespace IBBoard.GtkSharp
|
|
8 {
|
|
9 //Define mouse buttons as constants according to documentation
|
|
10 public enum MouseButton
|
|
11 {
|
|
12 Left = 1,
|
|
13 Middle = 2,
|
|
14 Right = 3
|
|
15 }
|
|
16 }
|
|
17
|