monodev
[mcloud.git] / mCloudGui / DirectorySelectionWin.cs
1 using System;
2 using Gtk;
3
4 using mCloudAwk;
5
6 namespace mCloudGui
7 {
8         public partial class DirectorySelectionWin : Gtk.Window
9         {
10                 private IMCloudAwk MCA;
11
12                 public DirectorySelectionWin () : 
13                                 base(Gtk.WindowType.Toplevel)
14                 {
15                         this.Build ();
16                         this.MCA = new MCloudMgr ();
17                 }
18                 protected void OnDeleteEvent (object sender, DeleteEventArgs a)
19                 {
20                         MCA.Dispose ();
21                         Application.Quit ();
22                         a.RetVal = true;
23                 }
24
25         }
26 }
27