view GtkSharp.cs @ 34:ef1cf7814a6b

* Add ATK# as a dependency, which seems to be necessary as of openSUSE 11.4 (may be Mono 2.10, may be newer GTK#) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 03 Apr 2011 13:11:00 +0000
parents c9e1ad81afbe
children
line wrap: on
line source

//  This file (GtkSharp.cs) is a part of the IBBoard.GtkSharp project and is copyright 2011 IBBoard
// 
// // 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.

using System;

namespace IBBoard.GtkSharp
{
	//Define mouse buttons as constants according to documentation
	public enum	MouseButton
	{
		Left = 1,
		Middle = 2,
		Right = 3
	}
}