]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/matitaAutoGui.ml
updating the structures for sorts
[helm.git] / helm / software / matita / matitaAutoGui.ml
index e3a5bff187d758d8a674a0a08617961bdf478fcd..588dc5fecd09363f7de821a80eecb261ed083624 100644 (file)
  *)
 
 type status = 
-  Cic.context * (Cic.term * (int * Cic.term) list) list * Cic.term list *
-  Cic.term list
+  Cic.context * (int * Cic.term * bool * int * (int * Cic.term Lazy.t) list) list * 
+  (int * Cic.term * int) list *
+  Cic.term Lazy.t list
 let fake_goal = Cic.Implicit None;;
 let fake_candidates = [];;
 
 let start = ref 0;;
 let len = ref 10;;
 
-let pp c t =
-  let names = List.map (function None -> None | Some (n,_) -> Some n) c in
+
+let font_size = ref 
+  (Helm_registry.get_opt_default Helm_registry.int
+    ~default:BuildTimeConf.default_font_size "matita.font_size")
+;;
+
+let set_font_size n = font_size := n;;
+
+let pp ?(size=(!font_size)) c t =
   let t = 
     ProofEngineReduction.replace 
       ~equality:(fun a b -> match b with Cic.Meta _ -> true | _ -> false) 
       ~what:[Cic.Rel 1] ~with_what:[Cic.Implicit None] ~where:t
   in
-  CicPp.pp t names
+  (if size > 0 then "<span font_desc=\""^string_of_int size^"\">" else "") ^
+  (MatitaGtkMisc.escape_pango_markup
+    (ApplyTransformation.txt_of_cic_term ~map_unicode_to_tex:false
+      max_int [] c t))^
+  (if size > 0 then "</span>" else "")
 ;;
 let pp_goal context x = 
   if x == fake_goal then "" else pp context x
 ;;
-let pp_candidate context x = pp context x
+let pp_candidate context x = pp context (Lazy.force x)
+let pp_candidate_tip context x = pp ~size:0 context (Lazy.force x)
+let pp_candidate_type context x = 
+  try 
+    let ty, _ = 
+      CicTypeChecker.type_of_aux' [] ~subst:[] 
+       context (Lazy.force x) CicUniv.oblivion_ugraph
+    in
+      pp ~size:0 context ty
+  with CicUtil.Meta_not_found _ ->  pp ~size:0 context (Lazy.force x)
+;;
 
 let sublist start len l = 
   let rec aux pos len = function
     | [] when pos < start -> aux (pos+1) len []
-    | [] when len > 0 -> (fake_goal, fake_candidates) :: aux (pos+1) (len-1) [] 
+    | [] when len > 0 -> 
+          (0,fake_goal, false, 0, fake_candidates) :: aux (pos+1) (len-1) [] 
     | [] (* when len <= 0 *) -> []
     | he::tl when pos < start -> aux (pos+1) len tl
     | he::tl when pos >= start && len > 0 -> he::aux (pos+1) (len-1) tl
@@ -59,86 +82,119 @@ let sublist start len l =
   aux 0 len l
 ;;
 
-let cell_of_candidate context ?(active=false) g id c = 
+let cell_of_candidate height context ?(active=false) g id c = 
   let tooltip = GData.tooltips () in (* should be only one isn't it? *)
-  let button = 
-    GButton.button 
-      ~label:(pp_candidate context c(* ^ " - " ^ string_of_int id*)) () 
-  in
+  let button = GButton.button () in
+  let l = GMisc.label ~markup:(pp_candidate context c) () in
+  button#add l#coerce;
+  button#misc#set_size_request ~height ();
   if active then
     button#misc#set_sensitive false;
   let text = 
-    "Follow computation of "^pp_candidate context c^" on "^pp_goal context g
+    "Follow/Prune computation of\n"^pp_candidate_tip context c^": "^
+    pp_candidate_type context c
   in
   tooltip#set_tip ~text (button :> GObj.widget);
   ignore(button#connect#clicked 
-    (fun _ -> HLog.warn (string_of_int id); Auto.give_hint id));
+    (fun _ -> 
+      let menu = GMenu.menu () in
+      let follow = GMenu.menu_item ~label:"Follow" () in
+      let prune = GMenu.menu_item ~label:"Prune" () in
+      ignore (follow#connect#activate 
+        (fun _ -> HLog.warn (string_of_int id); Auto.give_hint id));
+      ignore (prune#connect#activate 
+        (fun _ -> HLog.warn (string_of_int id); Auto.give_prune_hint id));
+      menu#append follow;
+      menu#append prune;
+      menu#popup 0 (GtkMain.Main.get_current_event_time ())));
   button
 ;;
-let cell_of_goal win_width context goal = 
-  GMisc.label ~text:(pp_goal context goal) ~xalign:0.0 ()
+let cell_of_goal height win_width context goal = 
+  GMisc.label 
+    ~markup:(pp_goal context goal) ~xalign:0.0 
+    ~width:(min (win_width * 30 / 100) 500) 
+    ~line_wrap:false
+    ~ellipsize:`END
+    ~height
+    ()
 ;;
-let cell_of_int n = 
-  GMisc.label ~text:(string_of_int n) 
-    ~line_wrap:true ~justify:`RIGHT ()
+let cell_of_row_header height n k id = 
+  GMisc.label
+    ~markup:("<span stretch=\"ultracondensed\">" ^ string_of_int n ^ "<sub>(" ^
+             string_of_int id ^ "|" ^ string_of_int k ^ ")</sub></span>") 
+    ~line_wrap:true ~justify:`LEFT ~height ~width:80 ()
 ;;
-let cell_of_candidates context goal cads = 
+let cell_of_candidates height grey context goal cads = 
   let hbox = GPack.hbox () in
   match cads with
   | [] -> hbox
   | (id,c)::tl ->
       hbox#pack 
-        (cell_of_candidate ~active:true context goal id c :> GObj.widget);
+        (cell_of_candidate height ~active:grey 
+          context goal id c :> GObj.widget);
       List.iter
         (fun (id,c) -> 
-        hbox#pack (cell_of_candidate context goal id c :> GObj.widget)) tl;
+        hbox#pack (cell_of_candidate height context goal id c :> GObj.widget)) tl;
         hbox
 ;;
 
-let elems_to_rows context win_width (table : GPack.table) (or_list) =
+let elems_to_rows height context win_width (table : GPack.table) (or_list) =
+  let height = height / ((List.length or_list) + 1) in
   let _ = 
    List.fold_left 
-    (fun position (goal, candidates) ->
+    (fun position (goal_id, goal, grey, depth, candidates) ->
       table#attach ~left:0 ~top:position 
-        (cell_of_int (position + !start) :> GObj.widget);
-      table#attach ~left:1 ~top:position ~expand:`BOTH ~fill:`BOTH
-        (cell_of_goal win_width context goal :> GObj.widget);
+        (cell_of_row_header height (position + !start) 
+          depth goal_id :> GObj.widget);
+      table#attach ~left:1 ~top:position ~fill:`BOTH
+        (cell_of_goal height win_width context goal :> GObj.widget);
       table#attach ~left:2 ~top:position 
-        (cell_of_candidates context goal candidates :> GObj.widget);
+        (cell_of_candidates height grey context goal candidates :> GObj.widget);
       position+1)
     0 or_list
   in 
   ()
 ;;
 
-let old_displayed_status = ref ([]);;
+let old_displayed_status = ref [];;
 let old_size = ref 0;;
 
 let fill_win (win : MatitaGeneratedGui.autoWin) cb =
-  let init = Unix.gettimeofday () in
+(*   let init = Unix.gettimeofday () in *)
     try 
       let (status : status) = cb () in
       let win_size = win#toplevel#misc#allocation.Gtk.width in
       let ctx, or_list, and_list, last_moves = status in
       let displayed_status = 
-        sublist !start !len (or_list @ (List.map (fun x -> x,[]) and_list)) 
+        sublist !start !len 
+          (or_list @ (List.map (fun (id,x,d) -> id,x,false,d,[]) and_list)) 
       in
       if displayed_status <> !old_displayed_status || !old_size <> win_size then
         begin
           old_displayed_status := displayed_status;
           old_size := win_size;
+(*
           win#labelLAST#set_text 
             (String.concat ";" (List.map (pp_candidate ctx) last_moves));
+*)
           List.iter win#table#remove win#table#children;
-          elems_to_rows ctx win_size win#table displayed_status;
+          let height = win#viewportAREA#misc#allocation.Gtk.height in
+          elems_to_rows height ctx win_size win#table displayed_status;
+(*
           Printf.eprintf 
             "REDRAW COST: %2.1f\n%!" (Unix.gettimeofday () -.  init);
+*)
         end
     with exn -> prerr_endline (Printexc.to_string exn); ()
 ;;
 
 let auto_dialog elems =
   let win = new MatitaGeneratedGui.autoWin () in
+  let width = Gdk.Screen.width () in
+  let height = Gdk.Screen.height () in
+  let main_w = width * 70 / 100 in 
+  let main_h = height * 60 / 100 in
+  win#toplevel#resize ~width:main_w ~height:main_h;
   win#check_widgets ();
   win#table#set_columns 3;
   win#table#set_col_spacings 6;
@@ -148,15 +204,38 @@ let auto_dialog elems =
   ignore(win#buttonDOWN#connect#clicked 
     (fun _ -> incr start; fill_win win elems));
   ignore(win#buttonCLOSE#connect#clicked 
-    (fun _ -> win#toplevel#destroy ();GMain.Main.quit ()));
-  let redraw_callback _ = fill_win win elems;true in
+    (fun _ -> 
+      Auto.pause false;
+      Auto.step ();
+      win#toplevel#destroy ();
+      GMain.Main.quit ()));
+  ignore(win#toplevel#event#connect#delete
+    (fun _ -> 
+      Auto.pause false;
+      Auto.step ();
+      win#toplevel#destroy ();
+      GMain.Main.quit ();true));
+  let redraw_callback _ = 
+    fill_win win elems;
+    true 
+  in
   let redraw = GMain.Timeout.add ~ms:400 ~callback:redraw_callback in
   ignore(win#buttonPAUSE#connect#clicked 
-    (fun _ -> Auto.pause true));
+    (fun _ -> 
+      Auto.pause true;
+      win#buttonPLAY#misc#set_sensitive true;
+      win#buttonPAUSE#misc#set_sensitive false;));
   ignore(win#buttonPLAY#connect#clicked 
-    (fun _ -> Auto.pause false;Auto.step ()));
+    (fun _ -> 
+      Auto.pause false;
+      Auto.step ();
+      win#buttonPLAY#misc#set_sensitive false;
+      win#buttonPAUSE#misc#set_sensitive true;));
   ignore(win#buttonNEXT#connect#clicked 
     (fun _ -> Auto.step ()));
+  Auto.pause true;
+  win#buttonPLAY#misc#set_sensitive true;
+  win#buttonPAUSE#misc#set_sensitive false;  
   fill_win win elems;
   win#toplevel#show ();
   GtkThread.main ();