diff SimpleDialog.cs @ 39:35b88b848524

* Add simple dialog to add basic widgets to for use in WarFoundry
author IBBoard <dev@ibboard.co.uk>
date Tue, 18 Oct 2011 20:58:49 +0100
parents
children 7c15adc333ea
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SimpleDialog.cs	Tue Oct 18 20:58:49 2011 +0100
@@ -0,0 +1,27 @@
+//  This file (SimpleDialog.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;
+using Gtk;
+
+namespace IBBoard.GtkSharp
+{
+	/// <summary>
+	/// Simple dialog that takes a set of widgets and puts them in the dialog's VBox. The dialog is a convenience
+	/// for doing the steps manually for each dialog required.
+	/// </summary>
+	public partial class SimpleDialog : Dialog
+	{
+		public SimpleDialog(string title, Window parent, DialogFlags flags, params Bin[] widgets) : base(title, parent, flags)
+		{
+			this.AddButton("Ok", ResponseType.Ok);
+			this.Build();
+			foreach (Bin item in widgets)
+			{
+				VBox.PackEnd(item);
+				item.Show();
+			}
+		}
+	}
+}
+