]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaMathView.ml
5c0bc953440814feedad53cfc395253fe35b49fc
[helm.git] / 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 xlink_ns = Gdome.domString "http://www.w3.org/1999/xlink"
69 let helm_ns = Gdome.domString "http://www.cs.unibo.it/helm"
70 let href_ds = Gdome.domString "href"
71 let xref_ds = Gdome.domString "xref"
72
73 let domImpl = Gdome.domImplementation ()
74
75   (** Gdome.element of a MathML document whose rendering should be blank. Used
76   * by cicBrowser to render "about:blank" document *)
77 let empty_mathml = lazy (
78   domImpl#createDocument ~namespaceURI:(Some DomMisc.mathml_ns)
79     ~qualifiedName:(Gdome.domString "math") ~doctype:None)
80
81 let empty_boxml = lazy (
82   domImpl#createDocument ~namespaceURI:(Some DomMisc.boxml_ns) 
83     ~qualifiedName:(Gdome.domString "box") ~doctype:None)
84
85   (** shown for goals closed by side effects *)
86 let closed_goal_mathml = lazy (
87   domImpl#createDocumentFromURI ~uri:BuildTimeConf.closed_xml ())
88
89 (* ids_to_terms should not be passed here, is just for debugging *)
90 let find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types =
91   let find_parent id ids =
92     let rec aux id =
93 (*       (prerr_endline (sprintf "id %s = %s" id
94         (try
95           CicPp.ppterm (Hashtbl.find ids_to_terms id)
96         with Not_found -> "NONE"))); *)
97       if List.mem id ids then Some id
98       else
99         (match
100           (try Hashtbl.find ids_to_father_ids id with Not_found -> None)
101         with
102         | None -> None
103         | Some id' -> aux id')
104     in
105     aux id
106   in
107   let return_father id ids =
108     match find_parent id ids with
109     | None -> assert false
110     | Some parent_id -> parent_id
111   in
112   let mk_ids terms = List.map CicUtil.id_of_annterm terms in
113   let inner_types =
114    Hashtbl.fold
115     (fun _ types acc ->
116       match types.Cic2acic.annexpected with
117          None -> types.Cic2acic.annsynthesized :: acc
118        | Some ty -> ty :: types.Cic2acic.annsynthesized :: acc
119     ) ids_to_inner_types [] in
120   match annobj with
121   | Cic.AConstant (_, _, _, Some bo, ty, _, _)
122   | Cic.AVariable (_, _, Some bo, ty, _, _)
123   | Cic.ACurrentProof (_, _, _, _, bo, ty, _, _) ->
124       return_father id (mk_ids (ty :: bo :: inner_types))
125   | Cic.AConstant (_, _, _, None, ty, _, _)
126   | Cic.AVariable (_, _, None, ty, _, _) ->
127       return_father id (mk_ids (ty::inner_types))
128   | Cic.AInductiveDefinition _ ->
129       assert false  (* TODO *)
130
131   (** @return string content of a dom node having a single text child node, e.g.
132    * <m:mi xlink:href="...">bool</m:mi> *)
133 let string_of_dom_node node =
134   match node#get_firstChild with
135   | None -> ""
136   | Some node ->
137       (try
138         let text = new Gdome.text_of_node node in
139         text#get_data#to_string
140       with GdomeInit.DOMCastException _ -> "")
141
142 let name_of_hypothesis = function
143   | Some (Cic.Name s, _) -> s
144   | _ -> assert false
145
146 let id_of_node (node: Gdome.element) =
147   let xref_attr =
148     node#getAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds in
149   try
150     List.hd (HExtlib.split ~sep:' ' xref_attr#to_string)
151   with Failure _ -> assert false
152
153 type selected_term =
154   | SelTerm of Cic.term * string option (* term, parent hypothesis (if any) *)
155   | SelHyp of string * Cic.context (* hypothesis, context *)
156
157 let hrefs_of_elt elt =
158   let localName = href_ds in
159   if elt#hasAttributeNS ~namespaceURI:xlink_ns ~localName then
160     let text =
161       (elt#getAttributeNS ~namespaceURI:xlink_ns ~localName)#to_string in
162     Some (HExtlib.split text)
163   else
164     None
165
166 class clickableMathView obj =
167 let text_width = 80 in
168 object (self)
169   inherit GMathViewAux.multi_selection_math_view obj
170
171   val mutable href_callback: (string -> unit) option = None
172   method set_href_callback f = href_callback <- f
173
174   val mutable _cic_info = None
175   method private set_cic_info info = _cic_info <- info
176   method private cic_info = _cic_info
177
178   val normal_cursor = Gdk.Cursor.create `LEFT_PTR
179   val href_cursor = Gdk.Cursor.create `HAND1
180
181   initializer
182     self#set_font_size !current_font_size;
183     ignore (self#connect#selection_changed self#choose_selection_cb);
184     ignore (self#event#connect#button_press self#button_press_cb);
185     ignore (self#event#connect#button_release self#button_release_cb);
186     ignore (self#event#connect#selection_clear self#selection_clear_cb);
187     ignore (self#connect#element_over self#element_over_cb);
188     ignore (self#coerce#misc#connect#selection_get self#selection_get_cb)
189
190   val mutable button_press_x = -1.
191   val mutable button_press_y = -1.
192   val mutable selection_changed = false
193   val mutable href_statusbar_msg:
194     (GMisc.statusbar_context * Gtk.statusbar_message) option = None
195     (* <statusbar ctxt, statusbar msg> *)
196
197   method private selection_get_cb ctxt ~info ~time =
198     let text =
199       match ctxt#target with
200       | "PATTERN" -> self#text_of_selection `Pattern
201       | "TERM" | _ -> self#text_of_selection `Term
202     in
203     match text with
204     | None -> ()
205     | Some s -> ctxt#return s
206
207   method private text_of_selection fmt =
208     match self#get_selections with
209     | [] -> None
210     | node :: _ -> Some (self#string_of_node ~paste_kind:fmt node)
211
212   method private selection_clear_cb sel_event =
213     self#remove_selections;
214     (GData.clipboard Gdk.Atom.clipboard)#clear ();
215     false
216
217   method private button_press_cb gdk_button =
218     let button = GdkEvent.Button.button gdk_button in
219     if  button = left_button then begin
220       button_press_x <- GdkEvent.Button.x gdk_button;
221       button_press_y <- GdkEvent.Button.y gdk_button;
222       selection_changed <- false
223     end else if button = right_button then
224       self#popup_contextual_menu (GdkEvent.Button.time gdk_button);
225     false
226
227   method private element_over_cb (elt_opt, _, _, _) =
228     let win () = self#misc#window in
229     let leave_href () =
230       Gdk.Window.set_cursor (win ()) normal_cursor;
231       HExtlib.iter_option (fun (ctxt, msg) -> ctxt#remove msg)
232         href_statusbar_msg
233     in
234     match elt_opt with
235     | Some elt ->
236         (match hrefs_of_elt elt with
237         | Some ((_ :: _) as hrefs) ->
238             Gdk.Window.set_cursor (win ()) href_cursor;
239             let msg_text = (* now create statusbar msg and store it *)
240               match hrefs with
241               | [ href ] -> sprintf "Hyperlink to %s" href
242               | _ -> sprintf "Hyperlinks to: %s" (String.concat ", " hrefs) in
243             let ctxt = (get_gui ())#main#statusBar#new_context ~name:"href" in
244             let msg = ctxt#push msg_text in
245             href_statusbar_msg <- Some (ctxt, msg)
246         | _ -> leave_href ())
247     | None -> leave_href ()
248
249   method private tactic_text_pattern_of_node node =
250    let id = id_of_node node in
251    let cic_info, unsh_sequent = self#get_cic_info id in
252    match self#get_term_by_id cic_info id with
253    | SelTerm (t, father_hyp) ->
254        let sequent = self#sequent_of_id ~paste_kind:`Pattern id in
255        let text = self#string_of_cic_sequent sequent in
256        (match father_hyp with
257        | None -> None, [], Some text
258        | Some hyp_name -> None, [ hyp_name, text ], None)
259    | SelHyp (hyp_name, _ctxt) -> None, [ hyp_name, "%" ], None
260
261   method private tactic_text_of_node node =
262    let id = id_of_node node in
263    let cic_info, unsh_sequent = self#get_cic_info id in
264    match self#get_term_by_id cic_info id with
265    | SelTerm (t, father_hyp) ->
266        let sequent = self#sequent_of_id ~paste_kind:`Term id in
267        let text = self#string_of_cic_sequent sequent in
268        text
269    | SelHyp (hyp_name, _ctxt) -> hyp_name
270
271     (** @return a pattern structure which contains pretty printed terms *)
272   method private tactic_text_pattern_of_selection =
273     match self#get_selections with
274     | [] -> assert false (* this method is invoked only if there's a sel. *)
275     | node :: _ -> self#tactic_text_pattern_of_node node
276
277   method private popup_contextual_menu time =
278     let menu = GMenu.menu () in
279     let add_menu_item ?(menu = menu) ?stock ?label () =
280       GMenu.image_menu_item ?stock ?label ~packing:menu#append () in
281     let check = add_menu_item ~label:"Check" () in
282     let reductions_menu_item = GMenu.menu_item ~label:"βδιζ-reduce" () in
283     let tactics_menu_item = GMenu.menu_item ~label:"Apply tactic" () in
284     menu#append reductions_menu_item;
285     menu#append tactics_menu_item;
286     let reductions = GMenu.menu () in
287     let tactics = GMenu.menu () in
288     reductions_menu_item#set_submenu reductions;
289     tactics_menu_item#set_submenu tactics;
290     let normalize = add_menu_item ~menu:reductions ~label:"Normalize" () in
291     let reduce = add_menu_item ~menu:reductions ~label:"Reduce" () in
292     let simplify = add_menu_item ~menu:reductions ~label:"Simplify" () in
293     let whd = add_menu_item ~menu:reductions ~label:"Weak head" () in
294     menu#append (GMenu.separator_item ());
295     let copy = add_menu_item ~stock:`COPY () in
296     let gui = get_gui () in
297     List.iter (fun item -> item#misc#set_sensitive gui#canCopy)
298       [ copy; check; normalize; reduce; simplify; whd ];
299     let reduction_action kind () =
300       let pat = self#tactic_text_pattern_of_selection in
301       let statement =
302         let loc = HExtlib.dummy_floc in
303         "\n" ^
304         GrafiteAstPp.pp_executable ~term_pp:(fun s -> s)
305           ~lazy_term_pp:(fun _ -> assert false) ~obj_pp:(fun _ -> assert false)
306           ~map_unicode_to_tex:(Helm_registry.get_bool
307             "matita.paste_unicode_as_tex")
308           (GrafiteAst.Tactic (loc,
309             Some (GrafiteAst.Reduce (loc, kind, pat)),
310             GrafiteAst.Semicolon loc)) in
311       (MatitaScript.current ())#advance ~statement () in
312     connect_menu_item copy gui#copy;
313     connect_menu_item normalize (reduction_action `Normalize);
314     connect_menu_item reduce (reduction_action `Reduce);
315     connect_menu_item simplify (reduction_action `Simpl);
316     connect_menu_item whd (reduction_action `Whd);
317     menu#popup ~button:right_button ~time
318
319   method private button_release_cb gdk_button =
320     if GdkEvent.Button.button gdk_button = left_button then begin
321       let button_release_x = GdkEvent.Button.x gdk_button in
322       let button_release_y = GdkEvent.Button.y gdk_button in
323       if selection_changed then
324         ()
325       else  (* selection _not_ changed *)
326         if near (button_press_x, button_press_y)
327           (button_release_x, button_release_y)
328         then
329           let x = int_of_float button_press_x in
330           let y = int_of_float button_press_y in
331           (match self#get_element_at x y with
332           | None -> ()
333           | Some elt ->
334               (match hrefs_of_elt elt with
335               | Some hrefs -> self#invoke_href_callback hrefs gdk_button
336               | None -> ignore (self#action_toggle elt)))
337     end;
338     false
339
340   method private invoke_href_callback hrefs gdk_button =
341     let button = GdkEvent.Button.button gdk_button in
342     if button = left_button then
343       let time = GdkEvent.Button.time gdk_button in
344       match href_callback with
345       | None -> ()
346       | Some f ->
347           (match hrefs with
348           | [ uri ] ->  f uri
349           | uris ->
350               let menu = GMenu.menu () in
351               List.iter
352                 (fun uri ->
353                   let menu_item =
354                     GMenu.menu_item ~label:uri ~packing:menu#append () in
355                   connect_menu_item menu_item 
356                   (fun () -> try f uri with Not_found -> assert false))
357                 uris;
358               menu#popup ~button ~time)
359
360   method private choose_selection_cb gdome_elt =
361     let set_selection elt =
362       let misc = self#coerce#misc in
363       self#set_selection (Some elt);
364       misc#add_selection_target ~target:"STRING" Gdk.Atom.primary;
365       ignore (misc#grab_selection Gdk.Atom.primary);
366     in
367     let rec aux elt =
368       if (elt#getAttributeNS ~namespaceURI:helm_ns
369             ~localName:xref_ds)#to_string <> ""
370       then
371         set_selection elt
372       else
373         try
374           (match elt#get_parentNode with
375           | None -> assert false
376           | Some p -> aux (new Gdome.element_of_node p))
377         with GdomeInit.DOMCastException _ -> ()
378     in
379     (match gdome_elt with
380     | Some elt when (elt#getAttributeNS ~namespaceURI:xlink_ns
381         ~localName:href_ds)#to_string <> "" ->
382           set_selection elt
383     | Some elt -> aux elt
384     | None -> self#set_selection None);
385     selection_changed <- true
386
387   method update_font_size = self#set_font_size !current_font_size
388
389     (** find a term by id from stored CIC infos @return either `Hyp if the id
390      * correspond to an hypothesis or `Term (cic, hyp) if the id correspond to a
391      * term. In the latter case hyp is either None (if the term is a subterm of
392      * the sequent conclusion) or Some hyp_name if the term belongs to an
393      * hypothesis *)
394   method private get_term_by_id cic_info id =
395     let unsh_item, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, _, _ =
396       cic_info in
397     let rec find_father_hyp id =
398       if Hashtbl.mem ids_to_hypotheses id
399       then Some (name_of_hypothesis (Hashtbl.find ids_to_hypotheses id))
400       else
401         let father_id =
402           try Hashtbl.find ids_to_father_ids id
403           with Not_found -> assert false in
404         match father_id with
405         | Some id -> find_father_hyp id
406         | None -> None
407     in
408     try
409       let term = Hashtbl.find ids_to_terms id in
410       let father_hyp = find_father_hyp id in
411       SelTerm (term, father_hyp)
412     with Not_found ->
413       try
414         let hyp = Hashtbl.find ids_to_hypotheses id in
415         let _, context, _ =
416           match unsh_item with Some seq -> seq | None -> assert false in
417         let context' = MatitaMisc.list_tl_at hyp context in
418         SelHyp (name_of_hypothesis hyp, context')
419       with Not_found -> assert false
420     
421   method private find_obj_conclusion id =
422     match self#cic_info with
423     | None
424     | Some (_, _, _, _, _, None) -> assert false
425     | Some (_, ids_to_terms, _, ids_to_father_ids, ids_to_inner_types, Some annobj) ->
426         let id =
427          find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types
428         in
429          (try Hashtbl.find ids_to_terms id with Not_found -> assert false)
430
431   method private string_of_node ~(paste_kind:paste_kind) node =
432     if node#hasAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds
433     then
434       match paste_kind with
435       | `Pattern ->
436           let tactic_text_pattern =  self#tactic_text_pattern_of_node node in
437           GrafiteAstPp.pp_tactic_pattern
438             ~term_pp:(fun s -> s) ~lazy_term_pp:(fun _ -> assert false)
439             ~map_unicode_to_tex:(Helm_registry.get_bool
440               "matita.paste_unicode_as_tex")
441             tactic_text_pattern
442       | `Term -> self#tactic_text_of_node node
443     else string_of_dom_node node
444
445   method private string_of_cic_sequent cic_sequent =
446     let script = MatitaScript.current () in
447     let metasenv =
448       if script#onGoingProof () then script#proofMetasenv else [] in
449     (*
450     let _, (acic_sequent, _, _, ids_to_inner_sorts, _) =
451       Cic2acic.asequent_of_sequent metasenv cic_sequent in
452     let _, _, _, annterm = acic_sequent in
453     let ast, ids_to_uris =
454       TermAcicContent.ast_of_acic ids_to_inner_sorts annterm in
455     let pped_ast = TermContentPres.pp_ast ast in
456     let markup = CicNotationPres.render ids_to_uris pped_ast in
457     BoxPp.render_to_string text_width markup
458     *)
459     let map_unicode_to_tex =
460       Helm_registry.get_bool "matita.paste_unicode_as_tex" in
461     ApplyTransformation.txt_of_cic_sequent_conclusion ~map_unicode_to_tex
462       text_width metasenv cic_sequent
463
464   method private pattern_of term context unsh_sequent =
465     let context_len = List.length context in
466     let _, unsh_context, conclusion = unsh_sequent in
467     try
468       (match
469         List.nth unsh_context (List.length unsh_context - context_len - 1)
470       with
471       | None -> assert false (* can't select a restricted hypothesis *)
472       | Some (name, Cic.Decl ty) ->
473           ProofEngineHelpers.pattern_of ~term:ty [term]
474       | Some (name, Cic.Def (bo, _)) ->
475           ProofEngineHelpers.pattern_of ~term:bo [term])
476     with Failure _ | Invalid_argument _ ->
477       ProofEngineHelpers.pattern_of ~term:conclusion [term]
478
479   method private get_cic_info id =
480     match self#cic_info with
481     | Some ((Some unsh_sequent, _, _, _, _, _) as info) -> info, unsh_sequent
482     | Some ((None, _, _, _, _, _) as info) ->
483         let t = self#find_obj_conclusion id in
484         info, (~-1, [], t) (* dummy sequent for obj *)
485     | None -> assert false
486
487   method private sequent_of_id ~(paste_kind:paste_kind) id =
488     let cic_info, unsh_sequent = self#get_cic_info id in
489     let cic_sequent =
490       match self#get_term_by_id cic_info id with
491       | SelTerm (t, _father_hyp) ->
492           let occurrences =
493             ProofEngineHelpers.locate_in_conjecture t unsh_sequent in
494           (match occurrences with
495           | [ context, _t ] ->
496               (match paste_kind with
497               | `Term -> ~-1, context, t
498               | `Pattern -> ~-1, [], self#pattern_of t context unsh_sequent)
499           | _ ->
500               HLog.error (sprintf "found %d occurrences while 1 was expected"
501                 (List.length occurrences));
502               assert false) (* since it uses physical equality *)
503       | SelHyp (_name, context) -> ~-1, context, Cic.Rel 1 in
504     cic_sequent
505
506   method private string_of_selection ~(paste_kind:paste_kind) =
507     match self#get_selections with
508     | [] -> None
509     | node :: _ -> Some (self#string_of_node ~paste_kind node)
510
511   method has_selection = self#get_selections <> []
512
513     (** @return an associative list format -> string with all possible selection
514      * formats. Rationale: in order to convert the selection to TERM or PATTERN
515      * format we need the sequent, the metasenv, ... keeping all of them in a
516      * closure would be more expensive than keeping their already converted
517      * forms *)
518   method strings_of_selection =
519     try
520       let misc = self#coerce#misc in
521       List.iter
522         (fun target -> misc#add_selection_target ~target Gdk.Atom.clipboard)
523         [ "TERM"; "PATTERN"; "STRING" ];
524       ignore (misc#grab_selection Gdk.Atom.clipboard);
525       List.map
526         (fun paste_kind ->
527           paste_kind, HExtlib.unopt (self#string_of_selection ~paste_kind))
528         [ `Term; `Pattern ]
529     with Failure _ -> failwith "no selection"
530
531 end
532
533 let clickableMathView ?hadjustment ?vadjustment ?font_size ?log_verbosity =
534   GtkBase.Widget.size_params
535     ~cont:(OgtkMathViewProps.pack_return (fun p ->
536       OgtkMathViewProps.set_params
537         (new clickableMathView (GtkMathViewProps.MathView_GMetaDOM.create p))
538         ~font_size:None ~log_verbosity:None))
539     []
540
541 class cicMathView obj =
542 object (self)
543   inherit clickableMathView obj
544
545   val mutable current_mathml = None
546
547   method load_sequent metasenv metano =
548     let sequent = CicUtil.lookup_meta metano metasenv in
549     let (mathml, unsh_sequent,
550       (_, (ids_to_terms, ids_to_father_ids, ids_to_hypotheses,_ )))
551     =
552       ApplyTransformation.mml_of_cic_sequent metasenv sequent
553     in
554     self#set_cic_info
555       (Some (Some unsh_sequent,
556         ids_to_terms, ids_to_hypotheses, ids_to_father_ids,
557         Hashtbl.create 1, None));
558     if BuildTimeConf.debug then begin
559       let name =
560        "/tmp/sequent_viewer_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
561       HLog.debug ("load_sequent: dumping MathML to ./" ^ name);
562       ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
563     end;
564     self#load_root ~root:mathml#get_documentElement
565
566   method load_object obj =
567     let use_diff = false in (* ZACK TODO use XmlDiff when re-rendering? *)
568     let (mathml,
569       (annobj, (ids_to_terms, ids_to_father_ids, _, ids_to_hypotheses, _, ids_to_inner_types)))
570     =
571       ApplyTransformation.mml_of_cic_object obj
572     in
573     self#set_cic_info
574       (Some (None, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj));
575     (match current_mathml with
576     | Some current_mathml when use_diff ->
577         self#freeze;
578         XmlDiff.update_dom ~from:current_mathml mathml;
579         self#thaw
580     |  _ ->
581         if BuildTimeConf.debug then begin
582           let name =
583            "/tmp/cic_browser_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
584           HLog.debug ("cic_browser: dumping MathML to ./" ^ name);
585           ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
586         end;
587         self#load_root ~root:mathml#get_documentElement;
588         current_mathml <- Some mathml);
589 end
590
591 let tab_label meta_markup =
592   let rec aux =
593     function
594     | `Closed m -> sprintf "<s>%s</s>" (aux m)
595     | `Current m -> sprintf "<b>%s</b>" (aux m)
596     | `Shift (pos, m) -> sprintf "|<sub>%d</sub>: %s" pos (aux m)
597     | `Meta n -> sprintf "?%d" n
598   in
599   let markup = aux meta_markup in
600   (GMisc.label ~markup ~show:true ())#coerce
601
602 let goal_of_switch = function Stack.Open g | Stack.Closed g -> g
603
604 class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () =
605   object (self)
606     inherit scriptAccessor
607
608     method cicMathView = cicMathView  (** clickableMathView accessor *)
609
610     val mutable pages = 0
611     val mutable switch_page_callback = None
612     val mutable page2goal = []  (* associative list: page no -> goal no *)
613     val mutable goal2page = []  (* the other way round *)
614     val mutable goal2win = []   (* associative list: goal no -> scrolled win *)
615     val mutable _metasenv = []
616     val mutable scrolledWin: GBin.scrolled_window option = None
617       (* scrolled window to which the sequentViewer is currently attached *)
618     val logo = (GMisc.image
619       ~file:(MatitaMisc.image_path "matita_medium.png") ()
620       :> GObj.widget)
621             
622     val logo_with_qed = (GMisc.image
623       ~file:(MatitaMisc.image_path "matita_small.png") ()
624       :> GObj.widget)
625
626     method load_logo =
627      notebook#set_show_tabs false;
628      notebook#append_page logo
629
630     method load_logo_with_qed =
631      notebook#set_show_tabs false;
632      notebook#append_page logo_with_qed
633
634     method reset =
635       cicMathView#remove_selections;
636       (match scrolledWin with
637       | Some w ->
638           (* removing page from the notebook will destroy all contained widget,
639           * we do not want the cicMathView to be destroyed as well *)
640           w#remove cicMathView#coerce;
641           scrolledWin <- None
642       | None -> ());
643       (match switch_page_callback with
644       | Some id ->
645           GtkSignal.disconnect notebook#as_widget id;
646           switch_page_callback <- None
647       | None -> ());
648       for i = 0 to pages do notebook#remove_page 0 done; 
649       notebook#set_show_tabs true;
650       pages <- 0;
651       page2goal <- [];
652       goal2page <- [];
653       goal2win <- [];
654       _metasenv <- []; 
655       self#script#setGoal None
656
657     method load_sequents 
658       { proof = (_,metasenv,_subst,_,_, _) as proof; stack = stack } 
659     =
660       _metasenv <- metasenv;
661       pages <- 0;
662       let win goal_switch =
663         let w =
664           GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`ALWAYS
665             ~shadow_type:`IN ~show:true ()
666         in
667         let reparent () =
668           scrolledWin <- Some w;
669           match cicMathView#misc#parent with
670           | None -> w#add cicMathView#coerce
671           | Some parent ->
672              let parent =
673               match cicMathView#misc#parent with
674                  None -> assert false
675                | Some p -> GContainer.cast_container p
676              in
677               parent#remove cicMathView#coerce;
678               w#add cicMathView#coerce
679         in
680         goal2win <- (goal_switch, reparent) :: goal2win;
681         w#coerce
682       in
683       assert (
684         let stack_goals = Stack.open_goals stack in
685         let proof_goals = ProofEngineTypes.goals_of_proof proof in
686         if
687           HExtlib.list_uniq (List.sort Pervasives.compare stack_goals)
688           <> List.sort Pervasives.compare proof_goals
689         then begin
690           prerr_endline ("STACK GOALS = " ^ String.concat " " (List.map string_of_int stack_goals));
691           prerr_endline ("PROOF GOALS = " ^ String.concat " " (List.map string_of_int proof_goals));
692           false
693         end
694         else true
695       );
696       let render_switch =
697         function Stack.Open i ->`Meta i | Stack.Closed i ->`Closed (`Meta i)
698       in
699       let page = ref 0 in
700       let added_goals = ref [] in
701         (* goals can be duplicated on the tack due to focus, but we should avoid
702          * multiple labels in the user interface *)
703       let add_tab markup goal_switch =
704         let goal = Stack.goal_of_switch goal_switch in
705         if not (List.mem goal !added_goals) then begin
706           notebook#append_page ~tab_label:(tab_label markup) (win goal_switch);
707           page2goal <- (!page, goal_switch) :: page2goal;
708           goal2page <- (goal_switch, !page) :: goal2page;
709           incr page;
710           pages <- pages + 1;
711           added_goals := goal :: !added_goals
712         end
713       in
714       let add_switch _ _ (_, sw) = add_tab (render_switch sw) sw in
715       Stack.iter  (** populate notebook with tabs *)
716         ~env:(fun depth tag (pos, sw) ->
717           let markup =
718             match depth, pos with
719             | 0, 0 -> `Current (render_switch sw)
720             | 0, _ -> `Shift (pos, `Current (render_switch sw))
721             | 1, pos when Stack.head_tag stack = `BranchTag ->
722                 `Shift (pos, render_switch sw)
723             | _ -> render_switch sw
724           in
725           add_tab markup sw)
726         ~cont:add_switch ~todo:add_switch
727         stack;
728       switch_page_callback <-
729         Some (notebook#connect#switch_page ~callback:(fun page ->
730           let goal_switch =
731             try List.assoc page page2goal with Not_found -> assert false
732           in
733           self#script#setGoal (Some (goal_of_switch goal_switch));
734           self#render_page ~page ~goal_switch))
735
736     method private render_page ~page ~goal_switch =
737       (match goal_switch with
738       | Stack.Open goal -> cicMathView#load_sequent _metasenv goal
739       | Stack.Closed goal ->
740           let doc = Lazy.force closed_goal_mathml in
741           cicMathView#load_root ~root:doc#get_documentElement);
742       (try
743         cicMathView#set_selection None;
744         List.assoc goal_switch goal2win ()
745       with Not_found -> assert false)
746
747     method goto_sequent goal =
748       let goal_switch, page =
749         try
750           List.find
751             (function Stack.Open g, _ | Stack.Closed g, _ -> g = goal)
752             goal2page
753         with Not_found -> assert false
754       in
755       notebook#goto_page page;
756       self#render_page page goal_switch
757
758   end
759
760  (** constructors *)
761
762 type 'widget constructor =
763   ?hadjustment:GData.adjustment ->
764   ?vadjustment:GData.adjustment ->
765   ?font_size:int ->
766   ?log_verbosity:int ->
767   ?width:int ->
768   ?height:int ->
769   ?packing:(GObj.widget -> unit) ->
770   ?show:bool ->
771   unit ->
772     'widget
773
774 let cicMathView ?hadjustment ?vadjustment ?font_size ?log_verbosity =
775   GtkBase.Widget.size_params
776     ~cont:(OgtkMathViewProps.pack_return (fun p ->
777       OgtkMathViewProps.set_params
778         (new cicMathView (GtkMathViewProps.MathView_GMetaDOM.create p))
779         ~font_size ~log_verbosity))
780     []
781
782 let blank_uri = BuildTimeConf.blank_uri
783 let current_proof_uri = BuildTimeConf.current_proof_uri
784
785 type term_source =
786   [ `Ast of CicNotationPt.term
787   | `Cic of Cic.term * Cic.metasenv
788   | `String of string
789   ]
790
791 class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history)
792   ()
793 =
794   let whelp_RE = Pcre.regexp "^\\s*whelp" in
795   let uri_RE =
796     Pcre.regexp
797       "^cic:/([^/]+/)*[^/]+\\.(con|ind|var)(#xpointer\\(\\d+(/\\d+)+\\))?$"
798   in
799   let dir_RE = Pcre.regexp "^cic:((/([^/]+/)*[^/]+(/)?)|/|)$" in
800   let metadata_RE = Pcre.regexp "^metadata:/(deps)/(forward|backward)/(.*)$" in
801   let whelp_query_RE = Pcre.regexp
802     "^\\s*whelp\\s+([^\\s]+)\\s+(\"|\\()(.*)(\\)|\")$" 
803   in
804   let is_metadata txt = Pcre.pmatch ~rex:metadata_RE txt in
805   let is_whelp txt = Pcre.pmatch ~rex:whelp_RE txt in
806   let is_uri txt = Pcre.pmatch ~rex:uri_RE txt in
807   let is_dir txt = Pcre.pmatch ~rex:dir_RE txt in
808   let gui = get_gui () in
809   let (win: MatitaGuiTypes.browserWin) = gui#newBrowserWin () in
810   let gviz = LablGraphviz.graphviz ~packing:win#graphScrolledWin#add () in
811   let queries = ["Locate";"Hint";"Match";"Elim";"Instance"] in
812   let combo,_ = GEdit.combo_box_text ~strings:queries () in
813   let activate_combo_query input q =
814     let q' = String.lowercase q in
815     let rec aux i = function
816       | [] -> failwith ("Whelp query '" ^ q ^ "' not found")
817       | h::_ when String.lowercase h = q' -> i
818       | _::tl -> aux (i+1) tl
819     in
820     win#queryInputText#set_text input;
821     combo#set_active (aux 0 queries);
822   in
823   let set_whelp_query txt =
824     let query, arg = 
825       try
826         let q = Pcre.extract ~rex:whelp_query_RE txt in
827         q.(1), q.(3)
828       with Not_found -> failwith "Malformed Whelp query"
829     in
830     activate_combo_query arg query;
831   in
832   let toplevel = win#toplevel in
833   let mathView = cicMathView ~packing:win#scrolledBrowser#add () in
834   let fail message = 
835     MatitaGtkMisc.report_error ~title:"Cic browser" ~message 
836       ~parent:toplevel ()  
837   in
838   let tags =
839     [ "dir", GdkPixbuf.from_file (MatitaMisc.image_path "matita-folder.png");
840       "obj", GdkPixbuf.from_file (MatitaMisc.image_path "matita-object.png") ]
841   in
842   let b = (not (Helm_registry.get_bool "matita.debug")) in
843   let handle_error f =
844     try
845       f ()
846     with exn ->
847       if b then
848         fail (snd (MatitaExcPp.to_string exn))
849       else raise exn
850   in
851   let handle_error' f = (fun () -> handle_error (fun () -> f ())) in
852   let load_easter_egg = lazy (
853     win#browserImage#set_file (MatitaMisc.image_path "meegg.png"))
854   in
855   let load_coerchgraph tred () = 
856       let str = CoercGraph.generate_dot_file () in
857       let filename, oc = Filename.open_temp_file "matita" ".dot" in
858       output_string oc str;
859       close_out oc;
860       if tred then
861         gviz#load_graph_from_file ~gviz_cmd:"tred|dot" filename
862       else
863         gviz#load_graph_from_file filename;
864       HExtlib.safe_remove filename
865   in
866   object (self)
867     inherit scriptAccessor
868     
869     (* Whelp bar queries *)
870
871     val mutable gviz_graph = MetadataDeps.DepGraph.dummy
872     val mutable gviz_uri = UriManager.uri_of_string "cic:/dummy.con";
873
874     val dep_contextual_menu = GMenu.menu ()
875
876     initializer
877       activate_combo_query "" "locate";
878       win#whelpBarComboVbox#add combo#coerce;
879       let start_query () = 
880        let query = 
881          try
882            String.lowercase (List.nth queries combo#active) 
883          with Not_found -> assert false in
884        let input = win#queryInputText#text in
885        let statement = 
886          if query = "locate" then
887              "whelp " ^ query ^ " \"" ^ input ^ "\"." 
888            else
889              "whelp " ^ query ^ " (" ^ input ^ ")." 
890        in
891         (MatitaScript.current ())#advance ~statement ()
892       in
893       ignore(win#queryInputText#connect#activate ~callback:start_query);
894       ignore(combo#connect#changed ~callback:start_query);
895       win#whelpBarImage#set_file (MatitaMisc.image_path "whelp.png");
896       win#mathOrListNotebook#set_show_tabs false;
897       win#browserForwardButton#misc#set_sensitive false;
898       win#browserBackButton#misc#set_sensitive false;
899       ignore (win#browserUri#entry#connect#activate (handle_error' (fun () ->
900         self#loadInput win#browserUri#entry#text)));
901       ignore (win#browserHomeButton#connect#clicked (handle_error' (fun () ->
902         self#load (`About `Current_proof))));
903       ignore (win#browserRefreshButton#connect#clicked
904         (handle_error' (self#refresh ~force:true)));
905       ignore (win#browserBackButton#connect#clicked (handle_error' self#back));
906       ignore (win#browserForwardButton#connect#clicked
907         (handle_error' self#forward));
908       ignore (win#toplevel#event#connect#delete (fun _ ->
909         let my_id = Oo.id self in
910         cicBrowsers := List.filter (fun b -> Oo.id b <> my_id) !cicBrowsers;
911         if !cicBrowsers = [] &&
912           Helm_registry.get "matita.mode" = "cicbrowser"
913         then
914           GMain.quit ();
915         false));
916       ignore(win#whelpResultTreeview#connect#row_activated 
917         ~callback:(fun _ _ ->
918           handle_error (fun () -> self#loadInput (self#_getSelectedUri ()))));
919       mathView#set_href_callback (Some (fun uri ->
920         handle_error (fun () ->
921           self#load (`Uri (UriManager.uri_of_string uri)))));
922       gviz#connect_href (fun button_ev attrs ->
923         let time = GdkEvent.Button.time button_ev in
924         let uri = List.assoc "href" attrs in
925         gviz_uri <- UriManager.uri_of_string uri;
926         match GdkEvent.Button.button button_ev with
927         | button when button = left_button -> self#load (`Uri gviz_uri)
928         | button when button = right_button ->
929             dep_contextual_menu#popup ~button ~time
930         | _ -> ());
931       connect_menu_item win#depGraphMenuItem (fun () ->
932         match self#currentCicUri with
933         | Some uri -> self#load (`Metadata (`Deps (`Fwd, uri)))
934         | None -> ());
935       connect_menu_item win#invDepGraphMenuItem (fun () ->
936         match self#currentCicUri with
937         | Some uri -> self#load (`Metadata (`Deps (`Back, uri)))
938         | None -> ());
939       connect_menu_item win#hBugsTutorsMenuItem (fun () ->
940         self#load (`HBugs `Tutors));
941       connect_menu_item win#browserUrlMenuItem (fun () ->
942         win#browserUri#entry#misc#grab_focus ());
943
944       (* fill dep graph contextual menu *)
945       let go_menu_item =
946         GMenu.image_menu_item ~label:"Browse it"
947           ~packing:dep_contextual_menu#append () in
948       let expand_menu_item =
949         GMenu.image_menu_item ~label:"Expand"
950           ~packing:dep_contextual_menu#append () in
951       let collapse_menu_item =
952         GMenu.image_menu_item ~label:"Collapse"
953           ~packing:dep_contextual_menu#append () in
954       dep_contextual_menu#append (go_menu_item :> GMenu.menu_item);
955       dep_contextual_menu#append (expand_menu_item :> GMenu.menu_item);
956       dep_contextual_menu#append (collapse_menu_item :> GMenu.menu_item);
957       connect_menu_item go_menu_item (fun () -> self#load (`Uri gviz_uri));
958       connect_menu_item expand_menu_item (fun () ->
959         MetadataDeps.DepGraph.expand gviz_uri gviz_graph;
960         self#redraw_gviz ~center_on:gviz_uri ());
961       connect_menu_item collapse_menu_item (fun () ->
962         MetadataDeps.DepGraph.collapse gviz_uri gviz_graph;
963         self#redraw_gviz ~center_on:gviz_uri ());
964
965       self#_load (`About `Blank);
966       toplevel#show ()
967
968     val mutable current_entry = `About `Blank 
969
970       (** @return None if no object uri can be built from the current entry *)
971     method private currentCicUri =
972       match current_entry with
973       | `Uri uri
974       | `Metadata (`Deps (_, uri)) -> Some uri
975       | _ -> None
976
977     val model =
978       new MatitaGtkMisc.taggedStringListModel tags win#whelpResultTreeview
979
980     val mutable lastDir = ""  (* last loaded "directory" *)
981
982     method mathView = (mathView :> MatitaGuiTypes.clickableMathView)
983
984     method private _getSelectedUri () =
985       match model#easy_selection () with
986       | [sel] when is_uri sel -> sel  (* absolute URI selected *)
987 (*       | [sel] -> win#browserUri#entry#text ^ sel  |+ relative URI selected +| *)
988       | [sel] -> lastDir ^ sel
989       | _ -> assert false
990
991     (** history RATIONALE 
992      *
993      * All operations about history are done using _historyFoo.
994      * Only toplevel functions (ATM load and loadInput) call _historyAdd.
995      *)
996           
997     method private _historyAdd item = 
998       history#add item;
999       win#browserBackButton#misc#set_sensitive true;
1000       win#browserForwardButton#misc#set_sensitive false
1001
1002     method private _historyPrev () =
1003       let item = history#previous in
1004       if history#is_begin then win#browserBackButton#misc#set_sensitive false;
1005       win#browserForwardButton#misc#set_sensitive true;
1006       item
1007     
1008     method private _historyNext () =
1009       let item = history#next in
1010       if history#is_end then win#browserForwardButton#misc#set_sensitive false;
1011       win#browserBackButton#misc#set_sensitive true;
1012       item
1013
1014     (** notebook RATIONALE 
1015      * 
1016      * Use only these functions to switch between the tabs
1017      *)
1018     method private _showMath = win#mathOrListNotebook#goto_page  0
1019     method private _showList = win#mathOrListNotebook#goto_page  1
1020     method private _showGviz = win#mathOrListNotebook#goto_page  3
1021     method private _showHBugs = win#mathOrListNotebook#goto_page 4
1022
1023     method private back () =
1024       try
1025         self#_load (self#_historyPrev ())
1026       with MatitaMisc.History_failure -> ()
1027
1028     method private forward () =
1029       try
1030         self#_load (self#_historyNext ())
1031       with MatitaMisc.History_failure -> ()
1032
1033       (* loads a uri which can be a cic uri or an about:* uri
1034       * @param uri string *)
1035     method private _load ?(force=false) entry =
1036       handle_error (fun () ->
1037        if entry <> current_entry || entry = `About `Current_proof || entry =
1038          `About `Coercions || entry = `About `CoercionsFull || force then
1039         begin
1040           (match entry with
1041           | `About `Current_proof -> self#home ()
1042           | `About `Blank -> self#blank ()
1043           | `About `Us -> self#egg ()
1044           | `About `CoercionsFull -> self#coerchgraph false ()
1045           | `About `Coercions -> self#coerchgraph true ()
1046           | `Check term -> self#_loadCheck term
1047           | `Cic (term, metasenv) -> self#_loadTermCic term metasenv
1048           | `Development d -> self#_showDevelDeps d
1049           | `Dir dir -> self#_loadDir dir
1050           | `HBugs `Tutors -> self#_loadHBugsTutors
1051           | `Metadata (`Deps ((`Fwd | `Back) as dir, uri)) ->
1052               self#dependencies dir uri ()
1053           | `Uri uri -> self#_loadUriManagerUri uri
1054           | `Whelp (query, results) -> 
1055               set_whelp_query query;
1056               self#_loadList (List.map (fun r -> "obj",
1057                 UriManager.string_of_uri r) results));
1058           self#setEntry entry
1059         end)
1060
1061     method private blank () =
1062       self#_showMath;
1063       mathView#load_root (Lazy.force empty_mathml)#get_documentElement
1064
1065     method private _loadCheck term =
1066       failwith "not implemented _loadCheck";
1067 (*       self#_showMath *)
1068
1069     method private egg () =
1070       win#mathOrListNotebook#goto_page 2;
1071       Lazy.force load_easter_egg
1072
1073     method private redraw_gviz ?center_on () =
1074       let tmpfile, oc = Filename.open_temp_file "matita" ".dot" in
1075       let fmt = Format.formatter_of_out_channel oc in
1076       MetadataDeps.DepGraph.render fmt gviz_graph;
1077       close_out oc;
1078       gviz#load_graph_from_file ~gviz_cmd:"tred | dot" tmpfile;
1079       (match center_on with
1080       | None -> ()
1081       | Some uri -> gviz#center_on_href (UriManager.string_of_uri uri));
1082       HExtlib.safe_remove tmpfile
1083
1084     method private dependencies direction uri () =
1085       let dbd = LibraryDb.instance () in
1086       let graph =
1087         match direction with
1088         | `Fwd -> MetadataDeps.DepGraph.direct_deps ~dbd uri
1089         | `Back -> MetadataDeps.DepGraph.inverse_deps ~dbd uri in
1090       gviz_graph <- graph;  (** XXX check this for memory consuption *)
1091       self#redraw_gviz ~center_on:uri ();
1092       self#_showGviz
1093
1094     method private coerchgraph tred () =
1095       load_coerchgraph tred ();
1096       self#_showGviz
1097
1098     method private home () =
1099       self#_showMath;
1100       match self#script#grafite_status.proof_status with
1101       | Proof  (uri, metasenv, _subst, bo, ty, attrs) ->
1102           let name = UriManager.name_of_uri (HExtlib.unopt uri) in
1103           let obj = Cic.CurrentProof (name, metasenv, bo, ty, [], attrs) in
1104           self#_loadObj obj
1105       | Incomplete_proof { proof = (uri, metasenv, _subst, bo, ty, attrs) } ->
1106           let name = UriManager.name_of_uri (HExtlib.unopt uri) in
1107           let obj = Cic.CurrentProof (name, metasenv, bo, ty, [], attrs) in
1108           self#_loadObj obj
1109       | _ -> self#blank ()
1110
1111       (** loads a cic uri from the environment
1112       * @param uri UriManager.uri *)
1113     method private _loadUriManagerUri uri =
1114       let uri = UriManager.strip_xpointer uri in
1115       let (obj, _) = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1116       self#_loadObj obj
1117       
1118     method private _loadDir dir = 
1119       let content = Http_getter.ls ~local:false dir in
1120       let l =
1121         List.fast_sort
1122           Pervasives.compare
1123           (List.map
1124             (function 
1125               | Http_getter_types.Ls_section s -> "dir", s
1126               | Http_getter_types.Ls_object o -> "obj", o.Http_getter_types.uri)
1127             content)
1128       in
1129       lastDir <- dir;
1130       self#_loadList l
1131
1132     method private _loadHBugsTutors =
1133       self#_showHBugs
1134
1135     method private setEntry entry =
1136       win#browserUri#entry#set_text (MatitaTypes.string_of_entry entry);
1137       current_entry <- entry
1138
1139     method private _showDevelDeps d =
1140       match MatitamakeLib.development_for_name d with
1141       | None -> ()
1142       | Some devel ->
1143           (match MatitamakeLib.dot_for_development devel with
1144           | None -> ()
1145           | Some fname ->
1146               gviz#load_graph_from_file ~gviz_cmd:"tred | dot" fname;
1147               self#_showGviz)
1148
1149     method private _loadObj obj =
1150       (* showMath must be done _before_ loading the document, since if the
1151        * widget is not mapped (hidden by the notebook) the document is not
1152        * rendered *)
1153       self#_showMath;
1154       mathView#load_object obj
1155
1156     method private _loadTermCic term metasenv =
1157       let context = self#script#proofContext in
1158       let dummyno = CicMkImplicit.new_meta metasenv [] in
1159       let sequent = (dummyno, context, term) in
1160       mathView#load_sequent (sequent :: metasenv) dummyno;
1161       self#_showMath
1162
1163     method private _loadList l =
1164       model#list_store#clear ();
1165       List.iter (fun (tag, s) -> model#easy_append ~tag s) l;
1166       self#_showList
1167     
1168     (** { public methods, all must call _load!! } *)
1169       
1170     method load entry =
1171       handle_error (fun () -> self#_load entry; self#_historyAdd entry)
1172
1173     (**  this is what the browser does when you enter a string an hit enter *)
1174     method loadInput txt =
1175       let parse_metadata s =
1176         let subs = Pcre.extract ~rex:metadata_RE s in
1177         let uri = UriManager.uri_of_string ("cic:/" ^ subs.(3)) in
1178         match subs.(1), subs.(2) with
1179         | "deps", "forward" -> `Deps (`Fwd, uri)
1180         | "deps", "backward" -> `Deps (`Back, uri)
1181         | _ -> assert false
1182       in
1183       let txt = HExtlib.trim_blanks txt in
1184       (* (* ZACK: what the heck? *)
1185       let fix_uri txt =
1186         UriManager.string_of_uri
1187           (UriManager.strip_xpointer (UriManager.uri_of_string txt))
1188       in
1189       *)
1190       if is_whelp txt then begin
1191         set_whelp_query txt;  
1192         (MatitaScript.current ())#advance ~statement:(txt ^ ".") ()
1193       end else begin
1194         let entry =
1195           match txt with
1196           | txt when is_uri txt ->
1197               `Uri (UriManager.uri_of_string ((*fix_uri*) txt))
1198           | txt when is_dir txt -> `Dir (MatitaMisc.normalize_dir txt)
1199           | txt when is_metadata txt -> `Metadata (parse_metadata txt)
1200           | "hbugs:/tutors/" -> `HBugs `Tutors
1201           | txt ->
1202              (try
1203                MatitaTypes.entry_of_string txt
1204               with Invalid_argument _ ->
1205                raise
1206                 (GrafiteTypes.Command_error(sprintf "unsupported uri: %s" txt)))
1207         in
1208         self#_load entry;
1209         self#_historyAdd entry
1210       end
1211
1212       (** {2 methods accessing underlying GtkMathView} *)
1213
1214     method updateFontSize = mathView#set_font_size !current_font_size
1215
1216       (** {2 methods used by constructor only} *)
1217
1218     method win = win
1219     method history = history
1220     method currentEntry = current_entry
1221     method refresh ~force () = self#_load ~force current_entry
1222
1223   end
1224   
1225 let sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) ():
1226   MatitaGuiTypes.sequentsViewer
1227 =
1228   new sequentsViewer ~notebook ~cicMathView ()
1229
1230 let cicBrowser () =
1231   let size = BuildTimeConf.browser_history_size in
1232   let rec aux history =
1233     let browser = new cicBrowser_impl ~history () in
1234     let win = browser#win in
1235     ignore (win#browserNewButton#connect#clicked (fun () ->
1236       let history =
1237         new MatitaMisc.browser_history ~memento:history#save size
1238           (`About `Blank)
1239       in
1240       let newBrowser = aux history in
1241       newBrowser#load browser#currentEntry));
1242 (*
1243       (* attempt (failed) to close windows on CTRL-W ... *)
1244     MatitaGtkMisc.connect_key win#browserWinEventBox#event ~modifiers:[`CONTROL]
1245       GdkKeysyms._W (fun () -> win#toplevel#destroy ());
1246 *)
1247     cicBrowsers := browser :: !cicBrowsers;
1248     (browser :> MatitaGuiTypes.cicBrowser)
1249   in
1250   let history = new MatitaMisc.browser_history size (`About `Blank) in
1251   aux history
1252
1253 let default_cicMathView () = cicMathView ~show:true ()
1254 let cicMathView_instance = MatitaMisc.singleton default_cicMathView
1255
1256 let default_sequentsViewer () =
1257   let gui = get_gui () in
1258   let cicMathView = cicMathView_instance () in
1259   sequentsViewer ~notebook:gui#main#sequentsNotebook ~cicMathView ()
1260 let sequentsViewer_instance = MatitaMisc.singleton default_sequentsViewer
1261
1262 let mathViewer () = 
1263   object(self)
1264     method private get_browser reuse = 
1265       if reuse then
1266         (match !cicBrowsers with
1267         | [] -> cicBrowser ()
1268         | b :: _ -> (b :> MatitaGuiTypes.cicBrowser))
1269       else
1270         (cicBrowser ())
1271           
1272     method show_entry ?(reuse=false) t = (self#get_browser reuse)#load t
1273       
1274     method show_uri_list ?(reuse=false) ~entry l =
1275       (self#get_browser reuse)#load entry
1276   end
1277
1278 let refresh_all_browsers () =
1279   List.iter (fun b -> b#refresh ~force:false ()) !cicBrowsers
1280
1281 let update_font_sizes () =
1282   List.iter (fun b -> b#updateFontSize) !cicBrowsers;
1283   (cicMathView_instance ())#update_font_size
1284
1285 let get_math_views () =
1286   ((cicMathView_instance ()) :> MatitaGuiTypes.clickableMathView)
1287   :: (List.map (fun b -> b#mathView) !cicBrowsers)
1288
1289 let find_selection_owner () =
1290   let rec aux =
1291     function
1292     | [] -> raise Not_found
1293     | mv :: tl ->
1294         (match mv#get_selections with
1295         | [] -> aux tl
1296         | sel :: _ -> mv)
1297   in
1298   aux (get_math_views ())
1299
1300 let has_selection () =
1301   try ignore (find_selection_owner ()); true
1302   with Not_found -> false
1303
1304 let math_view_clipboard = ref None (* associative list target -> string *)
1305 let has_clipboard () = !math_view_clipboard <> None
1306 let empty_clipboard () = math_view_clipboard := None
1307
1308 let copy_selection () =
1309   try
1310     math_view_clipboard :=
1311       Some ((find_selection_owner ())#strings_of_selection)
1312   with Not_found -> failwith "no selection"
1313
1314 let paste_clipboard paste_kind =
1315   match !math_view_clipboard with
1316   | None -> failwith "empty clipboard"
1317   | Some cb ->
1318       (try List.assoc paste_kind cb with Not_found -> assert false)
1319