view FrmAbout.cs @ 93:e40d892a2298

Fixes #308: Make GTK# UI translatable * Move all remaining buttons to translatable buttons * Make the About dialog translatable (where appropriate) * Move to UTF-8 encoding in the XML to correctly handle copyright symbol * Switch About dialog to using Close button as per other apps
author IBBoard <dev@ibboard.co.uk>
date Fri, 31 Dec 2010 13:53:18 +0000
parents 9c9af2ce8c43
children 26e4525b49cf
line wrap: on
line source

//  This file (FrmAbout.cs) is a part of the IBBoard.WarFoundry.GUI.GTK project and is copyright 2010 IBBoard
// 
//  The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL 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;
using Gtk;
using IBBoard.GtkSharp.Translatable;

namespace IBBoard.WarFoundry.GUI.GTK
{
	public partial class FrmAbout : TranslatableDialog
	{
		private static FrmAbout frm;

		public static FrmAbout GetForm()
		{
			if (frm == null)
			{
				frm = new FrmAbout();
			}
			
			return frm;
		}

		private FrmAbout()
		{
			this.Build();
			Translate();
		}

		protected virtual void CloseClicked(object sender, System.EventArgs e)
		{
			Respond(ResponseType.Close);
		}		
	}
}