1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
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 ();;
37 type document_element = (int * int * string) list * string (* hyperlinks,text *)
39 class type cicMathView =
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
48 (** @raise Failure "no selection" *)
49 method strings_of_selection: (MatitaGuiTypes.paste_kind * string) list
51 (** set hyperlink callback. None disable hyperlink handling *)
52 method set_href_callback: (string -> unit) option -> unit
54 (** load a sequent and render it into parent widget *)
56 #ApplyTransformation.status -> NCic.metasenv -> NCic.substitution -> int -> unit
58 method load_nobject: #ApplyTransformation.status -> NCic.obj -> unit
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"
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 ([],"")
72 (** shown for goals closed by side effects *)
73 let closed_goal_mathml = lazy ([],"chiuso per side effect...")
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
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)
88 let hrefs_of_elt elt =
89 let localName = href_ds in
90 if elt#hasAttributeNS ~namespaceURI:xlink_ns ~localName then
92 (elt#getAttributeNS ~namespaceURI:xlink_ns ~localName)#to_string in
93 Some (HExtlib.split text)
97 let id_of_node (node: Gdome.element) =
99 node#getAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds in
101 List.hd (HExtlib.split ~sep:' ' xref_attr#to_string)
102 with Failure _ -> assert false
105 | SelTerm of NCic.term * string option (* term, parent hypothesis (if any) *)
106 | SelHyp of string * NCic.context (* hypothesis, context *)
109 let near (x1, y1) (x2, y2) =
110 let distance = sqrt (((x2 -. x1) ** 2.) +. ((y2 -. y1) ** 2.)) in
114 let name_of_hypothesis = function
115 | Some (Cic.Name s, _) -> s
118 let domImpl = Gdome.domImplementation ()
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 =
125 (* (prerr_endline (sprintf "id %s = %s" id
127 CicPp.ppterm (Hashtbl.find ids_to_terms id)
128 with Not_found -> "NONE"))); *)
129 if List.mem id ids then Some id
132 (try Hashtbl.find ids_to_father_ids id with Not_found -> None)
135 | Some id' -> aux id')
139 let return_father id ids =
140 match find_parent id ids with
141 | None -> assert false
142 | Some parent_id -> parent_id
144 let mk_ids terms = List.map CicUtil.id_of_annterm terms in
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
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 *)
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
171 let text = new Gdome.text_of_node node in
172 text#get_data#to_string
173 with GdomeInit.DOMCastException _ -> "")
176 class clickableMathView obj =
177 let text_width = 80 in
179 inherit GSourceView2.source_view obj
181 method strings_of_selection = (assert false : (paste_kind * string) list)
183 val mutable href_callback: (string -> unit) option = None
184 method set_href_callback f = href_callback <- f
186 val mutable href_statusbar_msg:
187 (GMisc.statusbar_context * Gtk.statusbar_message) option = None
188 (* <statusbar ctxt, statusbar msg> *)
190 method private set_cic_info = (function _ -> () : unit (*(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:(hyperlinks,text) =
195 self#buffer#delete ~start:(self#buffer#get_iter `START)
196 ~stop:(self#buffer#get_iter `END);
197 self#buffer#insert text;
198 let all_tag = self#buffer#create_tag [] in
199 self#buffer#apply_tag all_tag ~start:(self#buffer#get_iter `START)
200 ~stop:(self#buffer#get_iter `END);
201 ignore(all_tag#connect#event
202 ~callback:(fun ~origin event pos ->
203 match GdkEvent.get_type event with
205 Gdk.Window.set_cursor
206 (match self#get_window `TEXT with None -> assert false | Some x -> x)
207 (Gdk.Cursor.create `ARROW);
208 HExtlib.iter_option (fun (ctxt, msg) -> ctxt#remove msg)
213 ( fun (start,stop,(href : string)) ->
214 let hyperlink_tag = self#buffer#create_tag [] in
215 self#buffer#apply_tag hyperlink_tag
216 ~start:(self#buffer#get_iter_at_char start)
217 ~stop:(self#buffer#get_iter_at_char (stop+1));
218 ignore(hyperlink_tag#connect#event
219 ~callback:(fun ~origin event pos ->
220 match GdkEvent.get_type event with
222 (match href_callback with
227 Gdk.Window.set_cursor
228 (match self#get_window `TEXT with None -> assert false | Some x -> x)
229 (Gdk.Cursor.create `HAND1);
230 let ctxt = (MatitaMisc.get_gui ())#main#statusBar#new_context ~name:"href" in
231 let msg = ctxt#push href in
232 href_statusbar_msg <- Some (ctxt, msg);
237 method action_toggle = (fun _ -> assert false : document_element -> bool)
238 method remove_selections = (() : unit)
239 method set_selection = (fun _ -> () : document_element option -> unit)
240 method get_selections = (assert false : document_element list)
243 self#source_buffer#set_language (Some MatitaGtkMisc.matita_lang);
244 self#source_buffer#set_highlight_syntax true;
245 self#set_editable false;
246 MatitaMisc.observe_font_size
248 self#misc#modify_font_by_name
249 (sprintf "%s %d" BuildTimeConf.script_font size))
252 inherit GMathViewAux.multi_selection_math_view obj
254 val mutable href_callback: (string -> unit) option = None
255 method set_href_callback f = href_callback <- f
257 val mutable _cic_info = None
258 method private set_cic_info info = _cic_info <- info
259 method private cic_info = _cic_info
261 val normal_cursor = Gdk.Cursor.create `LEFT_PTR
262 val href_cursor = Gdk.Cursor.create `HAND2
263 val maction_cursor = Gdk.Cursor.create `QUESTION_ARROW
266 ignore (self#connect#selection_changed self#choose_selection_cb);
267 ignore (self#event#connect#button_press self#button_press_cb);
268 ignore (self#event#connect#button_release self#button_release_cb);
269 ignore (self#event#connect#selection_clear self#selection_clear_cb);
270 ignore (self#connect#element_over self#element_over_cb);
271 ignore (self#coerce#misc#connect#selection_get self#selection_get_cb)
273 val mutable button_press_x = -1.
274 val mutable button_press_y = -1.
275 val mutable selection_changed = false
276 val mutable href_statusbar_msg:
277 (GMisc.statusbar_context * Gtk.statusbar_message) option = None
278 (* <statusbar ctxt, statusbar msg> *)
280 method private selection_get_cb ctxt ~info ~time =
282 match ctxt#target with
283 | "PATTERN" -> self#text_of_selection `Pattern
284 | "TERM" | _ -> self#text_of_selection `Term
288 | Some s -> ctxt#return s
290 method private text_of_selection fmt =
291 match self#get_selections with
293 | node :: _ -> Some (self#string_of_node ~paste_kind:fmt node)
295 method private selection_clear_cb sel_event =
296 self#remove_selections;
297 (GData.clipboard Gdk.Atom.clipboard)#clear ();
300 method private button_press_cb gdk_button =
301 let button = GdkEvent.Button.button gdk_button in
302 if button = MatitaMisc.left_button then begin
303 button_press_x <- GdkEvent.Button.x gdk_button;
304 button_press_y <- GdkEvent.Button.y gdk_button;
305 selection_changed <- false
306 end else if button = MatitaMisc.right_button then
307 self#popup_contextual_menu
309 (int_of_float (GdkEvent.Button.x gdk_button))
310 (int_of_float (GdkEvent.Button.y gdk_button)))
311 (GdkEvent.Button.time gdk_button);
314 method private element_over_cb (elt_opt, _, _, _) =
315 let win () = self#misc#window in
317 Gdk.Window.set_cursor (win ()) normal_cursor;
318 HExtlib.iter_option (fun (ctxt, msg) -> ctxt#remove msg)
323 if has_maction elt then
324 Gdk.Window.set_cursor (win ()) maction_cursor
326 (match hrefs_of_elt elt with
327 | Some ((_ :: _) as hrefs) ->
328 Gdk.Window.set_cursor (win ()) href_cursor;
329 let msg_text = (* now create statusbar msg and store it *)
331 | [ href ] -> sprintf "Hyperlink to %s" href
332 | _ -> sprintf "Hyperlinks to: %s" (String.concat ", " hrefs) in
333 let ctxt = (get_gui ())#main#statusBar#new_context ~name:"href" in
334 let msg = ctxt#push msg_text in
335 href_statusbar_msg <- Some (ctxt, msg)
336 | _ -> leave_href ())
337 | None -> leave_href ()
339 method private tactic_text_pattern_of_node node =
340 let id = id_of_node node in
341 let cic_info, unsh_sequent = self#get_cic_info id in
342 match self#get_term_by_id cic_info id with
343 | SelTerm (t, father_hyp) ->
344 let sequent = self#sequent_of_id ~paste_kind:`Pattern id in
345 let text = self#string_of_cic_sequent ~output_type:`Pattern sequent in
346 (match father_hyp with
347 | None -> None, [], Some text
348 | Some hyp_name -> None, [ hyp_name, text ], None)
349 | SelHyp (hyp_name, _ctxt) -> None, [ hyp_name, "%" ], None
351 method private tactic_text_of_node node =
352 let id = id_of_node node in
353 let cic_info, unsh_sequent = self#get_cic_info id in
354 match self#get_term_by_id cic_info id with
355 | SelTerm (t, father_hyp) ->
356 let sequent = self#sequent_of_id ~paste_kind:`Term id in
357 let text = self#string_of_cic_sequent ~output_type:`Term sequent in
359 | SelHyp (hyp_name, _ctxt) -> hyp_name
361 (** @return a pattern structure which contains pretty printed terms *)
362 method private tactic_text_pattern_of_selection =
363 match self#get_selections with
364 | [] -> assert false (* this method is invoked only if there's a sel. *)
365 | node :: _ -> self#tactic_text_pattern_of_node node
367 method private popup_contextual_menu element time =
368 let menu = GMenu.menu () in
369 let add_menu_item ?(menu = menu) ?stock ?label () =
370 GMenu.image_menu_item ?stock ?label ~packing:menu#append () in
371 let check = add_menu_item ~label:"Check" () in
372 let reductions_menu_item = GMenu.menu_item ~label:"βδιζ-reduce" () in
373 let tactics_menu_item = GMenu.menu_item ~label:"Apply tactic" () in
374 let hyperlinks_menu_item = GMenu.menu_item ~label:"Hyperlinks" () in
375 menu#append reductions_menu_item;
376 menu#append tactics_menu_item;
377 menu#append hyperlinks_menu_item;
378 let reductions = GMenu.menu () in
379 let tactics = GMenu.menu () in
380 let hyperlinks = GMenu.menu () in
381 reductions_menu_item#set_submenu reductions;
382 tactics_menu_item#set_submenu tactics;
383 hyperlinks_menu_item#set_submenu hyperlinks;
384 let normalize = add_menu_item ~menu:reductions ~label:"Normalize" () in
385 let simplify = add_menu_item ~menu:reductions ~label:"Simplify" () in
386 let whd = add_menu_item ~menu:reductions ~label:"Weak head" () in
388 | None -> hyperlinks_menu_item#misc#set_sensitive false
390 match hrefs_of_elt elt, href_callback with
394 let item = add_menu_item ~menu:hyperlinks ~label:h () in
395 connect_menu_item item (fun () -> f h)) l
396 | _ -> hyperlinks_menu_item#misc#set_sensitive false);
397 menu#append (GMenu.separator_item ());
398 let copy = add_menu_item ~stock:`COPY () in
399 let gui = get_gui () in
400 List.iter (fun item -> item#misc#set_sensitive gui#canCopy)
401 [ copy; check; normalize; simplify; whd ];
402 let reduction_action kind () =
403 let pat = self#tactic_text_pattern_of_selection in
405 let loc = HExtlib.dummy_floc in
407 GrafiteAstPp.pp_executable ~term_pp:(fun s -> s)
408 ~lazy_term_pp:(fun _ -> assert false) ~obj_pp:(fun _ -> assert false)
409 ~map_unicode_to_tex:(Helm_registry.get_bool
410 "matita.paste_unicode_as_tex")
411 (GrafiteAst.Tactic (loc,
412 Some (GrafiteAst.Reduce (loc, kind, pat)),
413 GrafiteAst.Semicolon loc)) in
414 (get_matita_script_current ())#advance ~statement () in
415 connect_menu_item copy gui#copy;
416 connect_menu_item normalize (reduction_action `Normalize);
417 connect_menu_item simplify (reduction_action `Simpl);
418 connect_menu_item whd (reduction_action `Whd);
419 menu#popup ~button:MatitaMisc.right_button ~time
421 method private button_release_cb gdk_button =
422 if GdkEvent.Button.button gdk_button = MatitaMisc.left_button then begin
423 let button_release_x = GdkEvent.Button.x gdk_button in
424 let button_release_y = GdkEvent.Button.y gdk_button in
425 if selection_changed then
427 else (* selection _not_ changed *)
428 if near (button_press_x, button_press_y)
429 (button_release_x, button_release_y)
431 let x = int_of_float button_press_x in
432 let y = int_of_float button_press_y in
433 (match self#get_element_at x y with
436 if has_maction elt then ignore(self#action_toggle elt) else
437 (match hrefs_of_elt elt with
438 | Some hrefs -> self#invoke_href_callback hrefs gdk_button
443 method private invoke_href_callback hrefs gdk_button =
444 let button = GdkEvent.Button.button gdk_button in
445 if button = MatitaMisc.left_button then
446 let time = GdkEvent.Button.time gdk_button in
447 match href_callback with
453 let menu = GMenu.menu () in
457 GMenu.menu_item ~label:uri ~packing:menu#append () in
458 connect_menu_item menu_item
459 (fun () -> try f uri with Not_found -> assert false))
461 menu#popup ~button ~time)
463 method private choose_selection_cb gdome_elt =
464 let set_selection elt =
465 let misc = self#coerce#misc in
466 self#set_selection (Some elt);
467 misc#add_selection_target ~target:"STRING" Gdk.Atom.primary;
468 ignore (misc#grab_selection Gdk.Atom.primary);
471 if (elt#getAttributeNS ~namespaceURI:helm_ns
472 ~localName:xref_ds)#to_string <> ""
477 (match elt#get_parentNode with
478 | None -> assert false
479 | Some p -> aux (new Gdome.element_of_node p))
480 with GdomeInit.DOMCastException _ -> ()
482 (match gdome_elt with
483 | Some elt when (elt#getAttributeNS ~namespaceURI:xlink_ns
484 ~localName:href_ds)#to_string <> "" ->
486 | Some elt -> aux elt
487 | None -> self#set_selection None);
488 selection_changed <- true
490 (** find a term by id from stored CIC infos @return either `Hyp if the id
491 * correspond to an hypothesis or `Term (cic, hyp) if the id correspond to a
492 * term. In the latter case hyp is either None (if the term is a subterm of
493 * the sequent conclusion) or Some hyp_name if the term belongs to an
495 method private get_term_by_id cic_info id =
496 let unsh_item, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, _, _ =
498 let rec find_father_hyp id =
499 if Hashtbl.mem ids_to_hypotheses id
500 then Some (name_of_hypothesis (Hashtbl.find ids_to_hypotheses id))
503 try Hashtbl.find ids_to_father_ids id
504 with Not_found -> assert false in
506 | Some id -> find_father_hyp id
510 let term = Hashtbl.find ids_to_terms id in
511 let father_hyp = find_father_hyp id in
512 SelTerm (term, father_hyp)
515 let hyp = Hashtbl.find ids_to_hypotheses id in
517 match unsh_item with Some seq -> seq | None -> assert false in
518 let context' = MatitaMisc.list_tl_at hyp context in
519 SelHyp (name_of_hypothesis hyp, context')
520 with Not_found -> assert false
522 method private find_obj_conclusion id =
523 match self#cic_info with
525 | Some (_, _, _, _, _, None) -> assert false
526 | Some (_, ids_to_terms, _, ids_to_father_ids, ids_to_inner_types, Some annobj) ->
528 find_root_id annobj id ids_to_father_ids ids_to_terms ids_to_inner_types
530 (try Hashtbl.find ids_to_terms id with Not_found -> assert false)
532 method private string_of_node ~(paste_kind:paste_kind) node =
533 if node#hasAttributeNS ~namespaceURI:helm_ns ~localName:xref_ds
535 match paste_kind with
537 let tactic_text_pattern = self#tactic_text_pattern_of_node node in
538 GrafiteAstPp.pp_tactic_pattern
539 ~term_pp:(fun s -> s) ~lazy_term_pp:(fun _ -> assert false)
540 ~map_unicode_to_tex:(Helm_registry.get_bool
541 "matita.paste_unicode_as_tex")
543 | `Term -> self#tactic_text_of_node node
544 else string_of_dom_node node
546 method private string_of_cic_sequent ~output_type cic_sequent =
547 let script = get_matita_script_current () in
549 if script#onGoingProof () then script#proofMetasenv else [] in
550 let map_unicode_to_tex =
551 Helm_registry.get_bool "matita.paste_unicode_as_tex" in
552 ApplyTransformation.txt_of_cic_sequent_conclusion ~map_unicode_to_tex
553 ~output_type text_width metasenv cic_sequent
555 method private pattern_of term father_hyp unsh_sequent =
556 let _, unsh_context, conclusion = unsh_sequent in
558 match father_hyp with
564 | Some (Cic.Name name', Cic.Decl ty)::_ when name' = name -> ty
565 | Some (Cic.Name name', Cic.Def (bo,_))::_ when name' = name-> bo
570 ProofEngineHelpers.pattern_of ~term:where [term]
572 method private get_cic_info id =
573 match self#cic_info with
574 | Some ((Some unsh_sequent, _, _, _, _, _) as info) -> info, unsh_sequent
575 | Some ((None, _, _, _, _, _) as info) ->
576 let t = self#find_obj_conclusion id in
577 info, (~-1, [], t) (* dummy sequent for obj *)
578 | None -> assert false
580 method private sequent_of_id ~(paste_kind:paste_kind) id =
581 let cic_info, unsh_sequent = self#get_cic_info id in
583 match self#get_term_by_id cic_info id with
584 | SelTerm (t, father_hyp) ->
586 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
589 ProofEngineHelpers.locate_in_conjecture t unsh_sequent in
590 (match occurrences with
592 (match paste_kind with
593 | `Term -> ~-1, context, t
594 | `Pattern -> ~-1, [], self#pattern_of t father_hyp unsh_sequent)
596 HLog.error (sprintf "found %d occurrences while 1 was expected"
597 (List.length occurrences));
598 assert false) (* since it uses physical equality *)
599 | SelHyp (_name, context) -> ~-1, context, Cic.Rel 1 in
602 method private string_of_selection ~(paste_kind:paste_kind) =
603 match self#get_selections with
605 | node :: _ -> Some (self#string_of_node ~paste_kind node)
607 (** @return an associative list format -> string with all possible selection
608 * formats. Rationale: in order to convert the selection to TERM or PATTERN
609 * format we need the sequent, the metasenv, ... keeping all of them in a
610 * closure would be more expensive than keeping their already converted
612 method strings_of_selection =
614 let misc = self#coerce#misc in
616 (fun target -> misc#add_selection_target ~target Gdk.Atom.clipboard)
617 [ "TERM"; "PATTERN"; "STRING" ];
618 ignore (misc#grab_selection Gdk.Atom.clipboard);
621 paste_kind, HExtlib.unopt (self#string_of_selection ~paste_kind))
623 with Failure _ -> failwith "no selection"
627 class _cicMathView obj =
629 inherit clickableMathView obj
631 val mutable current_mathml = None
633 method nload_sequent:
634 'status. #ApplyTransformation.status as 'status -> NCic.metasenv ->
635 NCic.substitution -> int -> unit
636 = fun status metasenv subst metano ->
637 let sequent = List.assoc metano metasenv in
639 ApplyTransformation.ntxt_of_cic_sequent
640 ~map_unicode_to_tex:false 50 status ~metasenv ~subst (metano,sequent)
642 (* MATITA 1.0 if BuildTimeConf.debug then begin
644 "/tmp/sequent_viewer_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
645 HLog.debug ("load_sequent: dumping MathML to ./" ^ name);
646 ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
648 self#load_root ~root:txt
650 method load_nobject :
651 'status. #ApplyTransformation.status as 'status -> NCic.obj -> unit
653 let txt = ApplyTransformation.ntxt_of_cic_object ~map_unicode_to_tex:false
657 (Some (None, ids_to_terms, ids_to_hypotheses, ids_to_father_ids, ids_to_inner_types, Some annobj));
658 (match current_mathml with
659 | Some current_mathml when use_diff ->
661 XmlDiff.update_dom ~from:current_mathml mathml;
665 (* MATITA 1.0 if BuildTimeConf.debug then begin
667 "/tmp/cic_browser_" ^ string_of_int (Unix.getuid ()) ^ ".xml" in
668 HLog.debug ("cic_browser: dumping MathML to ./" ^ name);
669 ignore (domImpl#saveDocumentToFile ~name ~doc:mathml ())
671 self#load_root ~root:txt;
672 (*current_mathml <- Some mathml*)(*)*);
677 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 () =
678 ((*SourceView.make_params [] ~cont:(
679 GtkText.View.make_params ~cont:( *)
680 GContainer.pack_container ~create:(fun pl ->
681 let obj = SourceView.new_ () in
682 Gobject.set_params (Gobject.try_cast obj "GtkSourceView") pl;
683 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)
685 let screenshot status sequents metasenv subst (filename as ofn) =
687 let w = GWindow.window ~title:"screenshot" () in
690 let m = GMathView.math_view
691 ~font_size:(MatitaMisc.get_current_font_size ()) ~width ~height
698 (fun (mno,_ as sequent) i ->
700 ApplyTransformation.nmml_of_cic_sequent
701 status metasenv subst sequent
703 m#load_root ~root:mathml#get_documentElement;
704 let pixmap = m#get_buffer in
705 let pixbuf = GdkPixbuf.create ~width ~height () in
706 GdkPixbuf.get_from_drawable ~dest:pixbuf pixmap;
708 filename ^ "-raw" ^ string_of_int i ^ ".png"
710 GdkPixbuf.save ~filename ~typ:"png" pixbuf;
715 List.map (fun (x,mno) ->
719 " '(' -gravity west -bordercolor grey -border 1 label:%d ')' "^^
720 " '(' -trim -bordercolor white -border 5 "^^
721 " -bordercolor grey -border 1 %s ')' -append %s ")
724 (Filename.quote (x ^ ".label.png"))));
728 let rec div2 = function
731 | x::y::tl -> [x;y] :: div2 tl
733 let items = div2 items in
734 ignore(Sys.command (Printf.sprintf
735 "convert %s -append %s"
737 (List.map (fun items ->
738 Printf.sprintf " '(' %s +append ')' "
740 (" '(' -gravity center -size 10x10 xc: ')' ") items)) items))
741 (Filename.quote (ofn ^ ".png"))));
742 List.iter (fun x,_ -> Sys.remove x) filenames;
743 List.iter Sys.remove (List.flatten items);