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