]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaMathView.ml
ported to new getter interface
[helm.git] / helm / 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 open Printf
27
28 open MatitaTypes
29
30 let list_map_fail f =
31   let rec aux = function
32     | [] -> []
33     | he::tl ->
34         try
35           let he' = f he in
36           he'::(aux tl)
37         with Exit ->
38           (aux tl)
39   in
40   aux
41
42 let add_trailing_slash =
43   let rex = Pcre.regexp "/$" in
44   fun s ->
45     if Pcre.pmatch ~rex s then s
46     else s ^ "/"
47
48 let strip_blanks =
49   let rex = Pcre.regexp "^\\s*([^\\s]*)\\s*$" in
50   fun s ->
51     (Pcre.extract ~rex s).(1)
52
53 (** inherit from this class if you want to access current script *)
54 class scriptAccessor =
55 object (self)
56   method private script = MatitaScript.instance ()
57 end
58
59 let cicBrowsers = ref []
60
61 let default_font_size () =
62   Helm_registry.get_opt_default Helm_registry.int
63     ~default:BuildTimeConf.default_font_size "matita.font_size"
64 let current_font_size = ref ~-1
65 let increase_font_size () = incr current_font_size
66 let decrease_font_size () = decr current_font_size
67 let reset_font_size () = current_font_size := default_font_size ()
68
69 class clickableMathView obj =
70   let href = Gdome.domString "href" in
71   let xref = Gdome.domString "xref" in
72   object (self)
73     inherit GMathViewAux.multi_selection_math_view obj
74
75     val mutable href_callback: (string -> unit) option = None
76     method set_href_callback f = href_callback <- f
77
78     initializer
79       self#set_font_size !current_font_size;
80       ignore (self#connect#selection_changed self#choose_selection);
81       ignore (self#connect#click (fun (gdome_elt, _, _, _) ->
82         match gdome_elt with
83         | Some elt  (* element is an hyperlink, use href_callback on it *)
84           when elt#hasAttributeNS ~namespaceURI:DomMisc.xlink_ns ~localName:href ->
85             (match href_callback with
86             | None -> ()
87             | Some f ->
88                 let uri =
89                   elt#getAttributeNS ~namespaceURI:DomMisc.xlink_ns ~localName:href
90                 in
91                 f (uri#to_string))
92         | Some elt -> ignore (self#action_toggle elt)
93         | None -> ()))
94     method private choose_selection gdome_elt =
95       let rec aux elt =
96         if elt#hasAttributeNS ~namespaceURI:DomMisc.helm_ns ~localName:xref then
97           self#set_selection (Some elt)
98         else
99           try
100             (match elt#get_parentNode with
101             | None -> assert false
102             | Some p -> aux (new Gdome.element_of_node p))
103           with GdomeInit.DOMCastException _ -> ()
104 (*             debug_print "trying to select above the document root" *)
105       in
106       match gdome_elt with
107       | Some elt -> aux elt
108       | None   -> self#set_selection None
109
110     method update_font_size = 
111       self#set_font_size !current_font_size
112       
113   end
114
115 let clickableMathView ?hadjustment ?vadjustment ?font_size ?log_verbosity =
116   GtkBase.Widget.size_params
117     ~cont:(OgtkMathViewProps.pack_return (fun p ->
118       OgtkMathViewProps.set_params
119         (new clickableMathView (GtkMathViewProps.MathView_GMetaDOM.create p))
120         ~font_size:None ~log_verbosity:None))
121     []
122
123 class sequentViewer obj =
124   object(self)
125
126     inherit clickableMathView obj
127
128     val mutable current_infos = None
129     
130     method get_selected_terms =
131       let selections = self#get_selections in
132       list_map_fail
133         (fun node ->
134           let xpath =
135             ((node : Gdome.element)#getAttributeNS
136               ~namespaceURI:DomMisc.helm_ns
137               ~localName:(Gdome.domString "xref"))#to_string
138           in
139           if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
140           else
141             match current_infos with
142             | Some (ids_to_terms,_,_) ->
143                 (try Hashtbl.find ids_to_terms xpath with _ -> raise Exit)
144             | None -> assert false) (* "ERROR: No current term!!!" *)
145         selections
146
147     method get_selected_hypotheses =
148       let selections = self#get_selections in
149       list_map_fail
150         (fun node ->
151           let xpath =
152             ((node : Gdome.element)#getAttributeNS
153               ~namespaceURI:DomMisc.helm_ns
154               ~localName:(Gdome.domString "xref"))#to_string
155           in
156           if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
157           else
158             match current_infos with
159             | Some (_,_,ids_to_hypotheses) ->
160                 (try Hashtbl.find ids_to_hypotheses xpath with _ -> raise Exit)
161             | None -> assert false) (* "ERROR: No current term!!!" *)
162         selections
163   
164   method load_sequent metasenv metano =
165     let sequent = CicUtil.lookup_meta metano metasenv in
166     let (mathml,(_,(ids_to_terms, ids_to_father_ids, ids_to_hypotheses,_))) =
167       ApplyTransformation.mml_of_cic_sequent metasenv sequent
168     in
169     current_infos <- Some (ids_to_terms, ids_to_father_ids, ids_to_hypotheses);
170 (*
171     debug_print "load_sequent: dumping MathML to ./prova";
172     ignore (DomMisc.domImpl#saveDocumentToFile ~name:"./prova" ~doc:mathml ());
173 *)
174     self#load_root ~root:mathml#get_documentElement
175  end
176
177 class sequentsViewer ~(notebook:GPack.notebook)
178   ~(sequentViewer:sequentViewer) ()
179 =
180   object (self)
181     inherit scriptAccessor
182
183     val mutable pages = 0
184     val mutable switch_page_callback = None
185     val mutable page2goal = []  (* associative list: page no -> goal no *)
186     val mutable goal2page = []  (* the other way round *)
187     val mutable goal2win = []   (* associative list: goal no -> scrolled win *)
188     val mutable _metasenv = []
189     val mutable scrolledWin: GBin.scrolled_window option = None
190       (* scrolled window to which the sequentViewer is currently attached *)
191
192     method private tab_label metano =
193       (GMisc.label ~text:(sprintf "?%d" metano) ~show:true ())#coerce
194
195     method reset =
196       (match scrolledWin with
197       | Some w ->
198           (* removing page from the notebook will destroy all contained widget,
199           * we do not want the sequentViewer to be destroyed as well *)
200           w#remove sequentViewer#coerce;
201           scrolledWin <- None
202       | None -> ());
203       for i = 1 to pages do notebook#remove_page 0 done;
204       pages <- 0;
205       page2goal <- [];
206       goal2page <- [];
207       goal2win <- [];
208       _metasenv <- [];
209       self#script#setGoal ~-1;
210       (match switch_page_callback with
211       | Some id ->
212           GtkSignal.disconnect notebook#as_widget id;
213           switch_page_callback <- None
214       | None -> ())
215
216     method load_sequents (status: ProofEngineTypes.status) =
217       let ((_, metasenv, _, _), goal) = status in
218       let sequents_no = List.length metasenv in
219       _metasenv <- metasenv;
220       pages <- sequents_no;
221       self#script#setGoal goal;
222       let win metano =
223         let w =
224           GBin.scrolled_window ~hpolicy:`AUTOMATIC ~vpolicy:`AUTOMATIC
225             ~shadow_type:`IN ~show:true ()
226         in
227         let reparent () =
228           scrolledWin <- Some w;
229           match sequentViewer#misc#parent with
230           | None -> w#add sequentViewer#coerce
231           | Some _ -> sequentViewer#misc#reparent w#coerce
232         in
233         goal2win <- (metano, reparent) :: goal2win;
234         w#coerce
235       in
236       let page = ref 0 in
237       List.iter
238         (fun (metano, _, _) ->
239           page2goal <- (!page, metano) :: page2goal;
240           goal2page <- (metano, !page) :: goal2page;
241           incr page;
242           notebook#append_page ~tab_label:(self#tab_label metano) (win metano))
243         metasenv;
244       switch_page_callback <-
245         Some (notebook#connect#switch_page ~callback:(fun page ->
246           let goal =
247             try
248               List.assoc page page2goal
249             with Not_found -> assert false
250           in
251           self#script#setGoal goal;
252           self#render_page ~page ~goal))
253
254     method private render_page ~page ~goal =
255       sequentViewer#load_sequent _metasenv goal;
256       try
257         List.assoc goal goal2win ();
258         sequentViewer#set_selection None
259       with Not_found -> assert false
260
261     method goto_sequent goal =
262       let page =
263         try
264           List.assoc goal goal2page
265         with Not_found -> assert false
266       in
267       notebook#goto_page page;
268       self#render_page page goal
269
270   end
271
272  (** constructors *)
273
274 type 'widget constructor =
275   ?hadjustment:GData.adjustment ->
276   ?vadjustment:GData.adjustment ->
277   ?font_size:int ->
278   ?log_verbosity:int ->
279   ?width:int ->
280   ?height:int ->
281   ?packing:(GObj.widget -> unit) ->
282   ?show:bool ->
283   unit ->
284     'widget
285
286 let sequentViewer ?hadjustment ?vadjustment ?font_size ?log_verbosity =
287   GtkBase.Widget.size_params
288     ~cont:(OgtkMathViewProps.pack_return (fun p ->
289       OgtkMathViewProps.set_params
290         (new sequentViewer (GtkMathViewProps.MathView_GMetaDOM.create p))
291         ~font_size ~log_verbosity))
292     []
293
294 let blank_uri = BuildTimeConf.blank_uri
295 let current_proof_uri = BuildTimeConf.current_proof_uri
296
297 type term_source =
298   [ `Ast of DisambiguateTypes.term
299   | `Cic of Cic.term * Cic.metasenv
300   | `String of string
301   ]
302
303 class type cicBrowser =
304 object
305   method load: MatitaTypes.mathViewer_entry -> unit
306   (* method loadList: string list -> MatitaTypes.mathViewer_entry-> unit *)
307   method loadInput: string -> unit
308 end
309
310 let reloadable = function
311   | `About `Current_proof
312   | `Dir _ ->
313       true
314   | _ -> false
315
316 class cicBrowser_impl ~(history:MatitaTypes.mathViewer_entry MatitaMisc.history)
317   ()
318 =
319   let term_RE = Pcre.regexp "^term:(.*)" in
320   let whelp_RE = Pcre.regexp "^\\s*whelp" in
321   let uri_RE =
322     Pcre.regexp
323       "^cic:/([^/]+/)*[^/]+\\.(con|ind|var)(#xpointer\\(\\d+(/\\d+)+\\))?$"
324   in
325   let dir_RE = Pcre.regexp "^cic:((/([^/]+/)*[^/]+(/)?)|/|)$" in
326   let whelp_query_RE = Pcre.regexp "^\\s*whelp\\s+([^\\s]+)\\s+(.*)$" in
327   let trailing_slash_RE = Pcre.regexp "/$" in
328   let has_xpointer_RE = Pcre.regexp "#xpointer\\(\\d+/\\d+(/\\d+)?\\)$" in
329   let is_whelp txt = Pcre.pmatch ~rex:whelp_RE txt in
330   let is_uri txt = Pcre.pmatch ~rex:uri_RE txt in
331   let is_dir txt = Pcre.pmatch ~rex:dir_RE txt in
332   let gui = MatitaGui.instance () in
333   let win = gui#newBrowserWin () in
334   let queries = ["Locate";"Hint";"Match";"Elim";"Instance"] in
335   let combo,_ = GEdit.combo_box_text ~strings:queries () in
336   let activate_combo_query input q =
337     let q' = String.lowercase q in
338     let rec aux i = function
339       | [] -> failwith ("Whelp query '" ^ q ^ "' not found")
340       | h::_ when String.lowercase h = q' -> i
341       | _::tl -> aux (i+1) tl
342     in
343     combo#set_active (aux 0 queries);
344     win#queryInputText#set_text input
345   in
346   let set_whelp_query txt =
347     let query, arg = 
348       try
349         let q = Pcre.extract ~rex:whelp_query_RE txt in
350         q.(1), q.(2)
351       with Invalid_argument _ -> failwith "Malformed Whelp query"
352     in
353     activate_combo_query arg query
354   in
355   let toplevel = win#toplevel in
356   let mathView = sequentViewer ~packing:win#scrolledBrowser#add () in
357   let fail message = 
358     MatitaGtkMisc.report_error ~title:"Cic browser" ~message 
359       ~parent:toplevel ()  
360   in
361   let tags =
362     [ "dir", GdkPixbuf.from_file (MatitaMisc.image_path "matita-folder.png");
363       "obj", GdkPixbuf.from_file (MatitaMisc.image_path "matita-object.png") ]
364   in
365   let handle_error f =
366     try
367       f ()
368     with exn -> fail (MatitaExcPp.to_string exn)
369   in
370   let handle_error' f = (fun () -> handle_error (fun () -> f ())) in
371   object (self)
372     inherit scriptAccessor
373     
374     (* Whelp bar queries *)
375
376     initializer
377       activate_combo_query "" "locate";
378       win#whelpBarComboVbox#add combo#coerce;
379       let start_query () = 
380         let query = String.lowercase (List.nth queries combo#active) in
381         let input = win#queryInputText#text in
382         let statement = "whelp " ^ query ^ " " ^ input ^ "." in
383         (MatitaScript.instance ())#advance ~statement ()
384       in
385       ignore(win#queryInputText#connect#activate ~callback:start_query);
386       ignore(combo#connect#changed ~callback:start_query);
387       win#whelpBarImage#set_file (MatitaMisc.image_path "whelp.png");
388       win#mathOrListNotebook#set_show_tabs false;
389
390       win#browserForwardButton#misc#set_sensitive false;
391       win#browserBackButton#misc#set_sensitive false;
392       ignore (win#browserUri#entry#connect#activate (handle_error' (fun () ->
393         self#loadInput win#browserUri#entry#text)));
394       ignore (win#browserHomeButton#connect#clicked (handle_error' (fun () ->
395         self#load (`About `Current_proof))));
396       ignore (win#browserRefreshButton#connect#clicked
397         (handle_error' self#refresh));
398       ignore (win#browserBackButton#connect#clicked (handle_error' self#back));
399       ignore (win#browserForwardButton#connect#clicked
400         (handle_error' self#forward));
401       ignore (win#toplevel#event#connect#delete (fun _ ->
402         let my_id = Oo.id self in
403         cicBrowsers := List.filter (fun b -> Oo.id b <> my_id) !cicBrowsers;
404         if !cicBrowsers = [] &&
405           Helm_registry.get "matita.mode" = "cicbrowser"
406         then
407           GMain.quit ();
408         false));
409       ignore(win#whelpResultTreeview#connect#row_activated 
410         ~callback:(fun _ _ ->
411           handle_error (fun () -> self#loadInput (self#_getSelectedUri ()))));
412       mathView#set_href_callback (Some (fun uri ->
413         handle_error (fun () ->
414           self#load (`Uri (UriManager.uri_of_string uri)))));
415       self#_load (`About `Blank);
416       toplevel#show ()
417
418     val mutable current_entry = `About `Blank 
419     val mutable current_infos = None
420     val mutable current_mathml = None
421
422     val model =
423       new MatitaGtkMisc.taggedStringListModel tags win#whelpResultTreeview
424
425     val mutable lastDir = ""  (* last loaded "directory" *)
426
427     method private _getSelectedUri () =
428       match model#easy_selection () with
429       | [sel] when is_uri sel -> sel  (* absolute URI selected *)
430 (*       | [sel] -> win#browserUri#entry#text ^ sel  |+ relative URI selected +| *)
431       | [sel] -> lastDir ^ sel
432       | _ -> assert false
433
434     (** history RATIONALE 
435      *
436      * All operations about history are done using _historyFoo.
437      * Only toplevel functions (ATM load and loadInput) call _historyAdd.
438      *)
439           
440     method private _historyAdd item = 
441       history#add item;
442       win#browserBackButton#misc#set_sensitive true;
443       win#browserForwardButton#misc#set_sensitive false
444
445     method private _historyPrev () =
446       let item = history#previous in
447       if history#is_begin then win#browserBackButton#misc#set_sensitive false;
448       win#browserForwardButton#misc#set_sensitive true;
449       item
450     
451     method private _historyNext () =
452       let item = history#next in
453       if history#is_end then win#browserForwardButton#misc#set_sensitive false;
454       win#browserBackButton#misc#set_sensitive true;
455       item
456
457     (** notebook RATIONALE 
458      * 
459      * Use only these functions to switch between the tabs
460      *)
461     method private _showList = win#mathOrListNotebook#goto_page 1
462     method private _showMath = win#mathOrListNotebook#goto_page 0
463     
464     method private back () =
465       try
466         self#_load (self#_historyPrev ())
467       with MatitaMisc.History_failure -> ()
468
469     method private forward () =
470       try
471         self#_load (self#_historyNext ())
472       with MatitaMisc.History_failure -> ()
473
474       (* loads a uri which can be a cic uri or an about:* uri
475       * @param uri string *)
476     method private _load entry =
477       try
478         if entry <> current_entry || reloadable entry then begin
479           (match entry with
480           | `About `Current_proof -> self#home ()
481           | `About `Blank -> self#blank ()
482           | `About `Us -> () (* TODO implement easter egg here :-] *)
483           | `Check term -> self#_loadCheck term
484           | `Cic (term, metasenv) -> self#_loadTermCic term metasenv
485           | `Dir dir -> self#_loadDir dir
486           | `Uri uri -> self#_loadUriManagerUri uri
487           | `Whelp (query, results) -> 
488               set_whelp_query query;
489               self#_loadList (List.map (fun r -> "obj",
490                 UriManager.string_of_uri r) results));
491           self#setEntry entry
492         end
493       with exn -> fail (MatitaExcPp.to_string exn)
494
495     method private blank () =
496       self#_showMath;
497       mathView#load_root (MatitaMisc.empty_mathml ())#get_documentElement
498
499     method private _loadCheck term =
500       failwith "not implemented _loadCheck";
501       self#_showMath
502
503     method private home () =
504       self#_showMath;
505       match self#script#status.proof_status with
506       | Proof  (uri, metasenv, bo, ty) ->
507           let name = UriManager.name_of_uri (MatitaMisc.unopt uri) in
508           let obj = Cic.CurrentProof (name, metasenv, bo, ty, [], []) in
509           self#_loadObj obj
510       | Incomplete_proof ((uri, metasenv, bo, ty), _) -> 
511           let name = UriManager.name_of_uri (MatitaMisc.unopt uri) in
512           let obj = Cic.CurrentProof (name, metasenv, bo, ty, [], []) in
513           self#_loadObj obj
514       | _ -> self#blank ()
515
516       (** loads a cic uri from the environment
517       * @param uri UriManager.uri *)
518     method private _loadUriManagerUri uri =
519       let uri = UriManager.strip_xpointer uri in
520       let (obj, _) = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
521       self#_loadObj obj
522       
523     method private _loadDir dir = 
524       let content = Http_getter.ls dir in
525       let l =
526         List.map
527           (function 
528             | Http_getter_types.Ls_section s -> "dir", s
529             | Http_getter_types.Ls_object o -> "obj", o.Http_getter_types.uri)
530           content
531       in
532       lastDir <- dir;
533       self#_loadList l
534
535     method private setEntry entry =
536       win#browserUri#entry#set_text (string_of_entry entry);
537       current_entry <- entry
538
539     method private _loadObj obj =
540       self#_showMath; 
541       (* this must be _before_ loading the document, since 
542        * if the widget is not mapped (hidden by the notebook)
543        * the document is not rendered *)
544       let use_diff = false in (* ZACK TODO use XmlDiff when re-rendering? *)
545       let (mathml, (_,(ids_to_terms, ids_to_father_ids, ids_to_conjectures,
546            ids_to_hypotheses,_,_))) =
547         ApplyTransformation.mml_of_cic_object obj
548       in
549       current_infos <- Some (ids_to_terms, ids_to_father_ids,
550         ids_to_conjectures, ids_to_hypotheses);
551       (match current_mathml with
552       | Some current_mathml when use_diff ->
553           mathView#freeze;
554           XmlDiff.update_dom ~from:current_mathml mathml;
555           mathView#thaw
556       |  _ ->
557           mathView#load_root ~root:mathml#get_documentElement;
558           current_mathml <- Some mathml);
559
560     method private _loadTermCic term metasenv =
561       let context = self#script#proofContext in
562       let dummyno = CicMkImplicit.new_meta metasenv [] in
563       let sequent = (dummyno, context, term) in
564       mathView#load_sequent (sequent :: metasenv) dummyno;
565       self#_showMath
566
567     method private _loadList l =
568       model#list_store#clear ();
569       List.iter (fun (tag, s) -> model#easy_append ~tag s) l;
570       self#_showList
571     
572     (** { public methods, all must call _load!! } *)
573       
574     method load entry =
575       handle_error (fun () -> self#_load entry; self#_historyAdd entry)
576
577     (**  this is what the browser does when you enter a string an hit enter *)
578     method loadInput txt =
579       let txt = strip_blanks txt in
580       let fix_uri txt =
581         UriManager.string_of_uri
582           (UriManager.strip_xpointer (UriManager.uri_of_string txt))
583       in
584       if is_whelp txt then begin
585         set_whelp_query txt;  
586         (MatitaScript.instance ())#advance ~statement:(txt ^ ".") ()
587       end else begin
588         let entry =
589           match txt with
590           | txt when is_uri txt -> `Uri (UriManager.uri_of_string (fix_uri txt))
591           | txt when is_dir txt -> `Dir (add_trailing_slash txt)
592           | txt ->
593               (try
594                 entry_of_string txt
595               with Invalid_argument _ ->
596                 command_error (sprintf "unsupported uri: %s" txt))
597         in
598         self#_load entry;
599         self#_historyAdd entry
600       end
601
602       (** {2 methods accessing underlying GtkMathView} *)
603
604     method updateFontSize = mathView#set_font_size !current_font_size
605
606       (** {2 methods used by constructor only} *)
607
608     method win = win
609     method history = history
610     method currentEntry = current_entry
611     method refresh () =
612       if reloadable current_entry then self#_load current_entry
613
614   end
615   
616 let sequentsViewer ~(notebook:GPack.notebook)
617   ~(sequentViewer:sequentViewer) ()
618 =
619   new sequentsViewer ~notebook ~sequentViewer ()
620
621 let cicBrowser () =
622   let size = BuildTimeConf.browser_history_size in
623   let rec aux history =
624     let browser = new cicBrowser_impl ~history () in
625     let win = browser#win in
626     ignore (win#browserNewButton#connect#clicked (fun () ->
627       let history =
628         new MatitaMisc.browser_history ~memento:history#save size
629           (`About `Blank)
630       in
631       let newBrowser = aux history in
632       newBrowser#load browser#currentEntry));
633 (*
634       (* attempt (failed) to close windows on CTRL-W ... *)
635     MatitaGtkMisc.connect_key win#browserWinEventBox#event ~modifiers:[`CONTROL]
636       GdkKeysyms._W (fun () -> win#toplevel#destroy ());
637 *)
638     cicBrowsers := browser :: !cicBrowsers;
639     (browser :> cicBrowser)
640   in
641   let history = new MatitaMisc.browser_history size (`About `Blank) in
642   aux history
643
644 let default_sequentViewer () = sequentViewer ~show:true ()
645 let sequentViewer_instance = MatitaMisc.singleton default_sequentViewer
646
647 let default_sequentsViewer () =
648   let gui = MatitaGui.instance () in
649   let sequentViewer = sequentViewer_instance () in
650   sequentsViewer ~notebook:gui#main#sequentsNotebook ~sequentViewer ()
651 let sequentsViewer_instance = MatitaMisc.singleton default_sequentsViewer
652
653 let mathViewer () = 
654   object(self)
655     method private get_browser reuse = 
656       if reuse then
657         (match !cicBrowsers with
658         | [] -> cicBrowser ()
659         | b :: _ -> (b :> cicBrowser))
660       else
661         (cicBrowser ())
662           
663     method show_entry ?(reuse=false) t = (self#get_browser reuse)#load t
664       
665     method show_uri_list ?(reuse=false) ~entry l =
666       (self#get_browser reuse)#load entry
667   end
668
669 let refresh_all_browsers () = List.iter (fun b -> b#refresh ()) !cicBrowsers
670
671 let update_font_sizes () =
672   List.iter (fun b -> b#updateFontSize) !cicBrowsers;
673   (sequentViewer_instance ())#update_font_size
674