view Translatable/TranslatableWindowWithActions.cs @ 36:150e2b080a3f

* Add standardised .hgignore for C# projects
author IBBoard <dev@ibboard.co.uk>
date Sat, 24 Sep 2011 11:58:12 +0100
parents 70c46caee508
children
line wrap: on
line source

//  This file (TranslatableWindowWithActions.cs) is a part of the IBBoard.GtkSharp project and is copyright 2010 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.Collections.Generic;
using Gtk;
using System;

namespace IBBoard.GtkSharp.Translatable
{
	public abstract class TranslatableWindowWithActions : TranslatableWindow, ITranslatableWithActions
	{

		public TranslatableWindowWithActions(IntPtr ptr) : base(ptr)
		{
			//Do nothing extra
		}

		public TranslatableWindowWithActions(Gtk.WindowType windowType) : base(windowType)
		{
			//Do nothing extra
		}

		public TranslatableWindowWithActions(string windowTitle) : base(windowTitle)
		{
			//Do nothing extra
		}

		public abstract ICollection<Gtk.Action> Actions
		{
			get;
		}
	}
}