]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/cicMathView.ml
HUGE COMMIT:
[helm.git] / matita / matita / cicMathView.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://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 open GrafiteTypes
29 open MatitaGtkMisc
30 open MatitaGuiTypes
31 open GtkSourceView2
32
33 let matita_script_current = ref (fun _ -> (assert false : < advance: ?statement:string -> unit -> unit; status: GrafiteTypes.status >));;
34 let register_matita_script_current f = matita_script_current := f;;
35 let get_matita_script_current () = !matita_script_current ();;
36
37 type document_element = (int * int * string) list * string (* hyperlinks,text *)
38
39 class type cicMathView =
40 object
41   inherit GObj.widget
42
43   method load_root : root:document_element -> unit
44   method remove_selections: unit
45   method set_selection: document_element option -> unit
46   method get_selections: document_element list
47
48     (** @raise Failure "no selection" *)
49   method strings_of_selection: (MatitaGuiTypes.paste_kind * string) list
50
51     (** set hyperlink callback. None disable hyperlink handling *)
52   method set_href_callback: (string -> unit) option -> unit
53
54     (** load a sequent and render it into parent widget *)
55   method nload_sequent:
56    #ApplyTransformation.status -> NCic.metasenv -> NCic.substitution -> int -> unit
57
58   method load_nobject: #ApplyTransformation.status -> NCic.obj -> unit
59 end
60
61 (*
62 let xlink_ns = Gdome.domString "http://www.w3.org/1999/xlink"
63 let helm_ns = Gdome.domString "http://www.cs.unibo.it/helm"
64 let href_ds = Gdome.domString "href"
65 let xref_ds = Gdome.domString "xref"
66 *)
67
68   (** Gdome.element of a MathML document whose rendering should be blank. Used
69   * by cicBrowser to render "about:blank" document *)
70 let empty_mathml = lazy ([],"")
71
72   (** shown for goals closed by side effects *)
73 let closed_goal_mathml = lazy ([],"chiuso per side effect...")
74
75 (*
76 let rec has_maction (elt :Gdome.element) = 
77   (* fix this comparison *)
78   if elt#get_tagName#to_string = "m:maction" ||
79    elt#get_tagName#to_string = "b:action" then
80     true
81   else 
82     match elt#get_parentNode with
83     | Some node when node#get_nodeType = GdomeNodeTypeT.ELEMENT_NODE -> 
84         has_maction (new Gdome.element_of_node node)
85     | _ -> false
86 ;;
87
88 let hrefs_of_elt elt =
89   let localName = href_ds in
90   if elt#hasAttributeNS ~namespaceURI:xlink_ns ~localName then
91     let text =
92       (elt#getAttributeNS ~namespaceURI:xlink_ns ~localName)#to_string in
93     Some (HExtlib.split text)
94   else
95     None
96
97 let id_of_node (node: Gdome.element) =
98   let xref_attr =
99     node#getAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds in
100   try
101     List.hd (HExtlib.split ~sep:' ' xref_attr#to_string)
102   with Failure _ -> assert false
103
104 type selected_term =
105   | SelTerm of NCic.term * string option (* term, parent hypothesis (if any) *)
106   | SelHyp of string * NCic.context (* hypothesis, context *)
107 *)
108
109 let near (x1, y1) (x2, y2) =
110   let distance = sqrt (((x2 -. x1) ** 2.) +. ((y2 -. y1) ** 2.)) in
111   (distance < 4.)
112
113 (*
114 let name_of_hypothesis = function
115   | Some (Cic.Name s, _) -> s
116   | _ -> assert false
117
118 let domImpl = Gdome.domImplementation ()
119
120 (* ids_to_terms should not be passed here, is just for debugging *)
121 let find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types =
122   assert false (* MATITA 1.0
123   let find_parent id ids =
124     let rec aux id =
125 (*       (prerr_endline (sprintf "id %s = %s" id
126         (try
127           CicPp.ppterm (Hashtbl.find ids_to_terms id)
128         with Not_found -> "NONE"))); *)
129       if List.mem id ids then Some id
130       else
131         (match
132           (try Hashtbl.find ids_to_father_ids id with Not_found -> None)
133         with
134         | None -> None
135         | Some id' -> aux id')
136     in
137     aux id
138   in
139   let return_father id ids =
140     match find_parent id ids with
141     | None -> assert false
142     | Some parent_id -> parent_id
143   in
144   let mk_ids terms = List.map CicUtil.id_of_annterm terms in
145   let inner_types =
146    Hashtbl.fold
147     (fun _ types acc ->
148       match types.Cic2acic.annexpected with
149          None -> types.Cic2acic.annsynthesized :: acc
150        | Some ty -> ty :: types.Cic2acic.annsynthesized :: acc
151     ) ids_to_inner_types [] in
152   match annobj with
153   | Cic.AConstant (_, _, _, Some bo, ty, _, _)
154   | Cic.AVariable (_, _, Some bo, ty, _, _)
155   | Cic.ACurrentProof (_, _, _, _, bo, ty, _, _) ->
156       return_father id (mk_ids (ty :: bo :: inner_types))
157   | Cic.AConstant (_, _, _, None, ty, _, _)
158   | Cic.AVariable (_, _, None, ty, _, _) ->
159       return_father id (mk_ids (ty::inner_types))
160   | Cic.AInductiveDefinition _ ->
161       assert false  (* TODO *)
162       *)
163
164   (** @return string content of a dom node having a single text child node, e.g.
165    * <m:mi xlink:href="...">bool</m:mi> *)
166 let string_of_dom_node node =
167   match node#get_firstChild with
168   | None -> ""
169   | Some node ->
170       (try
171         let text = new Gdome.text_of_node node in
172         text#get_data#to_string
173       with GdomeInit.DOMCastException _ -> "")
174 *)
175
176 class clickableMathView obj =
177 let text_width = 80 in
178 object (self)
179   inherit GSourceView2.source_view obj
180
181   method strings_of_selection = (assert false : (paste_kind * string) list)
182   method set_href_callback = (function _ -> () : (string -> unit) option -> unit)
183   method private set_cic_info = (function _ -> () : unit (*(Cic.conjecture option * (Cic.id, Cic.term) Hashtbl.t *
184          (Cic.id, Cic.hypothesis) Hashtbl.t *
185          (Cic.id, Cic.id option) Hashtbl.t * ('a, 'b) Hashtbl.t * 'c option)*) option -> unit)
186   (* dal widget di Luca *)
187   method load_root ~root:(hyperlinks,text) =
188     self#buffer#delete ~start:(self#buffer#get_iter `START)
189     ~stop:(self#buffer#get_iter `END);
190     self#buffer#insert text;
191     let hyperlink_tag = self#buffer#create_tag [`FOREGROUND "green"] in
192      List.iter
193       ( fun (start,stop,(href : string)) ->
194          self#buffer#apply_tag hyperlink_tag
195           ~start:(self#buffer#get_iter (`OFFSET start))
196           ~stop:(self#buffer#get_iter (`OFFSET stop))
197       ) hyperlinks
198   method action_toggle = (fun _ -> assert false : document_element -> bool)
199   method remove_selections = (() : unit)
200   method set_selection = (fun _ -> () : document_element option -> unit)
201   method get_selections = (assert false : document_element list)
202
203   initializer
204     self#source_buffer#set_language (Some MatitaGtkMisc.matita_lang);
205     self#source_buffer#set_highlight_syntax true;
206     self#set_editable false;
207     MatitaMisc.observe_font_size
208      (fun size ->
209        self#misc#modify_font_by_name
210         (sprintf "%s %d" BuildTimeConf.script_font size))
211
212 (* MATITA 1.0
213   inherit GMathViewAux.multi_selection_math_view obj
214
215   val mutable href_callback: (string -> unit) option = None
216   method set_href_callback f = href_callback <- f
217
218   val mutable _cic_info = None
219   method private set_cic_info info = _cic_info <- info
220   method private cic_info = _cic_info
221
222   val normal_cursor = Gdk.Cursor.create `LEFT_PTR
223   val href_cursor = Gdk.Cursor.create `HAND2
224   val maction_cursor = Gdk.Cursor.create `QUESTION_ARROW
225
226   initializer
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 = MatitaMisc.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 = MatitaMisc.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       (get_matita_script_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:MatitaMisc.right_button ~time
381
382   method private button_release_cb gdk_button =
383     if GdkEvent.Button.button gdk_button = MatitaMisc.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 = MatitaMisc.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     (** find a term by id from stored CIC infos @return either `Hyp if the id
452      * correspond to an hypothesis or `Term (cic, hyp) if the id correspond to a
453      * term. In the latter case hyp is either None (if the term is a subterm of
454      * the sequent conclusion) or Some hyp_name if the term belongs to an
455      * hypothesis *)
456   method private get_term_by_id cic_info id =
457     let unsh_item, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, _, _ =
458       cic_info in
459     let rec find_father_hyp id =
460       if Hashtbl.mem ids_to_hypotheses id
461       then Some (name_of_hypothesis (Hashtbl.find ids_to_hypotheses id))
462       else
463         let father_id =
464           try Hashtbl.find ids_to_father_ids id
465           with Not_found -> assert false in
466         match father_id with
467         | Some id -> find_father_hyp id
468         | None -> None
469     in
470     try
471       let term = Hashtbl.find ids_to_terms id in
472       let father_hyp = find_father_hyp id in
473       SelTerm (term, father_hyp)
474     with Not_found ->
475       try
476         let hyp = Hashtbl.find ids_to_hypotheses id in
477         let _, context, _ =
478           match unsh_item with Some seq -> seq | None -> assert false in
479         let context' = MatitaMisc.list_tl_at hyp context in
480         SelHyp (name_of_hypothesis hyp, context')
481       with Not_found -> assert false
482     
483   method private find_obj_conclusion id =
484     match self#cic_info with
485     | None
486     | Some (_, _, _, _, _, None) -> assert false
487     | Some (_, ids_to_terms, _, ids_to_father_ids, ids_to_inner_types, Some annobj) ->
488         let id =
489          find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types
490         in
491          (try Hashtbl.find ids_to_terms id with Not_found -> assert false)
492
493   method private string_of_node ~(paste_kind:paste_kind) node =
494     if node#hasAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds
495     then
496       match paste_kind with
497       | `Pattern ->
498           let tactic_text_pattern =  self#tactic_text_pattern_of_node node in
499           GrafiteAstPp.pp_tactic_pattern
500             ~term_pp:(fun s -> s) ~lazy_term_pp:(fun _ -> assert false)
501             ~map_unicode_to_tex:(Helm_registry.get_bool
502               "matita.paste_unicode_as_tex")
503             tactic_text_pattern
504       | `Term -> self#tactic_text_of_node node
505     else string_of_dom_node node
506
507   method private string_of_cic_sequent ~output_type cic_sequent =
508     let script = get_matita_script_current () in
509     let metasenv =
510       if script#onGoingProof () then script#proofMetasenv else [] in
511     let map_unicode_to_tex =
512       Helm_registry.get_bool "matita.paste_unicode_as_tex" in
513     ApplyTransformation.txt_of_cic_sequent_conclusion ~map_unicode_to_tex
514      ~output_type text_width metasenv cic_sequent
515
516   method private pattern_of term father_hyp unsh_sequent =
517     let _, unsh_context, conclusion = unsh_sequent in
518     let where =
519      match father_hyp with
520         None -> conclusion
521       | Some name ->
522          let rec aux =
523           function
524              [] -> assert false
525            | Some (Cic.Name name', Cic.Decl ty)::_ when name' = name -> ty
526            | Some (Cic.Name name', Cic.Def (bo,_))::_ when name' = name-> bo
527            | _::tl -> aux tl
528          in
529           aux unsh_context
530     in
531      ProofEngineHelpers.pattern_of ~term:where [term]
532
533   method private get_cic_info id =
534     match self#cic_info with
535     | Some ((Some unsh_sequent, _, _, _, _, _) as info) -> info, unsh_sequent
536     | Some ((None, _, _, _, _, _) as info) ->
537         let t = self#find_obj_conclusion id in
538         info, (~-1, [], t) (* dummy sequent for obj *)
539     | None -> assert false
540
541   method private sequent_of_id ~(paste_kind:paste_kind) id =
542     let cic_info, unsh_sequent = self#get_cic_info id in
543     let cic_sequent =
544       match self#get_term_by_id cic_info id with
545       | SelTerm (t, father_hyp) ->
546 (*
547 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
548 *)
549           let occurrences =
550             ProofEngineHelpers.locate_in_conjecture t unsh_sequent in
551           (match occurrences with
552           | [ context, _t ] ->
553               (match paste_kind with
554               | `Term -> ~-1, context, t
555               | `Pattern -> ~-1, [], self#pattern_of t father_hyp unsh_sequent)
556           | _ ->
557               HLog.error (sprintf "found %d occurrences while 1 was expected"
558                 (List.length occurrences));
559               assert false) (* since it uses physical equality *)
560       | SelHyp (_name, context) -> ~-1, context, Cic.Rel 1 in
561     cic_sequent
562
563   method private string_of_selection ~(paste_kind:paste_kind) =
564     match self#get_selections with
565     | [] -> None
566     | node :: _ -> Some (self#string_of_node ~paste_kind node)
567
568     (** @return an associative list format -> string with all possible selection
569      * formats. Rationale: in order to convert the selection to TERM or PATTERN
570      * format we need the sequent, the metasenv, ... keeping all of them in a
571      * closure would be more expensive than keeping their already converted
572      * forms *)
573   method strings_of_selection =
574     try
575       let misc = self#coerce#misc in
576       List.iter
577         (fun target -> misc#add_selection_target ~target Gdk.Atom.clipboard)
578         [ "TERM"; "PATTERN"; "STRING" ];
579       ignore (misc#grab_selection Gdk.Atom.clipboard);
580       List.map
581         (fun paste_kind ->
582           paste_kind, HExtlib.unopt (self#string_of_selection ~paste_kind))
583         [ `Term; `Pattern ]
584     with Failure _ -> failwith "no selection"
585 *)
586 end
587
588 class _cicMathView obj =
589 object (self)
590   inherit clickableMathView obj
591
592   val mutable current_mathml = None
593
594   method nload_sequent:
595    'status. #ApplyTransformation.status as 'status -> NCic.metasenv ->
596      NCic.substitution -> int -> unit
597    = fun status metasenv subst metano ->
598     let sequent = List.assoc metano metasenv in
599     let txt =
600      ApplyTransformation.ntxt_of_cic_sequent
601       ~map_unicode_to_tex:false 80 status ~metasenv ~subst (metano,sequent)
602     in
603     (* MATITA 1.0 if BuildTimeConf.debug then begin
604       let name =
605        "/tmp/sequent_viewer_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
606       HLog.debug ("load_sequent: dumping MathML to ./" ^ name);
607       ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
608     end;*)
609     self#load_root ~root:txt
610
611   method load_nobject :
612    'status. #ApplyTransformation.status as 'status -> NCic.obj -> unit
613    = fun status obj ->
614     let txt = ApplyTransformation.ntxt_of_cic_object ~map_unicode_to_tex:false
615     80 status obj in
616 (*
617     self#set_cic_info
618       (Some (None, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj));
619     (match current_mathml with
620     | Some current_mathml when use_diff ->
621         self#freeze;
622         XmlDiff.update_dom ~from:current_mathml mathml;
623         self#thaw
624     |  _ ->
625 *)
626         (* MATITA 1.0 if BuildTimeConf.debug then begin
627           let name =
628            "/tmp/cic_browser_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
629           HLog.debug ("cic_browser: dumping MathML to ./" ^ name);
630           ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
631         end;*)
632         self#load_root ~root:txt;
633         (*current_mathml <- Some mathml*)(*)*);
634 end
635
636  (** constructors *)
637
638 let cicMathView (*?auto_indent ?highlight_current_line ?indent_on_tab ?indent_width ?insert_spaces_instead_of_tabs ?right_margin_position ?show_line_marks ?show_line_numbers ?show_right_margin ?smart_home_end ?tab_width ?editable ?cursor_visible ?justification ?wrap_mode ?accepts_tab ?border_width*) ?width ?height ?packing ?show () =
639  ((*SourceView.make_params [] ~cont:(
640     GtkText.View.make_params ~cont:( *)
641       GContainer.pack_container ~create:(fun pl ->
642         let obj = SourceView.new_ () in
643         Gobject.set_params (Gobject.try_cast obj "GtkSourceView") pl;
644         new _cicMathView obj)(*)) ?auto_indent ?highlight_current_line ?indent_on_tab ?indent_width ?insert_spaces_instead_of_tabs ?right_margin_position ?show_line_marks ?show_line_numbers ?show_right_margin ?smart_home_end ?tab_width ?editable ?cursor_visible ?justification ?wrap_mode ?accepts_tab ?border_width*) [] ?width ?height ?packing ?show () :> cicMathView)
645
646 let screenshot status sequents metasenv subst (filename as ofn) =
647  () (*MATITA 1.0
648   let w = GWindow.window ~title:"screenshot" () in
649   let width = 500 in
650   let height = 2000 in
651   let m = GMathView.math_view 
652      ~font_size:(MatitaMisc.get_current_font_size ()) ~width ~height
653      ~packing:w#add
654      ~show:true ()
655   in
656   w#show ();
657   let filenames = 
658    HExtlib.list_mapi
659     (fun (mno,_ as sequent) i ->
660        let mathml = 
661          ApplyTransformation.nmml_of_cic_sequent 
662            status metasenv subst sequent
663        in
664        m#load_root ~root:mathml#get_documentElement;
665        let pixmap = m#get_buffer in
666        let pixbuf = GdkPixbuf.create ~width ~height () in
667        GdkPixbuf.get_from_drawable ~dest:pixbuf pixmap;
668        let filename = 
669          filename ^ "-raw" ^ string_of_int i ^ ".png" 
670        in
671        GdkPixbuf.save ~filename ~typ:"png" pixbuf;
672        filename,mno)
673     sequents
674   in
675   let items = 
676     List.map (fun (x,mno) -> 
677       ignore(Sys.command
678         (Printf.sprintf
679          ("convert "^^
680          " '(' -gravity west -bordercolor grey -border 1 label:%d ')' "^^
681          " '(' -trim -bordercolor white -border 5 "^^
682            " -bordercolor grey -border 1 %s ')' -append %s ")
683          mno
684          (Filename.quote x)
685          (Filename.quote (x ^ ".label.png"))));
686         x ^ ".label.png")
687     filenames
688   in
689   let rec div2 = function 
690     | [] -> []
691     | [x] -> [[x]]
692     | x::y::tl -> [x;y] :: div2 tl
693   in
694   let items = div2 items in
695   ignore(Sys.command (Printf.sprintf 
696     "convert %s -append  %s" 
697      (String.concat ""
698        (List.map (fun items ->
699          Printf.sprintf " '(' %s +append ')' "
700            (String.concat 
701               (" '(' -gravity center -size 10x10 xc: ')' ") items)) items))
702     (Filename.quote (ofn ^ ".png")))); 
703   List.iter (fun x,_ -> Sys.remove x) filenames;
704   List.iter Sys.remove (List.flatten items);
705   w#destroy ()*)