77
|
1 // This file (FrmAbout.cs) is a part of the IBBoard.WarFoundry.GUI.GTK project and is copyright 2010 IBBoard
|
|
2 //
|
|
3 // 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.
|
|
4
|
|
5 using System;
|
|
6 using Gtk;
|
|
7
|
|
8 namespace IBBoard.WarFoundry.GUI.GTK
|
|
9 {
|
|
10 public partial class FrmAbout : Gtk.Dialog
|
|
11 {
|
|
12 private static FrmAbout frm;
|
|
13
|
|
14 public static FrmAbout GetForm()
|
|
15 {
|
|
16 if (frm == null)
|
|
17 {
|
|
18 frm = new FrmAbout();
|
|
19 }
|
|
20
|
|
21 return frm;
|
|
22 }
|
|
23
|
|
24 private FrmAbout()
|
|
25 {
|
|
26 this.Build();
|
|
27 }
|
|
28
|
|
29 protected virtual void OkayClicked(object sender, System.EventArgs e)
|
|
30 {
|
|
31 Respond(ResponseType.Ok);
|
|
32 }
|
|
33 }
|
|
34 }
|
|
35
|