X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaMathView.ml;h=4bbaaddea52c08dc92738b0bf6503f4b097e5cf4;hb=517d7f0de0881a651d5b2f5adcc4063fe6332312;hp=13035b02b5ca8be6e57ab626f7551796fabf0728;hpb=55e646b795e4a7beedf1263ea734477bd4762931;p=helm.git diff --git a/helm/matita/matitaMathView.ml b/helm/matita/matitaMathView.ml index 13035b02b..4bbaaddea 100644 --- a/helm/matita/matitaMathView.ml +++ b/helm/matita/matitaMathView.ml @@ -75,7 +75,7 @@ let href_ds = Gdome.domString "href" let xref_ds = Gdome.domString "xref" (* ids_to_terms should not be passed here, is just for debugging *) -let find_root_id annobj id ids_to_father_ids ids_to_terms = +let find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types = let find_parent id ids = let rec aux id = (* (prerr_endline (sprintf "id %s = %s" id @@ -98,13 +98,20 @@ let find_root_id annobj id ids_to_father_ids ids_to_terms = | Some parent_id -> parent_id in let mk_ids terms = List.map CicUtil.id_of_annterm terms in + let inner_types = + Hashtbl.fold + (fun _ types acc -> + match types.Cic2acic.annexpected with + None -> types.Cic2acic.annsynthesized :: acc + | Some ty -> ty :: types.Cic2acic.annsynthesized :: acc + ) ids_to_inner_types [] in match annobj with | Cic.AConstant (_, _, _, Some bo, ty, _, _) | Cic.AVariable (_, _, Some bo, ty, _, _) | Cic.ACurrentProof (_, _, _, _, bo, ty, _, _) -> - return_father id (mk_ids [ty; bo]) + return_father id (mk_ids (ty :: bo :: inner_types)) | Cic.AConstant (_, _, _, None, ty, _, _) - | Cic.AVariable (_, _, None, ty, _, _) -> return_father id (mk_ids [ty]) + | Cic.AVariable (_, _, None, ty, _, _) -> return_father id (mk_ids (ty::inner_types)) | Cic.AInductiveDefinition _ -> assert false (* TODO *) @@ -244,7 +251,7 @@ object (self) method update_font_size = self#set_font_size !current_font_size method private get_term_by_id context cic_info id = - let ids_to_terms, ids_to_hypotheses, _, _ = cic_info in + let ids_to_terms, ids_to_hypotheses, _, _, _ = cic_info in try `Term (Hashtbl.find ids_to_terms id) with Not_found -> @@ -257,10 +264,12 @@ object (self) method private find_obj_conclusion id = match self#cic_info with | None - | Some (_, _, _, None) -> assert false - | Some (ids_to_terms, _, ids_to_father_ids, Some annobj) -> - let id = find_root_id annobj id ids_to_father_ids ids_to_terms in - (try Hashtbl.find ids_to_terms id with Not_found -> assert false) + | Some (_, _, _, _, None) -> assert false + | Some (ids_to_terms, _, ids_to_father_ids, ids_to_inner_types, Some annobj) -> + let id = + find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types + in + (try Hashtbl.find ids_to_terms id with Not_found -> assert false) method private string_of_node node = let get_id (node: Gdome.element) = @@ -349,7 +358,7 @@ object (self) ApplyTransformation.mml_of_cic_sequent metasenv sequent in self#set_cic_info - (Some (ids_to_terms, ids_to_hypotheses, ids_to_father_ids, None)); + (Some (ids_to_terms, ids_to_hypotheses, ids_to_father_ids, Hashtbl.create 1, None)); let name = "sequent_viewer.xml" in MatitaLog.debug ("load_sequent: dumping MathML to ./" ^ name); ignore (DomMisc.domImpl#saveDocumentToFile ~name ~doc:mathml ()); @@ -358,12 +367,12 @@ object (self) method load_object obj = let use_diff = false in (* ZACK TODO use XmlDiff when re-rendering? *) let (mathml, - (annobj, (ids_to_terms, ids_to_father_ids, _, ids_to_hypotheses, _, _))) + (annobj, (ids_to_terms, ids_to_father_ids, _, ids_to_hypotheses, _, ids_to_inner_types))) = ApplyTransformation.mml_of_cic_object obj in self#set_cic_info - (Some (ids_to_terms, ids_to_hypotheses, ids_to_father_ids, Some annobj)); + (Some (ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj)); (match current_mathml with | Some current_mathml when use_diff -> self#freeze; @@ -389,7 +398,8 @@ class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () = val mutable _metasenv = [] val mutable scrolledWin: GBin.scrolled_window option = None (* scrolled window to which the sequentViewer is currently attached *) - val logo = (GMisc.image ~file:"logo/matita_medium.png" () :> GObj.widget) + val logo = (GMisc.image ~file:(BuildTimeConf.runtime_base_dir ^ "/logo/matita_medium.png") () :> GObj.widget) + val logo_with_qed = (GMisc.image ~file:"logo/matita_small.png" () :> GObj.widget) method load_logo = @@ -519,12 +529,6 @@ type term_source = | `String of string ] -let reloadable = function - | `About `Current_proof - | `Dir _ -> - true - | _ -> false - class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) () = @@ -605,7 +609,7 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) ignore (win#browserHomeButton#connect#clicked (handle_error' (fun () -> self#load (`About `Current_proof)))); ignore (win#browserRefreshButton#connect#clicked - (handle_error' self#refresh)); + (handle_error' (self#refresh ~force:true))); ignore (win#browserBackButton#connect#clicked (handle_error' self#back)); ignore (win#browserForwardButton#connect#clicked (handle_error' self#forward)); @@ -627,7 +631,6 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) toplevel#show () val mutable current_entry = `About `Blank - val mutable current_infos = None val model = new MatitaGtkMisc.taggedStringListModel tags win#whelpResultTreeview @@ -685,9 +688,10 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) (* loads a uri which can be a cic uri or an about:* uri * @param uri string *) - method private _load entry = + method private _load ?(force=false) entry = try - if entry <> current_entry || reloadable entry then begin + if entry <> current_entry || entry = `About `Current_proof || force then + begin (match entry with | `About `Current_proof -> self#home () | `About `Blank -> self#blank () @@ -808,8 +812,7 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) method win = win method history = history method currentEntry = current_entry - method refresh () = - if reloadable current_entry then self#_load current_entry + method refresh ~force () = self#_load ~force current_entry end @@ -864,7 +867,8 @@ let mathViewer () = (self#get_browser reuse)#load entry end -let refresh_all_browsers () = List.iter (fun b -> b#refresh ()) !cicBrowsers +let refresh_all_browsers () = + List.iter (fun b -> b#refresh ~force:false ()) !cicBrowsers let update_font_sizes () = List.iter (fun b -> b#updateFontSize) !cicBrowsers;