Begin export file dialogs.
authorRichard Jones <rjones@redhat.com>
Wed, 23 Jun 2010 11:05:43 +0000 (07:05 -0400)
committerRichard Jones <rjones@redhat.com>
Mon, 28 Jun 2010 15:51:26 +0000 (16:51 +0100)
filetree.ml

index 3af820d..122320e 100644 (file)
@@ -490,15 +490,56 @@ and disk_usage_dialog tree path0 () =
 
 and export_archive_dialog tree path0 () =
   (* XXX NOT IMPL XXX *)
-  ()
+(*  let model, _, _, dev, _,_ = tree in
+  let row = model#get_iter (fst path0) in
+  let dir = get_pathname tree row in*)
+
+  let title = "Choose output file" in
+  let dlg = GWindow.file_chooser_dialog ~action:`SAVE ~title ~modal:true () in
+
+  (* Allow the user to select the output format. *)
+  let strings = ["tar.gz (compressed)"; "tar (uncompressed)"] in
+  let combo, _ = GEdit.combo_box_text ~strings ~active:0 () in
+  dlg#set_extra_widget (combo :> GObj.widget);
+
+  dlg#show ()
 
 and export_checksums_dialog tree path0 () =
   (* XXX NOT IMPL XXX *)
-  ()
+(*  let model, _, _, dev, _,_ = tree in
+  let row = model#get_iter (fst path0) in
+  let dir = get_pathname tree row in*)
+
+  let title = "Choose output file" in
+  let dlg = GWindow.file_chooser_dialog ~action:`SAVE ~title ~modal:true () in
+
+  (* Allow the user to select the output algorithm. *)
+  let strings =
+    ["crc"; "md5"; "sha1"; "sha224"; "sha256"; "sha384"; "sha512"] in
+  let combo, _ = GEdit.combo_box_text ~strings ~active:1 () in
+  dlg#set_extra_widget (combo :> GObj.widget);
+
+  dlg#show ()
 
 and export_list_dialog tree path0 () =
   (* XXX NOT IMPL XXX *)
-  ()
+(*  let model, _, _, dev, _,_ = tree in
+  let row = model#get_iter (fst path0) in
+  let dir = get_pathname tree row in*)
+
+  let title = "Choose output file" in
+  let dlg = GWindow.file_chooser_dialog ~action:`SAVE ~title ~modal:true () in
+
+  (* Notify that the list of strings is \0 separated. *)
+  let hbox =
+    let hbox = GPack.hbox () in
+    ignore (GMisc.image ~stock:`INFO ~packing:hbox#pack ());
+    let label = GMisc.label ~text:"The list of filenames is saved to a file with zero byte separators, to allow the full range of characters to be used in the names themselves." ~packing:hbox#pack () in
+    label#set_line_wrap true;
+    hbox in
+  dlg#set_extra_widget (hbox :> GObj.widget);
+
+  dlg#show ()
 
 and do_export_dialog tree path0 t =
   (* XXX NOT IMPL XXX *)