X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaMathView.ml;h=43547b8ff9e835da80e588d3c1efdd8db659c1bb;hb=5a702cea95883f7095c16b450e065ccb1714fc5a;hp=479891fec0e41a24eed945b75444f3244b58e4c9;hpb=301c308c53e3d47d0c924731717c6d075273961e;p=helm.git diff --git a/helm/matita/matitaMathView.ml b/helm/matita/matitaMathView.ml index 479891fec..43547b8ff 100644 --- a/helm/matita/matitaMathView.ml +++ b/helm/matita/matitaMathView.ml @@ -100,10 +100,22 @@ let find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types = | Cic.ACurrentProof (_, _, _, _, bo, ty, _, _) -> return_father id (mk_ids (ty :: bo :: inner_types)) | Cic.AConstant (_, _, _, None, ty, _, _) - | Cic.AVariable (_, _, None, ty, _, _) -> return_father id (mk_ids (ty::inner_types)) + | Cic.AVariable (_, _, None, ty, _, _) -> + return_father id (mk_ids (ty::inner_types)) | Cic.AInductiveDefinition _ -> assert false (* TODO *) + (** @return string content of a dom node having a single text child node, e.g. + * bool *) +let string_of_dom_node node = + match node#get_firstChild with + | None -> "" + | Some node -> + (try + let text = new Gdome.text_of_node node in + text#get_data#to_string + with GdomeInit.DOMCastException _ -> "") + class clickableMathView obj = let text_width = 80 in object (self) @@ -210,18 +222,18 @@ object (self) method private choose_selection_cb gdome_elt = let (gui: MatitaGuiTypes.gui) = get_gui () in let clipboard = GData.clipboard Gdk.Atom.primary in + let set_selection elt = + self#set_selection (Some elt); + self#coerce#misc#add_selection_target + ~target:(Gdk.Atom.name Gdk.Atom.string) Gdk.Atom.primary; + ignore (self#coerce#misc#grab_selection Gdk.Atom.primary) + in let rec aux elt = if (elt#getAttributeNS ~namespaceURI:DomMisc.helm_ns ~localName:xref_ds)#to_string <> "" -(* if elt#hasAttributeNS ~namespaceURI:DomMisc.helm_ns ~localName:xref_ds - && (elt#getAttributeNS ~namespaceURI:DomMisc.helm_ns - ~localName:xref_ds)#to_string <> "" *) - then begin - self#set_selection (Some elt); - self#coerce#misc#add_selection_target - ~target:(Gdk.Atom.name Gdk.Atom.string) Gdk.Atom.primary; - ignore (self#coerce#misc#grab_selection Gdk.Atom.primary) - end else + then + set_selection elt + else try (match elt#get_parentNode with | None -> assert false @@ -229,6 +241,9 @@ object (self) with GdomeInit.DOMCastException _ -> () in (match gdome_elt with + | Some elt when (elt#getAttributeNS ~namespaceURI:DomMisc.xlink_ns + ~localName:href_ds)#to_string <> "" -> + set_selection elt | Some elt -> aux elt | None -> self#set_selection None); selection_changed <- true @@ -257,6 +272,11 @@ object (self) (try Hashtbl.find ids_to_terms id with Not_found -> assert false) method private string_of_node node = + if node#hasAttributeNS ~namespaceURI:DomMisc.xlink_ns ~localName:href_ds + then string_of_dom_node node + else self#string_of_id_node node + + method private string_of_id_node node = let get_id (node: Gdome.element) = let xref_attr = node#getAttributeNS ~namespaceURI:DomMisc.helm_ns ~localName:xref_ds @@ -384,11 +404,11 @@ class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () = val mutable scrolledWin: GBin.scrolled_window option = None (* scrolled window to which the sequentViewer is currently attached *) val logo = (GMisc.image - ~file:(BuildTimeConf.runtime_base_dir ^ "/logo/matita_medium.png") () + ~file:(MatitaMisc.image_path "matita_medium.png") () :> GObj.widget) val logo_with_qed = (GMisc.image - ~file:(BuildTimeConf.runtime_base_dir ^ "/logo/matita_small.png") () + ~file:(MatitaMisc.image_path "matita_small.png") () :> GObj.widget) method load_logo = @@ -410,19 +430,19 @@ class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () = w#remove cicMathView#coerce; scrolledWin <- None | None -> ()); - for i = 0 to pages do notebook#remove_page 0 done; + (match switch_page_callback with + | Some id -> + GtkSignal.disconnect notebook#as_widget id; + switch_page_callback <- None + | None -> ()); + for i = 0 to pages do notebook#remove_page 0 done; notebook#set_show_tabs true; pages <- 0; page2goal <- []; goal2page <- []; goal2win <- []; - _metasenv <- []; + _metasenv <- []; self#script#setGoal ~-1; - (match switch_page_callback with - | Some id -> - GtkSignal.disconnect notebook#as_widget id; - switch_page_callback <- None - | None -> ()) method load_sequents (status: ProofEngineTypes.status) = let ((_, metasenv, _, _), goal) = status in @@ -432,7 +452,7 @@ class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () = self#script#setGoal goal; let win metano = let w = - GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`AUTOMATIC + GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`ALWAYS ~shadow_type:`IN ~show:true () in let reparent () = @@ -573,6 +593,9 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) with exn -> fail (MatitaExcPp.to_string exn) in let handle_error' f = (fun () -> handle_error (fun () -> f ())) in + let load_easter_egg = lazy ( + win#easterEggImage#set_file (MatitaMisc.image_path "meegg.png")) + in object (self) inherit scriptAccessor @@ -662,9 +685,9 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) * * Use only these functions to switch between the tabs *) - method private _showList = win#mathOrListNotebook#goto_page 1 method private _showMath = win#mathOrListNotebook#goto_page 0 - + method private _showList = win#mathOrListNotebook#goto_page 1 + method private back () = try self#_load (self#_historyPrev ()) @@ -684,7 +707,7 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) (match entry with | `About `Current_proof -> self#home () | `About `Blank -> self#blank () - | `About `Us -> () (* TODO implement easter egg here :-] *) + | `About `Us -> self#egg () | `Check term -> self#_loadCheck term | `Cic (term, metasenv) -> self#_loadTermCic term metasenv | `Dir dir -> self#_loadDir dir @@ -705,6 +728,10 @@ class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history) failwith "not implemented _loadCheck"; self#_showMath + method private egg () = + win#mathOrListNotebook#goto_page 2; + Lazy.force load_easter_egg + method private home () = self#_showMath; match self#script#status.proof_status with