Implement open disk and connect to URI menu options.
[guestfs-browser.git] / menu_open_disk.ml
diff --git a/menu_open_disk.ml b/menu_open_disk.ml
new file mode 100644 (file)
index 0000000..31cbb9f
--- /dev/null
@@ -0,0 +1,41 @@
+(* Guestfs Browser.
+ * Copyright (C) 2011 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *)
+
+open Utils
+
+open Printf
+
+let open_disk_dialog w () =
+  debug "open disk dialog";
+  let title = "Open disk image directly" in
+
+  let d = GWindow.file_chooser_dialog ~action:`OPEN ~title ~modal:true () in
+  d#add_button_stock `CANCEL `CANCEL;
+  d#add_select_button_stock `OPEN `OPEN;
+
+  match d#run () with
+  | `DELETE_EVENT | `CANCEL ->
+      d#destroy ()
+  | `OPEN ->
+      match d#filename with
+      | None -> ()
+      | Some localfile ->
+          d#destroy ();
+
+          (* Open the disk image. *)
+          w#open_disk_images [localfile, None]