view FrmAbout.cs @ 77:68804784bf6f

Re #86: Complete initial GTK# UI * Add About dialog * Make sure app builds as "WarFoundry-GTK.exe" * Move all UI components to IBBoard.WarFoundry.GUI.GTK namespace
author IBBoard <dev@ibboard.co.uk>
date Sat, 18 Dec 2010 16:42:51 +0000
parents
children 9c9af2ce8c43
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;

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

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

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

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