X-Git-Url: http://wagnertech.de/git?p=mcloud.git;a=blobdiff_plain;f=mCloudGui%2FDirectorySelectionWin.cs;fp=mCloudGui%2FDirectorySelectionWin.cs;h=70d67b663a30bc4e3f2ac7c26ef07c1de857d16f;hp=0000000000000000000000000000000000000000;hb=a82796d64877d73d6fd2ee86140ee788b16d402e;hpb=fd98c53230d650456bb9f0114a93d17280460809 diff --git a/mCloudGui/DirectorySelectionWin.cs b/mCloudGui/DirectorySelectionWin.cs new file mode 100644 index 0000000..70d67b6 --- /dev/null +++ b/mCloudGui/DirectorySelectionWin.cs @@ -0,0 +1,27 @@ +using System; +using Gtk; + +using mCloudAwk; + +namespace mCloudGui +{ + public partial class DirectorySelectionWin : Gtk.Window + { + private IMCloudAwk MCA; + + public DirectorySelectionWin () : + base(Gtk.WindowType.Toplevel) + { + this.Build (); + this.MCA = new MCloudMgr (); + } + protected void OnDeleteEvent (object sender, DeleteEventArgs a) + { + MCA.Dispose (); + Application.Quit (); + a.RetVal = true; + } + + } +} +