]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/matitaMathView.ml
- parser: "whelp ...Â"removed
[helm.git] / matita / matita / matitaMathView.ml
1 (* Copyright (C) 2004-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 (* $Id$ *)
27
28 open Printf
29
30 open GrafiteTypes
31 open MatitaGtkMisc
32 open MatitaGuiTypes
33
34 module Stack = Continuationals.Stack
35
36 (** inherit from this class if you want to access current script *)
37 class scriptAccessor =
38 object (self)
39   method private script = MatitaScript.current ()
40 end
41
42 let cicBrowsers = ref []
43 let gui_instance = ref None
44 let set_gui gui = gui_instance := Some gui
45 let get_gui () =
46   match !gui_instance with
47   | None -> assert false
48   | Some gui -> gui
49
50 let default_font_size () =
51   Helm_registry.get_opt_default Helm_registry.int
52     ~default:BuildTimeConf.default_font_size "matita.font_size"
53 let current_font_size = ref ~-1
54 let increase_font_size () = incr current_font_size
55 let decrease_font_size () = decr current_font_size
56 let reset_font_size () = current_font_size := default_font_size ()
57
58   (* is there any lablgtk2 constant corresponding to the various mouse
59    * buttons??? *)
60 let left_button = 1
61 let middle_button = 2
62 let right_button = 3
63
64 let near (x1, y1) (x2, y2) =
65   let distance = sqrt (((x2 -. x1) ** 2.) +. ((y2 -. y1) ** 2.)) in
66   (distance < 4.)
67
68 let mathml_ns = Gdome.domString "http://www.w3.org/1998/Math/MathML"
69 let xlink_ns = Gdome.domString "http://www.w3.org/1999/xlink"
70 let helm_ns = Gdome.domString "http://www.cs.unibo.it/helm"
71 let href_ds = Gdome.domString "href"
72 let maction_ds = Gdome.domString "maction"
73 let xref_ds = Gdome.domString "xref"
74
75 let domImpl = Gdome.domImplementation ()
76
77   (** Gdome.element of a MathML document whose rendering should be blank. Used
78   * by cicBrowser to render "about:blank" document *)
79 let empty_mathml = lazy (
80   domImpl#createDocument ~namespaceURI:(Some DomMisc.mathml_ns)
81     ~qualifiedName:(Gdome.domString "math") ~doctype:None)
82
83 let empty_boxml = lazy (
84   domImpl#createDocument ~namespaceURI:(Some DomMisc.boxml_ns) 
85     ~qualifiedName:(Gdome.domString "box") ~doctype:None)
86
87   (** shown for goals closed by side effects *)
88 let closed_goal_mathml = lazy "chiuso per side effect..."
89
90 (* ids_to_terms should not be passed here, is just for debugging *)
91 let find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types =
92   let find_parent id ids =
93     let rec aux id =
94 (*       (prerr_endline (sprintf "id %s = %s" id
95         (try
96           CicPp.ppterm (Hashtbl.find ids_to_terms id)
97         with Not_found -> "NONE"))); *)
98       if List.mem id ids then Some id
99       else
100         (match
101           (try Hashtbl.find ids_to_father_ids id with Not_found -> None)
102         with
103         | None -> None
104         | Some id' -> aux id')
105     in
106     aux id
107   in
108   let return_father id ids =
109     match find_parent id ids with
110     | None -> assert false
111     | Some parent_id -> parent_id
112   in
113   let mk_ids terms = List.map CicUtil.id_of_annterm terms in
114   let inner_types =
115    Hashtbl.fold
116     (fun _ types acc ->
117       match types.Cic2acic.annexpected with
118          None -> types.Cic2acic.annsynthesized :: acc
119        | Some ty -> ty :: types.Cic2acic.annsynthesized :: acc
120     ) ids_to_inner_types [] in
121   match annobj with
122   | Cic.AConstant (_, _, _, Some bo, ty, _, _)
123   | Cic.AVariable (_, _, Some bo, ty, _, _)
124   | Cic.ACurrentProof (_, _, _, _, bo, ty, _, _) ->
125       return_father id (mk_ids (ty :: bo :: inner_types))
126   | Cic.AConstant (_, _, _, None, ty, _, _)
127   | Cic.AVariable (_, _, None, ty, _, _) ->
128       return_father id (mk_ids (ty::inner_types))
129   | Cic.AInductiveDefinition _ ->
130       assert false  (* TODO *)
131
132   (** @return string content of a dom node having a single text child node, e.g.
133    * <m:mi xlink:href="...">bool</m:mi> *)
134 let string_of_dom_node node =
135   match node#get_firstChild with
136   | None -> ""
137   | Some node ->
138       (try
139         let text = new Gdome.text_of_node node in
140         text#get_data#to_string
141       with GdomeInit.DOMCastException _ -> "")
142
143 let name_of_hypothesis = function
144   | Some (Cic.Name s, _) -> s
145   | _ -> assert false
146
147 let id_of_node (node: Gdome.element) =
148   let xref_attr =
149     node#getAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds in
150   try
151     List.hd (HExtlib.split ~sep:' ' xref_attr#to_string)
152   with Failure _ -> assert false
153
154 type selected_term =
155   | SelTerm of Cic.term * string option (* term, parent hypothesis (if any) *)
156   | SelHyp of string * Cic.context (* hypothesis, context *)
157
158 let hrefs_of_elt elt =
159   let localName = href_ds in
160   if elt#hasAttributeNS ~namespaceURI:xlink_ns ~localName then
161     let text =
162       (elt#getAttributeNS ~namespaceURI:xlink_ns ~localName)#to_string in
163     Some (HExtlib.split text)
164   else
165     None
166
167 let rec has_maction (elt :Gdome.element) = 
168   (* fix this comparison *)
169   if elt#get_tagName#to_string = "m:maction" ||
170    elt#get_tagName#to_string = "b:action" then
171     true
172   else 
173     match elt#get_parentNode with
174     | Some node when node#get_nodeType = GdomeNodeTypeT.ELEMENT_NODE -> 
175         has_maction (new Gdome.element_of_node node)
176     | _ -> false
177 ;;
178
179 class clickableMathView obj =
180 let text_width = 80 in
181 object (self)
182   inherit GSourceView2.source_view obj
183
184   method has_selection = (assert false : bool)
185   method strings_of_selection = (assert false : (paste_kind * string) list)
186   method update_font_size = (assert false : unit)
187   method set_href_callback = (function _ -> () : (string -> unit) option -> unit)
188   method private set_cic_info = (function _ -> () : (Cic.conjecture option * (Cic.id, Cic.term) Hashtbl.t *
189          (Cic.id, Cic.hypothesis) Hashtbl.t *
190          (Cic.id, Cic.id option) Hashtbl.t * ('a, 'b) Hashtbl.t * 'c option) option -> unit)
191   (* dal widget di Luca *)
192   method load_root ~root =
193     self#buffer#delete ~start:(self#buffer#get_iter `START)
194     ~stop:(self#buffer#get_iter `END);
195     self#buffer#insert root
196   method remove_selections = (() : unit)
197   method set_selection = (fun _ -> () : Gdome.element option -> unit)
198   method get_selections = (assert false : Gdome.element list)
199   method set_font_size font_size =
200    self#misc#modify_font_by_name
201      (sprintf "%s %d" BuildTimeConf.script_font font_size)
202
203 (* MATITA1.0
204   inherit GMathViewAux.multi_selection_math_view obj
205
206   val mutable href_callback: (string -> unit) option = None
207   method set_href_callback f = href_callback <- f
208
209   val mutable _cic_info = None
210   method private set_cic_info info = _cic_info <- info
211   method private cic_info = _cic_info
212
213   val normal_cursor = Gdk.Cursor.create `LEFT_PTR
214   val href_cursor = Gdk.Cursor.create `HAND2
215   val maction_cursor = Gdk.Cursor.create `QUESTION_ARROW
216
217   initializer
218     self#set_font_size !current_font_size;
219     ignore (self#connect#selection_changed self#choose_selection_cb);
220     ignore (self#event#connect#button_press self#button_press_cb);
221     ignore (self#event#connect#button_release self#button_release_cb);
222     ignore (self#event#connect#selection_clear self#selection_clear_cb);
223     ignore (self#connect#element_over self#element_over_cb);
224     ignore (self#coerce#misc#connect#selection_get self#selection_get_cb)
225
226   val mutable button_press_x = -1.
227   val mutable button_press_y = -1.
228   val mutable selection_changed = false
229   val mutable href_statusbar_msg:
230     (GMisc.statusbar_context * Gtk.statusbar_message) option = None
231     (* <statusbar ctxt, statusbar msg> *)
232
233   method private selection_get_cb ctxt ~info ~time =
234     let text =
235       match ctxt#target with
236       | "PATTERN" -> self#text_of_selection `Pattern
237       | "TERM" | _ -> self#text_of_selection `Term
238     in
239     match text with
240     | None -> ()
241     | Some s -> ctxt#return s
242
243   method private text_of_selection fmt =
244     match self#get_selections with
245     | [] -> None
246     | node :: _ -> Some (self#string_of_node ~paste_kind:fmt node)
247
248   method private selection_clear_cb sel_event =
249     self#remove_selections;
250     (GData.clipboard Gdk.Atom.clipboard)#clear ();
251     false
252
253   method private button_press_cb gdk_button =
254     let button = GdkEvent.Button.button gdk_button in
255     if  button = left_button then begin
256       button_press_x <- GdkEvent.Button.x gdk_button;
257       button_press_y <- GdkEvent.Button.y gdk_button;
258       selection_changed <- false
259     end else if button = right_button then
260       self#popup_contextual_menu 
261         (self#get_element_at 
262           (int_of_float (GdkEvent.Button.x gdk_button)) 
263           (int_of_float (GdkEvent.Button.y gdk_button)))  
264         (GdkEvent.Button.time gdk_button);
265     false
266
267   method private element_over_cb (elt_opt, _, _, _) =
268     let win () = self#misc#window in
269     let leave_href () =
270       Gdk.Window.set_cursor (win ()) normal_cursor;
271       HExtlib.iter_option (fun (ctxt, msg) -> ctxt#remove msg)
272         href_statusbar_msg
273     in
274     match elt_opt with
275     | Some elt ->
276         if has_maction elt then
277           Gdk.Window.set_cursor (win ()) maction_cursor
278         else
279         (match hrefs_of_elt elt with
280         | Some ((_ :: _) as hrefs) ->
281             Gdk.Window.set_cursor (win ()) href_cursor;
282             let msg_text = (* now create statusbar msg and store it *)
283               match hrefs with
284               | [ href ] -> sprintf "Hyperlink to %s" href
285               | _ -> sprintf "Hyperlinks to: %s" (String.concat ", " hrefs) in
286             let ctxt = (get_gui ())#main#statusBar#new_context ~name:"href" in
287             let msg = ctxt#push msg_text in
288             href_statusbar_msg <- Some (ctxt, msg)
289         | _ -> leave_href ())
290     | None -> leave_href ()
291
292   method private tactic_text_pattern_of_node node =
293    let id = id_of_node node in
294    let cic_info, unsh_sequent = self#get_cic_info id in
295    match self#get_term_by_id cic_info id with
296    | SelTerm (t, father_hyp) ->
297        let sequent = self#sequent_of_id ~paste_kind:`Pattern id in
298        let text = self#string_of_cic_sequent ~output_type:`Pattern sequent in
299        (match father_hyp with
300        | None -> None, [], Some text
301        | Some hyp_name -> None, [ hyp_name, text ], None)
302    | SelHyp (hyp_name, _ctxt) -> None, [ hyp_name, "%" ], None
303
304   method private tactic_text_of_node node =
305    let id = id_of_node node in
306    let cic_info, unsh_sequent = self#get_cic_info id in
307    match self#get_term_by_id cic_info id with
308    | SelTerm (t, father_hyp) ->
309        let sequent = self#sequent_of_id ~paste_kind:`Term id in
310        let text = self#string_of_cic_sequent ~output_type:`Term sequent in
311        text
312    | SelHyp (hyp_name, _ctxt) -> hyp_name
313
314     (** @return a pattern structure which contains pretty printed terms *)
315   method private tactic_text_pattern_of_selection =
316     match self#get_selections with
317     | [] -> assert false (* this method is invoked only if there's a sel. *)
318     | node :: _ -> self#tactic_text_pattern_of_node node
319
320   method private popup_contextual_menu element time =
321     let menu = GMenu.menu () in
322     let add_menu_item ?(menu = menu) ?stock ?label () =
323       GMenu.image_menu_item ?stock ?label ~packing:menu#append () in
324     let check = add_menu_item ~label:"Check" () in
325     let reductions_menu_item = GMenu.menu_item ~label:"βδιζ-reduce" () in
326     let tactics_menu_item = GMenu.menu_item ~label:"Apply tactic" () in
327     let hyperlinks_menu_item = GMenu.menu_item ~label:"Hyperlinks" () in
328     menu#append reductions_menu_item;
329     menu#append tactics_menu_item;
330     menu#append hyperlinks_menu_item;
331     let reductions = GMenu.menu () in
332     let tactics = GMenu.menu () in
333     let hyperlinks = GMenu.menu () in
334     reductions_menu_item#set_submenu reductions;
335     tactics_menu_item#set_submenu tactics;
336     hyperlinks_menu_item#set_submenu hyperlinks;
337     let normalize = add_menu_item ~menu:reductions ~label:"Normalize" () in
338     let simplify = add_menu_item ~menu:reductions ~label:"Simplify" () in
339     let whd = add_menu_item ~menu:reductions ~label:"Weak head" () in
340     (match element with 
341     | None -> hyperlinks_menu_item#misc#set_sensitive false
342     | Some elt -> 
343         match hrefs_of_elt elt, href_callback with
344         | Some l, Some f ->
345             List.iter 
346               (fun h ->
347                 let item = add_menu_item ~menu:hyperlinks ~label:h () in
348                 connect_menu_item item (fun () -> f h)) l
349         | _ -> hyperlinks_menu_item#misc#set_sensitive false);
350     menu#append (GMenu.separator_item ());
351     let copy = add_menu_item ~stock:`COPY () in
352     let gui = get_gui () in
353     List.iter (fun item -> item#misc#set_sensitive gui#canCopy)
354       [ copy; check; normalize; simplify; whd ];
355     let reduction_action kind () =
356       let pat = self#tactic_text_pattern_of_selection in
357       let statement =
358         let loc = HExtlib.dummy_floc in
359         "\n" ^
360         GrafiteAstPp.pp_executable ~term_pp:(fun s -> s)
361           ~lazy_term_pp:(fun _ -> assert false) ~obj_pp:(fun _ -> assert false)
362           ~map_unicode_to_tex:(Helm_registry.get_bool
363             "matita.paste_unicode_as_tex")
364           (GrafiteAst.Tactic (loc,
365             Some (GrafiteAst.Reduce (loc, kind, pat)),
366             GrafiteAst.Semicolon loc)) in
367       (MatitaScript.current ())#advance ~statement () in
368     connect_menu_item copy gui#copy;
369     connect_menu_item normalize (reduction_action `Normalize);
370     connect_menu_item simplify (reduction_action `Simpl);
371     connect_menu_item whd (reduction_action `Whd);
372     menu#popup ~button:right_button ~time
373
374   method private button_release_cb gdk_button =
375     if GdkEvent.Button.button gdk_button = left_button then begin
376       let button_release_x = GdkEvent.Button.x gdk_button in
377       let button_release_y = GdkEvent.Button.y gdk_button in
378       if selection_changed then
379         ()
380       else  (* selection _not_ changed *)
381         if near (button_press_x, button_press_y)
382           (button_release_x, button_release_y)
383         then
384           let x = int_of_float button_press_x in
385           let y = int_of_float button_press_y in
386           (match self#get_element_at x y with
387           | None -> ()
388           | Some elt ->
389               if has_maction elt then ignore(self#action_toggle elt) else
390               (match hrefs_of_elt elt with
391               | Some hrefs -> self#invoke_href_callback hrefs gdk_button
392               | None -> ()))
393     end;
394     false
395
396   method private invoke_href_callback hrefs gdk_button =
397     let button = GdkEvent.Button.button gdk_button in
398     if button = left_button then
399       let time = GdkEvent.Button.time gdk_button in
400       match href_callback with
401       | None -> ()
402       | Some f ->
403           (match hrefs with
404           | [ uri ] ->  f uri
405           | uris ->
406               let menu = GMenu.menu () in
407               List.iter
408                 (fun uri ->
409                   let menu_item =
410                     GMenu.menu_item ~label:uri ~packing:menu#append () in
411                   connect_menu_item menu_item 
412                   (fun () -> try f uri with Not_found -> assert false))
413                 uris;
414               menu#popup ~button ~time)
415
416   method private choose_selection_cb gdome_elt =
417     let set_selection elt =
418       let misc = self#coerce#misc in
419       self#set_selection (Some elt);
420       misc#add_selection_target ~target:"STRING" Gdk.Atom.primary;
421       ignore (misc#grab_selection Gdk.Atom.primary);
422     in
423     let rec aux elt =
424       if (elt#getAttributeNS ~namespaceURI:helm_ns
425             ~localName:xref_ds)#to_string <> ""
426       then
427         set_selection elt
428       else
429         try
430           (match elt#get_parentNode with
431           | None -> assert false
432           | Some p -> aux (new Gdome.element_of_node p))
433         with GdomeInit.DOMCastException _ -> ()
434     in
435     (match gdome_elt with
436     | Some elt when (elt#getAttributeNS ~namespaceURI:xlink_ns
437         ~localName:href_ds)#to_string <> "" ->
438           set_selection elt
439     | Some elt -> aux elt
440     | None -> self#set_selection None);
441     selection_changed <- true
442
443   method update_font_size = self#set_font_size !current_font_size
444
445     (** find a term by id from stored CIC infos @return either `Hyp if the id
446      * correspond to an hypothesis or `Term (cic, hyp) if the id correspond to a
447      * term. In the latter case hyp is either None (if the term is a subterm of
448      * the sequent conclusion) or Some hyp_name if the term belongs to an
449      * hypothesis *)
450   method private get_term_by_id cic_info id =
451     let unsh_item, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, _, _ =
452       cic_info in
453     let rec find_father_hyp id =
454       if Hashtbl.mem ids_to_hypotheses id
455       then Some (name_of_hypothesis (Hashtbl.find ids_to_hypotheses id))
456       else
457         let father_id =
458           try Hashtbl.find ids_to_father_ids id
459           with Not_found -> assert false in
460         match father_id with
461         | Some id -> find_father_hyp id
462         | None -> None
463     in
464     try
465       let term = Hashtbl.find ids_to_terms id in
466       let father_hyp = find_father_hyp id in
467       SelTerm (term, father_hyp)
468     with Not_found ->
469       try
470         let hyp = Hashtbl.find ids_to_hypotheses id in
471         let _, context, _ =
472           match unsh_item with Some seq -> seq | None -> assert false in
473         let context' = MatitaMisc.list_tl_at hyp context in
474         SelHyp (name_of_hypothesis hyp, context')
475       with Not_found -> assert false
476     
477   method private find_obj_conclusion id =
478     match self#cic_info with
479     | None
480     | Some (_, _, _, _, _, None) -> assert false
481     | Some (_, ids_to_terms, _, ids_to_father_ids, ids_to_inner_types, Some annobj) ->
482         let id =
483          find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types
484         in
485          (try Hashtbl.find ids_to_terms id with Not_found -> assert false)
486
487   method private string_of_node ~(paste_kind:paste_kind) node =
488     if node#hasAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds
489     then
490       match paste_kind with
491       | `Pattern ->
492           let tactic_text_pattern =  self#tactic_text_pattern_of_node node in
493           GrafiteAstPp.pp_tactic_pattern
494             ~term_pp:(fun s -> s) ~lazy_term_pp:(fun _ -> assert false)
495             ~map_unicode_to_tex:(Helm_registry.get_bool
496               "matita.paste_unicode_as_tex")
497             tactic_text_pattern
498       | `Term -> self#tactic_text_of_node node
499     else string_of_dom_node node
500
501   method private string_of_cic_sequent ~output_type cic_sequent =
502     let script = MatitaScript.current () in
503     let metasenv =
504       if script#onGoingProof () then script#proofMetasenv else [] in
505     let map_unicode_to_tex =
506       Helm_registry.get_bool "matita.paste_unicode_as_tex" in
507     ApplyTransformation.txt_of_cic_sequent_conclusion ~map_unicode_to_tex
508      ~output_type text_width metasenv cic_sequent
509
510   method private pattern_of term father_hyp unsh_sequent =
511     let _, unsh_context, conclusion = unsh_sequent in
512     let where =
513      match father_hyp with
514         None -> conclusion
515       | Some name ->
516          let rec aux =
517           function
518              [] -> assert false
519            | Some (Cic.Name name', Cic.Decl ty)::_ when name' = name -> ty
520            | Some (Cic.Name name', Cic.Def (bo,_))::_ when name' = name-> bo
521            | _::tl -> aux tl
522          in
523           aux unsh_context
524     in
525      ProofEngineHelpers.pattern_of ~term:where [term]
526
527   method private get_cic_info id =
528     match self#cic_info with
529     | Some ((Some unsh_sequent, _, _, _, _, _) as info) -> info, unsh_sequent
530     | Some ((None, _, _, _, _, _) as info) ->
531         let t = self#find_obj_conclusion id in
532         info, (~-1, [], t) (* dummy sequent for obj *)
533     | None -> assert false
534
535   method private sequent_of_id ~(paste_kind:paste_kind) id =
536     let cic_info, unsh_sequent = self#get_cic_info id in
537     let cic_sequent =
538       match self#get_term_by_id cic_info id with
539       | SelTerm (t, father_hyp) ->
540 (*
541 IDIOTA: PRIMA SI FA LA LOCATE, POI LA PATTERN_OF. MEGLIO UN'UNICA pattern_of CHE PRENDA IN INPUT UN TERMINE E UN SEQUENTE. PER IL MOMENTO RISOLVO USANDO LA father_hyp PER RITROVARE L'IPOTESI PERDUTA
542 *)
543           let occurrences =
544             ProofEngineHelpers.locate_in_conjecture t unsh_sequent in
545           (match occurrences with
546           | [ context, _t ] ->
547               (match paste_kind with
548               | `Term -> ~-1, context, t
549               | `Pattern -> ~-1, [], self#pattern_of t father_hyp unsh_sequent)
550           | _ ->
551               HLog.error (sprintf "found %d occurrences while 1 was expected"
552                 (List.length occurrences));
553               assert false) (* since it uses physical equality *)
554       | SelHyp (_name, context) -> ~-1, context, Cic.Rel 1 in
555     cic_sequent
556
557   method private string_of_selection ~(paste_kind:paste_kind) =
558     match self#get_selections with
559     | [] -> None
560     | node :: _ -> Some (self#string_of_node ~paste_kind node)
561
562   method has_selection = self#get_selections <> []
563
564     (** @return an associative list format -> string with all possible selection
565      * formats. Rationale: in order to convert the selection to TERM or PATTERN
566      * format we need the sequent, the metasenv, ... keeping all of them in a
567      * closure would be more expensive than keeping their already converted
568      * forms *)
569   method strings_of_selection =
570     try
571       let misc = self#coerce#misc in
572       List.iter
573         (fun target -> misc#add_selection_target ~target Gdk.Atom.clipboard)
574         [ "TERM"; "PATTERN"; "STRING" ];
575       ignore (misc#grab_selection Gdk.Atom.clipboard);
576       List.map
577         (fun paste_kind ->
578           paste_kind, HExtlib.unopt (self#string_of_selection ~paste_kind))
579         [ `Term; `Pattern ]
580     with Failure _ -> failwith "no selection"
581 *)
582 end
583
584 open GtkSourceView2
585
586 let clickableMathView ?hadjustment ?vadjustment ?font_size ?log_verbosity =
587   SourceView.make_params [] ~cont:(
588     GtkText.View.make_params ~cont:(
589       GContainer.pack_container ~create:(fun pl ->
590         let obj = SourceView.new_ () in
591         Gobject.set_params (Gobject.try_cast obj "GtkSourceView") pl;
592         new clickableMathView obj)))
593   (* MATITA1.0
594   GtkBase.Widget.size_params
595     ~cont:(OgtkSourceView2Props.pack_return (fun p ->
596       OgtkSourceView2Props.set_params
597         (new clickableMathView (GtkSourceView2Props.MathView_GMetaDOM.create p))
598         ~font_size:None ~log_verbosity:None))
599     []
600     *)
601
602 class cicMathView obj =
603 object (self)
604   inherit clickableMathView obj
605
606   val mutable current_mathml = None
607
608   method load_sequent metasenv metano =
609     let sequent = CicUtil.lookup_meta metano metasenv in
610     let (txt, unsh_sequent,
611       (_, (ids_to_terms, ids_to_father_ids, ids_to_hypotheses,_ )))
612     =
613       ApplyTransformation.txt_of_cic_sequent_all
614        ~map_unicode_to_tex:false 80 (*MATITA 1.0??*) metasenv sequent
615     in
616     self#set_cic_info
617       (Some (Some unsh_sequent,
618         ids_to_terms, ids_to_hypotheses, ids_to_father_ids,
619         Hashtbl.create 1, None));
620    (*MATITA 1.0
621     if BuildTimeConf.debug then begin
622       let name =
623        "/tmp/sequent_viewer_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
624       HLog.debug ("load_sequent: dumping MathML to ./" ^ name);
625       ignore (domImpl#saveDocumentToFile ~name ~doc:txt ())
626     end; *)
627     self#load_root ~root:txt
628
629   method nload_sequent:
630    'status. #NCicCoercion.status as 'status -> NCic.metasenv ->
631      NCic.substitution -> int -> unit
632    = fun status metasenv subst metano ->
633     let sequent = List.assoc metano metasenv in
634     let txt =
635      ApplyTransformation.ntxt_of_cic_sequent
636       ~map_unicode_to_tex:false 80 status metasenv subst (metano,sequent)
637     in
638     (* MATITA 1.0 if BuildTimeConf.debug then begin
639       let name =
640        "/tmp/sequent_viewer_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
641       HLog.debug ("load_sequent: dumping MathML to ./" ^ name);
642       ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
643     end;*)
644     self#load_root ~root:txt
645
646   method load_object obj =
647     let use_diff = false in (* ZACK TODO use XmlDiff when re-rendering? *)
648     let (txt,
649       (annobj, (ids_to_terms, ids_to_father_ids, _, ids_to_hypotheses, _, ids_to_inner_types)))
650     =
651       ApplyTransformation.txt_of_cic_object_all ~map_unicode_to_tex:false
652        80 [] obj
653     in
654     self#set_cic_info
655       (Some (None, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj));
656     (match current_mathml with
657     | Some current_mathml when use_diff ->
658 assert false (*MATITA1.0
659         self#freeze;
660         XmlDiff.update_dom ~from:current_mathml mathml;
661         self#thaw*)
662     |  _ ->
663         (* MATITA1.0 if BuildTimeConf.debug then begin
664           let name =
665            "/tmp/cic_browser_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
666           HLog.debug ("cic_browser: dumping MathML to ./" ^ name);
667           ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
668         end;*)
669         self#load_root ~root:txt;
670         current_mathml <- Some txt);
671
672   method load_nobject :
673    'status. #NCicCoercion.status as 'status -> NCic.obj -> unit
674    = fun status obj ->
675     let txt = ApplyTransformation.ntxt_of_cic_object ~map_unicode_to_tex:false
676     80 status obj in
677 (*
678     self#set_cic_info
679       (Some (None, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj));
680     (match current_mathml with
681     | Some current_mathml when use_diff ->
682         self#freeze;
683         XmlDiff.update_dom ~from:current_mathml mathml;
684         self#thaw
685     |  _ ->
686 *)
687         (* MATITA1.0 if BuildTimeConf.debug then begin
688           let name =
689            "/tmp/cic_browser_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
690           HLog.debug ("cic_browser: dumping MathML to ./" ^ name);
691           ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
692         end;*)
693         self#load_root ~root:txt;
694         (*current_mathml <- Some mathml*)(*)*);
695 end
696
697 let tab_label meta_markup =
698   let rec aux =
699     function
700     | `Closed m -> sprintf "<s>%s</s>" (aux m)
701     | `Current m -> sprintf "<b>%s</b>" (aux m)
702     | `Shift (pos, m) -> sprintf "|<sub>%d</sub>: %s" pos (aux m)
703     | `Meta n -> sprintf "?%d" n
704   in
705   let markup = aux meta_markup in
706   (GMisc.label ~markup ~show:true ())#coerce
707
708 let goal_of_switch = function Stack.Open g | Stack.Closed g -> g
709
710 class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () =
711   object (self)
712     inherit scriptAccessor
713
714     method cicMathView = cicMathView  (** clickableMathView accessor *)
715
716     val mutable pages = 0
717     val mutable switch_page_callback = None
718     val mutable page2goal = []  (* associative list: page no -> goal no *)
719     val mutable goal2page = []  (* the other way round *)
720     val mutable goal2win = []   (* associative list: goal no -> scrolled win *)
721     val mutable _metasenv = `Old []
722     val mutable scrolledWin: GBin.scrolled_window option = None
723       (* scrolled window to which the sequentViewer is currently attached *)
724     val logo = (GMisc.image
725       ~file:(MatitaMisc.image_path "matita_medium.png") ()
726       :> GObj.widget)
727             
728     val logo_with_qed = (GMisc.image
729       ~file:(MatitaMisc.image_path "matita_small.png") ()
730       :> GObj.widget)
731
732     method load_logo =
733      notebook#set_show_tabs false;
734      ignore(notebook#append_page logo)
735
736     method load_logo_with_qed =
737      notebook#set_show_tabs false;
738      ignore(notebook#append_page logo_with_qed)
739
740     method reset =
741       cicMathView#remove_selections;
742       (match scrolledWin with
743       | Some w ->
744           (* removing page from the notebook will destroy all contained widget,
745           * we do not want the cicMathView to be destroyed as well *)
746           w#remove cicMathView#coerce;
747           scrolledWin <- None
748       | None -> ());
749       (match switch_page_callback with
750       | Some id ->
751           GtkSignal.disconnect notebook#as_widget id;
752           switch_page_callback <- None
753       | None -> ());
754       for i = 0 to pages do notebook#remove_page 0 done; 
755       notebook#set_show_tabs true;
756       pages <- 0;
757       page2goal <- [];
758       goal2page <- [];
759       goal2win <- [];
760       _metasenv <- `Old []; 
761       self#script#setGoal None
762
763     method load_sequents : 'status. #NCicCoercion.status as 'status -> 'a
764      = fun status { proof= (_,metasenv,_subst,_,_, _) as proof; stack = stack } 
765      ->
766       _metasenv <- `Old metasenv;
767       pages <- 0;
768       let win goal_switch =
769         let w =
770           GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`ALWAYS
771             ~shadow_type:`IN ~show:true ()
772         in
773         let reparent () =
774           scrolledWin <- Some w;
775           match cicMathView#misc#parent with
776           | None -> w#add cicMathView#coerce
777           | Some parent ->
778              let parent =
779               match cicMathView#misc#parent with
780                  None -> assert false
781                | Some p -> GContainer.cast_container p
782              in
783               parent#remove cicMathView#coerce;
784               w#add cicMathView#coerce
785         in
786         goal2win <- (goal_switch, reparent) :: goal2win;
787         w#coerce
788       in
789       assert (
790         let stack_goals = Stack.open_goals stack in
791         let proof_goals = ProofEngineTypes.goals_of_proof proof in
792         if
793           HExtlib.list_uniq (List.sort Pervasives.compare stack_goals)
794           <> List.sort Pervasives.compare proof_goals
795         then begin
796           prerr_endline ("STACK GOALS = " ^ String.concat " " (List.map string_of_int stack_goals));
797           prerr_endline ("PROOF GOALS = " ^ String.concat " " (List.map string_of_int proof_goals));
798           false
799         end
800         else true
801       );
802       let render_switch =
803         function Stack.Open i ->`Meta i | Stack.Closed i ->`Closed (`Meta i)
804       in
805       let page = ref 0 in
806       let added_goals = ref [] in
807         (* goals can be duplicated on the tack due to focus, but we should avoid
808          * multiple labels in the user interface *)
809       let add_tab markup goal_switch =
810         let goal = Stack.goal_of_switch goal_switch in
811         if not (List.mem goal !added_goals) then begin
812           ignore(notebook#append_page 
813             ~tab_label:(tab_label markup) (win goal_switch));
814           page2goal <- (!page, goal_switch) :: page2goal;
815           goal2page <- (goal_switch, !page) :: goal2page;
816           incr page;
817           pages <- pages + 1;
818           added_goals := goal :: !added_goals
819         end
820       in
821       let add_switch _ _ (_, sw) = add_tab (render_switch sw) sw in
822       Stack.iter  (** populate notebook with tabs *)
823         ~env:(fun depth tag (pos, sw) ->
824           let markup =
825             match depth, pos with
826             | 0, 0 -> `Current (render_switch sw)
827             | 0, _ -> `Shift (pos, `Current (render_switch sw))
828             | 1, pos when Stack.head_tag stack = `BranchTag ->
829                 `Shift (pos, render_switch sw)
830             | _ -> render_switch sw
831           in
832           add_tab markup sw)
833         ~cont:add_switch ~todo:add_switch
834         stack;
835       switch_page_callback <-
836         Some (notebook#connect#switch_page ~callback:(fun page ->
837           let goal_switch =
838             try List.assoc page page2goal with Not_found -> assert false
839           in
840           self#script#setGoal (Some (goal_of_switch goal_switch));
841           self#render_page status ~page ~goal_switch))
842
843     method nload_sequents : 'status. #NTacStatus.tac_status as 'status -> unit
844     = fun status ->
845      let _,_,metasenv,subst,_ = status#obj in
846       _metasenv <- `New (metasenv,subst);
847       pages <- 0;
848       let win goal_switch =
849         let w =
850           GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`ALWAYS
851             ~shadow_type:`IN ~show:true ()
852         in
853         let reparent () =
854           scrolledWin <- Some w;
855           match cicMathView#misc#parent with
856           | None -> w#add cicMathView#coerce
857           | Some parent ->
858              let parent =
859               match cicMathView#misc#parent with
860                  None -> assert false
861                | Some p -> GContainer.cast_container p
862              in
863               parent#remove cicMathView#coerce;
864               w#add cicMathView#coerce
865         in
866         goal2win <- (goal_switch, reparent) :: goal2win;
867         w#coerce
868       in
869       assert (
870         let stack_goals = Stack.open_goals status#stack in
871         let proof_goals = List.map fst metasenv in
872         if
873           HExtlib.list_uniq (List.sort Pervasives.compare stack_goals)
874           <> List.sort Pervasives.compare proof_goals
875         then begin
876           prerr_endline ("STACK GOALS = " ^ String.concat " " (List.map string_of_int stack_goals));
877           prerr_endline ("PROOF GOALS = " ^ String.concat " " (List.map string_of_int proof_goals));
878           false
879         end
880         else true
881       );
882       let render_switch =
883         function Stack.Open i ->`Meta i | Stack.Closed i ->`Closed (`Meta i)
884       in
885       let page = ref 0 in
886       let added_goals = ref [] in
887         (* goals can be duplicated on the tack due to focus, but we should avoid
888          * multiple labels in the user interface *)
889       let add_tab markup goal_switch =
890         let goal = Stack.goal_of_switch goal_switch in
891         if not (List.mem goal !added_goals) then begin
892           ignore(notebook#append_page 
893             ~tab_label:(tab_label markup) (win goal_switch));
894           page2goal <- (!page, goal_switch) :: page2goal;
895           goal2page <- (goal_switch, !page) :: goal2page;
896           incr page;
897           pages <- pages + 1;
898           added_goals := goal :: !added_goals
899         end
900       in
901       let add_switch _ _ (_, sw) = add_tab (render_switch sw) sw in
902       Stack.iter  (** populate notebook with tabs *)
903         ~env:(fun depth tag (pos, sw) ->
904           let markup =
905             match depth, pos with
906             | 0, 0 -> `Current (render_switch sw)
907             | 0, _ -> `Shift (pos, `Current (render_switch sw))
908             | 1, pos when Stack.head_tag status#stack = `BranchTag ->
909                 `Shift (pos, render_switch sw)
910             | _ -> render_switch sw
911           in
912           add_tab markup sw)
913         ~cont:add_switch ~todo:add_switch
914         status#stack;
915       switch_page_callback <-
916         Some (notebook#connect#switch_page ~callback:(fun page ->
917           let goal_switch =
918             try List.assoc page page2goal with Not_found -> assert false
919           in
920           self#script#setGoal (Some (goal_of_switch goal_switch));
921           self#render_page status ~page ~goal_switch))
922
923     method private render_page:
924      'status. #NCicCoercion.status as 'status -> page:int ->
925        goal_switch:Stack.switch -> unit
926      = fun status ~page ~goal_switch ->
927       (match goal_switch with
928       | Stack.Open goal ->
929          (match _metasenv with
930              `Old menv -> cicMathView#load_sequent menv goal
931            | `New (menv,subst) ->
932                cicMathView#nload_sequent status menv subst goal)
933       | Stack.Closed goal ->
934           let doc = Lazy.force closed_goal_mathml in
935           cicMathView#load_root ~root:doc);
936       (try
937         cicMathView#set_selection None;
938         List.assoc goal_switch goal2win ()
939       with Not_found -> assert false)
940
941     method goto_sequent: 'status. #NCicCoercion.status as 'status -> int -> unit
942      = fun status goal ->
943       let goal_switch, page =
944         try
945           List.find
946             (function Stack.Open g, _ | Stack.Closed g, _ -> g = goal)
947             goal2page
948         with Not_found -> assert false
949       in
950       notebook#goto_page page;
951       self#render_page status ~page ~goal_switch
952
953   end
954
955  (** constructors *)
956 type 'widget constructor =
957  ?hadjustment:GData.adjustment ->
958  ?vadjustment:GData.adjustment ->
959  ?font_size:int ->
960  ?log_verbosity:int ->
961  ?auto_indent:bool ->
962  ?highlight_current_line:bool ->
963  ?indent_on_tab:bool ->
964  ?indent_width:int ->
965  ?insert_spaces_instead_of_tabs:bool ->
966  ?right_margin_position:int ->
967  ?show_line_marks:bool ->
968  ?show_line_numbers:bool ->
969  ?show_right_margin:bool ->
970  ?smart_home_end:SourceView2Enums.source_smart_home_end_type ->
971  ?tab_width:int ->
972  ?editable:bool ->
973  ?cursor_visible:bool ->
974  ?justification:GtkEnums.justification ->
975  ?wrap_mode:GtkEnums.wrap_mode ->
976  ?accepts_tab:bool ->
977  ?border_width:int ->
978  ?width:int ->
979  ?height:int ->
980  ?packing:(GObj.widget -> unit) ->
981  ?show:bool -> unit ->
982   'widget
983
984 let cicMathView ?hadjustment ?vadjustment ?font_size ?log_verbosity =
985   SourceView.make_params [] ~cont:(
986     GtkText.View.make_params ~cont:(
987       GContainer.pack_container ~create:(fun pl ->
988         let obj = SourceView.new_ () in
989         Gobject.set_params (Gobject.try_cast obj "GtkSourceView") pl;
990         new cicMathView obj)))
991 (* MATITA 1.0
992   GtkBase.Widget.size_params
993     ~cont:(OgtkMathViewProps.pack_return (fun p ->
994       OgtkMathViewProps.set_params
995         (new cicMathView (GtkMathViewProps.MathView_GMetaDOM.create p))
996         ~font_size ~log_verbosity))
997     []
998 *)
999
1000 let blank_uri = BuildTimeConf.blank_uri
1001 let current_proof_uri = BuildTimeConf.current_proof_uri
1002
1003 type term_source =
1004   [ `Ast of CicNotationPt.term
1005   | `Cic of Cic.term * Cic.metasenv
1006   | `NCic of NCic.term * NCic.context * NCic.metasenv * NCic.substitution
1007   | `String of string
1008   ]
1009
1010 class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history)
1011   ()
1012 =
1013   let uri_RE =
1014     Pcre.regexp
1015       "^cic:/([^/]+/)*[^/]+\\.(con|ind|var)(#xpointer\\(\\d+(/\\d+)+\\))?$"
1016   in
1017   let dir_RE = Pcre.regexp "^cic:((/([^/]+/)*[^/]+(/)?)|/|)$" in
1018   let is_uri txt = Pcre.pmatch ~rex:uri_RE txt in
1019   let is_dir txt = Pcre.pmatch ~rex:dir_RE txt in
1020   let gui = get_gui () in
1021   let (win: MatitaGuiTypes.browserWin) = gui#newBrowserWin () in
1022   let gviz = LablGraphviz.graphviz ~packing:win#graphScrolledWin#add () in
1023   let searchText = 
1024     GSourceView2.source_view ~auto_indent:false ~editable:false ()
1025   in
1026   let _ =
1027      win#scrolledwinContent#add (searchText :> GObj.widget);
1028      let callback () = 
1029        let text = win#entrySearch#text in
1030        let highlight start end_ =
1031          searchText#source_buffer#move_mark `INSERT ~where:start;
1032          searchText#source_buffer#move_mark `SEL_BOUND ~where:end_;
1033          searchText#scroll_mark_onscreen `INSERT
1034        in
1035        let iter = searchText#source_buffer#get_iter `SEL_BOUND in
1036        match iter#forward_search text with
1037        | None -> 
1038            (match searchText#source_buffer#start_iter#forward_search text with
1039            | None -> ()
1040            | Some (start,end_) -> highlight start end_)
1041        | Some (start,end_) -> highlight start end_
1042      in
1043      ignore(win#entrySearch#connect#activate ~callback);
1044      ignore(win#buttonSearch#connect#clicked ~callback);
1045   in
1046   let toplevel = win#toplevel in
1047   let mathView = cicMathView ~packing:win#scrolledBrowser#add () in
1048   let fail message = 
1049     MatitaGtkMisc.report_error ~title:"Cic browser" ~message 
1050       ~parent:toplevel ()  
1051   in
1052   let tags =
1053     [ "dir", GdkPixbuf.from_file (MatitaMisc.image_path "matita-folder.png");
1054       "obj", GdkPixbuf.from_file (MatitaMisc.image_path "matita-object.png") ]
1055   in
1056   let b = (not (Helm_registry.get_bool "matita.debug")) in
1057   let handle_error f =
1058     try
1059       f ()
1060     with exn ->
1061       if b then
1062         fail (snd (MatitaExcPp.to_string exn))
1063       else raise exn
1064   in
1065   let handle_error' f = (fun () -> handle_error (fun () -> f ())) in
1066   let load_easter_egg = lazy (
1067     win#browserImage#set_file (MatitaMisc.image_path "meegg.png"))
1068   in
1069   let load_hints () =
1070       let module Pp = GraphvizPp.Dot in
1071       let filename, oc = Filename.open_temp_file "matita" ".dot" in
1072       let fmt = Format.formatter_of_out_channel oc in
1073       let status = (MatitaScript.current ())#grafite_status in
1074       Pp.header 
1075         ~name:"Hints"
1076         ~graph_type:"graph"
1077         ~graph_attrs:["overlap", "false"]
1078         ~node_attrs:["fontsize", "9"; "width", ".4"; 
1079             "height", ".4"; "shape", "box"]
1080         ~edge_attrs:["fontsize", "10"; "len", "2"] fmt;
1081       NCicUnifHint.generate_dot_file status fmt;
1082       Pp.trailer fmt;
1083       Pp.raw "@." fmt;
1084       close_out oc;
1085       gviz#load_graph_from_file ~gviz_cmd:"neato -Tpng" filename;
1086       (*HExtlib.safe_remove filename*)
1087   in
1088   let load_coerchgraph tred () = 
1089       let module Pp = GraphvizPp.Dot in
1090       let filename, oc = Filename.open_temp_file "matita" ".dot" in
1091       let fmt = Format.formatter_of_out_channel oc in
1092       Pp.header 
1093         ~name:"Coercions"
1094         ~node_attrs:["fontsize", "9"; "width", ".4"; "height", ".4"]
1095         ~edge_attrs:["fontsize", "10"] fmt;
1096       let status = (MatitaScript.current ())#grafite_status in
1097       NCicCoercion.generate_dot_file status fmt;
1098       Pp.trailer fmt;
1099       Pp.header 
1100         ~name:"OLDCoercions"
1101         ~node_attrs:["fontsize", "9"; "width", ".4"; "height", ".4"]
1102         ~edge_attrs:["fontsize", "10"] fmt;
1103       CoercGraph.generate_dot_file fmt;
1104       Pp.trailer fmt;
1105       Pp.raw "@." fmt;
1106       close_out oc;
1107       if tred then
1108         gviz#load_graph_from_file 
1109           ~gviz_cmd:"dot -Txdot | tred |gvpack -gv | dot" filename
1110       else
1111         gviz#load_graph_from_file 
1112           ~gviz_cmd:"dot -Txdot | gvpack -gv | dot" filename;
1113       HExtlib.safe_remove filename
1114   in
1115   object (self)
1116     inherit scriptAccessor
1117     
1118     (* Whelp bar queries *)
1119
1120     val mutable gviz_graph = MetadataDeps.DepGraph.dummy
1121     val mutable gviz_uri = UriManager.uri_of_string "cic:/dummy.con";
1122
1123     val dep_contextual_menu = GMenu.menu ()
1124
1125     initializer
1126       win#mathOrListNotebook#set_show_tabs false;
1127       win#browserForwardButton#misc#set_sensitive false;
1128       win#browserBackButton#misc#set_sensitive false;
1129       ignore (win#browserUri#connect#activate (handle_error' (fun () ->
1130         self#loadInput win#browserUri#text)));
1131       ignore (win#browserHomeButton#connect#clicked (handle_error' (fun () ->
1132         self#load (`About `Current_proof))));
1133       ignore (win#browserRefreshButton#connect#clicked
1134         (handle_error' (self#refresh ~force:true)));
1135       ignore (win#browserBackButton#connect#clicked (handle_error' self#back));
1136       ignore (win#browserForwardButton#connect#clicked
1137         (handle_error' self#forward));
1138       ignore (win#toplevel#event#connect#delete (fun _ ->
1139         let my_id = Oo.id self in
1140         cicBrowsers := List.filter (fun b -> Oo.id b <> my_id) !cicBrowsers;
1141         false));
1142       ignore(win#whelpResultTreeview#connect#row_activated 
1143         ~callback:(fun _ _ ->
1144           handle_error (fun () -> self#loadInput (self#_getSelectedUri ()))));
1145       mathView#set_href_callback (Some (fun uri ->
1146         handle_error (fun () ->
1147          let uri =
1148           try
1149            `Uri (UriManager.uri_of_string uri)
1150           with
1151            UriManager.IllFormedUri _ ->
1152             `NRef (NReference.reference_of_string uri)
1153          in
1154           self#load uri)));
1155       gviz#connect_href (fun button_ev attrs ->
1156         let time = GdkEvent.Button.time button_ev in
1157         let uri = List.assoc "href" attrs in
1158         gviz_uri <- UriManager.uri_of_string uri;
1159         match GdkEvent.Button.button button_ev with
1160         | button when button = left_button -> self#load (`Uri gviz_uri)
1161         | button when button = right_button ->
1162             dep_contextual_menu#popup ~button ~time
1163         | _ -> ());
1164       connect_menu_item win#browserCloseMenuItem (fun () ->
1165         let my_id = Oo.id self in
1166         cicBrowsers := List.filter (fun b -> Oo.id b <> my_id) !cicBrowsers;
1167         win#toplevel#misc#hide(); win#toplevel#destroy ());
1168       (* remove hbugs *)
1169       (*
1170       connect_menu_item win#hBugsTutorsMenuItem (fun () ->
1171         self#load (`HBugs `Tutors));
1172       *)
1173       win#hBugsTutorsMenuItem#misc#hide ();
1174       connect_menu_item win#browserUrlMenuItem (fun () ->
1175         win#browserUri#misc#grab_focus ());
1176       connect_menu_item win#univMenuItem (fun () ->
1177         match self#currentCicUri with
1178         | Some uri -> self#load (`Univs uri)
1179         | None -> ());
1180
1181       (* fill dep graph contextual menu *)
1182       let go_menu_item =
1183         GMenu.image_menu_item ~label:"Browse it"
1184           ~packing:dep_contextual_menu#append () in
1185       let expand_menu_item =
1186         GMenu.image_menu_item ~label:"Expand"
1187           ~packing:dep_contextual_menu#append () in
1188       let collapse_menu_item =
1189         GMenu.image_menu_item ~label:"Collapse"
1190           ~packing:dep_contextual_menu#append () in
1191       dep_contextual_menu#append (go_menu_item :> GMenu.menu_item);
1192       dep_contextual_menu#append (expand_menu_item :> GMenu.menu_item);
1193       dep_contextual_menu#append (collapse_menu_item :> GMenu.menu_item);
1194       connect_menu_item go_menu_item (fun () -> self#load (`Uri gviz_uri));
1195       connect_menu_item expand_menu_item (fun () ->
1196         MetadataDeps.DepGraph.expand gviz_uri gviz_graph;
1197         self#redraw_gviz ~center_on:gviz_uri ());
1198       connect_menu_item collapse_menu_item (fun () ->
1199         MetadataDeps.DepGraph.collapse gviz_uri gviz_graph;
1200         self#redraw_gviz ~center_on:gviz_uri ());
1201
1202       self#_load (`About `Blank);
1203       toplevel#show ()
1204
1205     val mutable current_entry = `About `Blank 
1206
1207       (** @return None if no object uri can be built from the current entry *)
1208     method private currentCicUri =
1209       match current_entry with
1210       | `Uri uri -> Some uri
1211       | _ -> None
1212
1213     val model =
1214       new MatitaGtkMisc.taggedStringListModel tags win#whelpResultTreeview
1215     val model_univs =
1216       new MatitaGtkMisc.multiStringListModel ~cols:2 win#universesTreeview
1217
1218     val mutable lastDir = ""  (* last loaded "directory" *)
1219
1220     method mathView = (mathView :> MatitaGuiTypes.clickableMathView)
1221
1222     method private _getSelectedUri () =
1223       match model#easy_selection () with
1224       | [sel] when is_uri sel -> sel  (* absolute URI selected *)
1225 (*       | [sel] -> win#browserUri#entry#text ^ sel  |+ relative URI selected +| *)
1226       | [sel] -> lastDir ^ sel
1227       | _ -> assert false
1228
1229     (** history RATIONALE 
1230      *
1231      * All operations about history are done using _historyFoo.
1232      * Only toplevel functions (ATM load and loadInput) call _historyAdd.
1233      *)
1234           
1235     method private _historyAdd item = 
1236       history#add item;
1237       win#browserBackButton#misc#set_sensitive true;
1238       win#browserForwardButton#misc#set_sensitive false
1239
1240     method private _historyPrev () =
1241       let item = history#previous in
1242       if history#is_begin then win#browserBackButton#misc#set_sensitive false;
1243       win#browserForwardButton#misc#set_sensitive true;
1244       item
1245     
1246     method private _historyNext () =
1247       let item = history#next in
1248       if history#is_end then win#browserForwardButton#misc#set_sensitive false;
1249       win#browserBackButton#misc#set_sensitive true;
1250       item
1251
1252     (** notebook RATIONALE 
1253      * 
1254      * Use only these functions to switch between the tabs
1255      *)
1256     method private _showMath = win#mathOrListNotebook#goto_page  0
1257     method private _showList = win#mathOrListNotebook#goto_page  1
1258     method private _showList2 = win#mathOrListNotebook#goto_page 5
1259     method private _showSearch = win#mathOrListNotebook#goto_page 6
1260     method private _showGviz = win#mathOrListNotebook#goto_page  3
1261     method private _showHBugs = win#mathOrListNotebook#goto_page 4
1262
1263     method private back () =
1264       try
1265         self#_load (self#_historyPrev ())
1266       with MatitaMisc.History_failure -> ()
1267
1268     method private forward () =
1269       try
1270         self#_load (self#_historyNext ())
1271       with MatitaMisc.History_failure -> ()
1272
1273       (* loads a uri which can be a cic uri or an about:* uri
1274       * @param uri string *)
1275     method private _load ?(force=false) entry =
1276       handle_error (fun () ->
1277        if entry <> current_entry || entry = `About `Current_proof || entry =
1278          `About `Coercions || entry = `About `CoercionsFull || force then
1279         begin
1280           (match entry with
1281           | `About `Current_proof -> self#home ()
1282           | `About `Blank -> self#blank ()
1283           | `About `Us -> self#egg ()
1284           | `About `CoercionsFull -> self#coerchgraph false ()
1285           | `About `Coercions -> self#coerchgraph true ()
1286           | `About `Hints -> self#hints ()
1287           | `About `TeX -> self#tex ()
1288           | `About `Grammar -> self#grammar () 
1289           | `Check term -> self#_loadCheck term
1290           | `Cic (term, metasenv) -> self#_loadTermCic term metasenv
1291           | `NCic (term, ctx, metasenv, subst) -> 
1292                self#_loadTermNCic term metasenv subst ctx
1293           | `Dir dir -> self#_loadDir dir
1294           | `HBugs `Tutors -> self#_loadHBugsTutors
1295           | `Uri uri -> self#_loadUriManagerUri uri
1296           | `NRef nref -> self#_loadNReference nref
1297           | `Univs uri -> self#_loadUnivs uri);
1298           self#setEntry entry
1299         end)
1300
1301     method private blank () =
1302       self#_showMath;
1303       mathView#load_root ""
1304
1305     method private _loadCheck term =
1306       failwith "not implemented _loadCheck";
1307 (*       self#_showMath *)
1308
1309     method private egg () =
1310       win#mathOrListNotebook#goto_page 2;
1311       Lazy.force load_easter_egg
1312
1313     method private redraw_gviz ?center_on () =
1314       if Sys.command "which dot" = 0 then
1315        let tmpfile, oc = Filename.open_temp_file "matita" ".dot" in
1316        let fmt = Format.formatter_of_out_channel oc in
1317        MetadataDeps.DepGraph.render fmt gviz_graph;
1318        close_out oc;
1319        gviz#load_graph_from_file ~gviz_cmd:"tred | dot" tmpfile;
1320        (match center_on with
1321        | None -> ()
1322        | Some uri -> gviz#center_on_href (UriManager.string_of_uri uri));
1323        HExtlib.safe_remove tmpfile
1324       else
1325        MatitaGtkMisc.report_error ~title:"graphviz error"
1326         ~message:("Graphviz is not installed but is necessary to render "^
1327          "the graph of dependencies amoung objects. Please install it.")
1328         ~parent:win#toplevel ()
1329
1330     method private dependencies direction uri () =
1331       let dbd = LibraryDb.instance () in
1332       let graph =
1333         match direction with
1334         | `Fwd -> MetadataDeps.DepGraph.direct_deps ~dbd uri
1335         | `Back -> MetadataDeps.DepGraph.inverse_deps ~dbd uri in
1336       gviz_graph <- graph;  (** XXX check this for memory consuption *)
1337       self#redraw_gviz ~center_on:uri ();
1338       self#_showGviz
1339
1340     method private coerchgraph tred () =
1341       load_coerchgraph tred ();
1342       self#_showGviz
1343
1344     method private hints () =
1345       load_hints ();
1346       self#_showGviz
1347
1348     method private tex () =
1349       let b = Buffer.create 1000 in
1350       Printf.bprintf b "UTF-8 equivalence classes (rotate with ALT-L):\n\n";
1351       List.iter 
1352         (fun l ->
1353            List.iter (fun sym ->
1354              Printf.bprintf b "  %s" (Glib.Utf8.from_unichar sym) 
1355            ) l;
1356            Printf.bprintf b "\n";
1357         )
1358         (List.sort 
1359           (fun l1 l2 -> compare (List.hd l1) (List.hd l2))
1360           (Virtuals.get_all_eqclass ()));
1361       Printf.bprintf b "\n\nVirtual keys (trigger with ALT-L):\n\n";
1362       List.iter 
1363         (fun tag, items -> 
1364            Printf.bprintf b "  %s:\n" tag;
1365            List.iter 
1366              (fun names, symbol ->
1367                 Printf.bprintf b "  \t%s\t%s\n" 
1368                   (Glib.Utf8.from_unichar symbol)
1369                   (String.concat ", " names))
1370              (List.sort 
1371                (fun (_,a) (_,b) -> compare a b)
1372                items);
1373            Printf.bprintf b "\n")
1374         (List.sort 
1375           (fun (a,_) (b,_) -> compare a b)
1376           (Virtuals.get_all_virtuals ()));
1377       self#_loadText (Buffer.contents b)
1378
1379     method private _loadText text =
1380       searchText#source_buffer#set_text text;
1381       win#entrySearch#misc#grab_focus ();
1382       self#_showSearch
1383
1384     method private grammar () =
1385       self#_loadText (Print_grammar.ebnf_of_term ());
1386
1387     method private home () =
1388       self#_showMath;
1389       match self#script#grafite_status#proof_status with
1390       | Proof  (uri, metasenv, _subst, bo, ty, attrs) ->
1391          let name = UriManager.name_of_uri (HExtlib.unopt uri) in
1392          let obj =
1393           Cic.CurrentProof (name, metasenv, Lazy.force bo, ty, [], attrs)
1394          in
1395           self#_loadObj obj
1396       | Incomplete_proof { proof = (uri, metasenv, _subst, bo, ty, attrs) } ->
1397          let name = UriManager.name_of_uri (HExtlib.unopt uri) in
1398          let obj =
1399           Cic.CurrentProof (name, metasenv, Lazy.force bo, ty, [], attrs)
1400          in
1401           self#_loadObj obj
1402       | _ ->
1403         match self#script#grafite_status#ng_mode with
1404            `ProofMode ->
1405              self#_loadNObj self#script#grafite_status
1406              self#script#grafite_status#obj
1407          | _ -> self#blank ()
1408
1409       (** loads a cic uri from the environment
1410       * @param uri UriManager.uri *)
1411     method private _loadUriManagerUri uri =
1412       let uri = UriManager.strip_xpointer uri in
1413       let (obj, _) = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1414       self#_loadObj obj
1415
1416     method private _loadNReference (NReference.Ref (uri,_)) =
1417       let obj = NCicEnvironment.get_checked_obj uri in
1418       self#_loadNObj self#script#grafite_status obj
1419
1420     method private _loadUnivs uri =
1421       let uri = UriManager.strip_xpointer uri in
1422       let (_, u) = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1423       let _,us = CicUniv.do_rank u in
1424       let l = 
1425         List.map 
1426           (fun u -> 
1427            [ CicUniv.string_of_universe u ; string_of_int (CicUniv.get_rank u)])
1428           us 
1429       in
1430       self#_loadList2 l
1431       
1432     method private _loadDir dir = 
1433       let content = Http_getter.ls ~local:false dir in
1434       let l =
1435         List.fast_sort
1436           Pervasives.compare
1437           (List.map
1438             (function 
1439               | Http_getter_types.Ls_section s -> "dir", s
1440               | Http_getter_types.Ls_object o -> "obj", o.Http_getter_types.uri)
1441             content)
1442       in
1443       lastDir <- dir;
1444       self#_loadList l
1445
1446     method private _loadHBugsTutors =
1447       self#_showHBugs
1448
1449     method private setEntry entry =
1450       win#browserUri#set_text (MatitaTypes.string_of_entry entry);
1451       current_entry <- entry
1452
1453     method private _loadObj obj =
1454       (* showMath must be done _before_ loading the document, since if the
1455        * widget is not mapped (hidden by the notebook) the document is not
1456        * rendered *)
1457       self#_showMath;
1458       mathView#load_object obj
1459
1460     method private _loadNObj status obj =
1461       (* showMath must be done _before_ loading the document, since if the
1462        * widget is not mapped (hidden by the notebook) the document is not
1463        * rendered *)
1464       self#_showMath;
1465       mathView#load_nobject status obj
1466
1467     method private _loadTermCic term metasenv =
1468       let context = self#script#proofContext in
1469       let dummyno = CicMkImplicit.new_meta metasenv [] in
1470       let sequent = (dummyno, context, term) in
1471       mathView#load_sequent (sequent :: metasenv) dummyno;
1472       self#_showMath
1473
1474     method private _loadTermNCic term m s c =
1475       let d = 0 in
1476       let m = (0,([],c,term))::m in
1477       let status = (MatitaScript.current ())#grafite_status in
1478       mathView#nload_sequent status m s d;
1479       self#_showMath
1480
1481     method private _loadList l =
1482       model#list_store#clear ();
1483       List.iter (fun (tag, s) -> model#easy_append ~tag s) l;
1484       self#_showList
1485
1486     method private _loadList2 l =
1487       model_univs#list_store#clear ();
1488       List.iter model_univs#easy_mappend l;
1489       self#_showList2
1490     
1491     (** { public methods, all must call _load!! } *)
1492       
1493     method load entry =
1494       handle_error (fun () -> self#_load entry; self#_historyAdd entry)
1495
1496     (**  this is what the browser does when you enter a string an hit enter *)
1497     method loadInput txt =
1498       let txt = HExtlib.trim_blanks txt in
1499       (* (* ZACK: what the heck? *)
1500       let fix_uri txt =
1501         UriManager.string_of_uri
1502           (UriManager.strip_xpointer (UriManager.uri_of_string txt))
1503       in
1504       *)
1505         let entry =
1506           match txt with
1507           | txt when is_uri txt ->
1508               `Uri (UriManager.uri_of_string ((*fix_uri*) txt))
1509           | txt when is_dir txt -> `Dir (MatitaMisc.normalize_dir txt)
1510           | txt ->
1511              (try
1512                MatitaTypes.entry_of_string txt
1513               with Invalid_argument _ ->
1514                raise
1515                 (GrafiteTypes.Command_error(sprintf "unsupported uri: %s" txt)))
1516         in
1517         self#_load entry;
1518         self#_historyAdd entry
1519
1520       (** {2 methods accessing underlying GtkMathView} *)
1521
1522     method updateFontSize = mathView#set_font_size !current_font_size
1523
1524       (** {2 methods used by constructor only} *)
1525
1526     method win = win
1527     method history = history
1528     method currentEntry = current_entry
1529     method refresh ~force () = self#_load ~force current_entry
1530
1531   end
1532   
1533 let sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) ():
1534   MatitaGuiTypes.sequentsViewer
1535 =
1536   new sequentsViewer ~notebook ~cicMathView ()
1537
1538 let cicBrowser () =
1539   let size = BuildTimeConf.browser_history_size in
1540   let rec aux history =
1541     let browser = new cicBrowser_impl ~history () in
1542     let win = browser#win in
1543     ignore (win#browserNewButton#connect#clicked (fun () ->
1544       let history =
1545         new MatitaMisc.browser_history ~memento:history#save size
1546           (`About `Blank)
1547       in
1548       let newBrowser = aux history in
1549       newBrowser#load browser#currentEntry));
1550 (*
1551       (* attempt (failed) to close windows on CTRL-W ... *)
1552     MatitaGtkMisc.connect_key win#browserWinEventBox#event ~modifiers:[`CONTROL]
1553       GdkKeysyms._W (fun () -> win#toplevel#destroy ());
1554 *)
1555     cicBrowsers := browser :: !cicBrowsers;
1556     (browser :> MatitaGuiTypes.cicBrowser)
1557   in
1558   let history = new MatitaMisc.browser_history size (`About `Blank) in
1559   aux history
1560
1561 let default_cicMathView () = cicMathView ~show:true ()
1562 let cicMathView_instance = MatitaMisc.singleton default_cicMathView
1563
1564 let default_sequentsViewer () =
1565   let gui = get_gui () in
1566   let cicMathView = cicMathView_instance () in
1567   sequentsViewer ~notebook:gui#main#sequentsNotebook ~cicMathView ()
1568 let sequentsViewer_instance = MatitaMisc.singleton default_sequentsViewer
1569
1570 let mathViewer () = 
1571   object(self)
1572     method private get_browser reuse = 
1573       if reuse then
1574         (match !cicBrowsers with
1575         | [] -> cicBrowser ()
1576         | b :: _ -> (b :> MatitaGuiTypes.cicBrowser))
1577       else
1578         (cicBrowser ())
1579           
1580     method show_entry ?(reuse=false) t = (self#get_browser reuse)#load t
1581       
1582     method show_uri_list ?(reuse=false) ~entry l =
1583       (self#get_browser reuse)#load entry
1584
1585     method screenshot status sequents metasenv subst (filename as ofn) =
1586       () (*MATITA 1.0
1587        let w = GWindow.window ~title:"screenshot" () in
1588        let width = 500 in
1589        let height = 2000 in
1590        let m = GMathView.math_view 
1591           ~font_size:!current_font_size ~width ~height
1592           ~packing:w#add
1593           ~show:true ()
1594        in
1595        w#show ();
1596        let filenames = 
1597         HExtlib.list_mapi
1598          (fun (mno,_ as sequent) i ->
1599             let mathml = 
1600               ApplyTransformation.nmml_of_cic_sequent 
1601                 status metasenv subst sequent
1602             in
1603             m#load_root ~root:mathml#get_documentElement;
1604             let pixmap = m#get_buffer in
1605             let pixbuf = GdkPixbuf.create ~width ~height () in
1606             GdkPixbuf.get_from_drawable ~dest:pixbuf pixmap;
1607             let filename = 
1608               filename ^ "-raw" ^ string_of_int i ^ ".png" 
1609             in
1610             GdkPixbuf.save ~filename ~typ:"png" pixbuf;
1611             filename,mno)
1612          sequents
1613        in
1614        let items = 
1615          List.map (fun (x,mno) -> 
1616            ignore(Sys.command
1617              (Printf.sprintf
1618               ("convert "^^
1619               " '(' -gravity west -bordercolor grey -border 1 label:%d ')' "^^
1620               " '(' -trim -bordercolor white -border 5 "^^
1621                 " -bordercolor grey -border 1 %s ')' -append %s ")
1622               mno
1623               (Filename.quote x)
1624               (Filename.quote (x ^ ".label.png"))));
1625              x ^ ".label.png")
1626          filenames
1627        in
1628        let rec div2 = function 
1629          | [] -> []
1630          | [x] -> [[x]]
1631          | x::y::tl -> [x;y] :: div2 tl
1632        in
1633        let items = div2 items in
1634        ignore(Sys.command (Printf.sprintf 
1635          "convert %s -append  %s" 
1636           (String.concat ""
1637             (List.map (fun items ->
1638               Printf.sprintf " '(' %s +append ')' "
1639                 (String.concat 
1640                    (" '(' -gravity center -size 10x10 xc: ')' ") items)) items))
1641          (Filename.quote (ofn ^ ".png")))); 
1642        List.iter (fun x,_ -> Sys.remove x) filenames;
1643        List.iter Sys.remove (List.flatten items);
1644        w#destroy ();
1645     *)
1646   end
1647
1648 let refresh_all_browsers () =
1649   List.iter (fun b -> b#refresh ~force:false ()) !cicBrowsers
1650
1651 let update_font_sizes () =
1652   List.iter (fun b -> b#updateFontSize) !cicBrowsers;
1653   (cicMathView_instance ())#update_font_size
1654
1655 let get_math_views () =
1656   ((cicMathView_instance ()) :> MatitaGuiTypes.clickableMathView)
1657   :: (List.map (fun b -> b#mathView) !cicBrowsers)
1658
1659 let find_selection_owner () =
1660   let rec aux =
1661     function
1662     | [] -> raise Not_found
1663     | mv :: tl ->
1664         (match mv#get_selections with
1665         | [] -> aux tl
1666         | sel :: _ -> mv)
1667   in
1668   aux (get_math_views ())
1669
1670 let has_selection () =
1671   try ignore (find_selection_owner ()); true
1672   with Not_found -> false
1673
1674 let math_view_clipboard = ref None (* associative list target -> string *)
1675 let has_clipboard () = !math_view_clipboard <> None
1676 let empty_clipboard () = math_view_clipboard := None
1677
1678 let copy_selection () =
1679   try
1680     math_view_clipboard :=
1681       Some ((find_selection_owner ())#strings_of_selection)
1682   with Not_found -> failwith "no selection"
1683
1684 let paste_clipboard paste_kind =
1685   match !math_view_clipboard with
1686   | None -> failwith "empty clipboard"
1687   | Some cb ->
1688       (try List.assoc paste_kind cb with Not_found -> assert false)
1689