]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/gTopLevel.ml
- fixed logging in log window so that spurious html tags are no longer
[helm.git] / helm / gTopLevel / gTopLevel.ml
1 (* Copyright (C) 2000-2003, 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 (******************************************************************************)
27 (*                                                                            *)
28 (*                               PROJECT HELM                                 *)
29 (*                                                                            *)
30 (*                Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
31 (*                                 06/01/2002                                 *)
32 (*                                                                            *)
33 (*                                                                            *)
34 (******************************************************************************)
35
36 open Printf;;
37
38 (* DEBUGGING *)
39
40 module MQI  = MQueryInterpreter
41 module MQIC = MQIConn
42 module MQGT = MQGTypes
43 module MQGU = MQGUtil
44 module MQG  = MQueryGenerator
45
46 (* GLOBAL CONSTANTS *)
47
48 let mqi_flags = [MQIC.Postgres ; MQIC.Stat ; MQIC.Warn ; MQIC.Log] (* default MathQL interpreter options *)
49 (*
50 let mqi_flags = [] (* default MathQL interpreter options *)
51 *)
52 let mqi_handle = MQIC.init mqi_flags prerr_string
53
54 let xlinkns = Gdome.domString "http://www.w3.org/1999/xlink";;
55
56 let prooffile =
57  try
58   Sys.getenv "GTOPLEVEL_PROOFFILE"
59  with
60   Not_found -> "/public/currentproof"
61 ;;
62
63 let prooffiletype =
64  try
65   Sys.getenv "GTOPLEVEL_PROOFFILETYPE"
66  with
67   Not_found -> "/public/currentprooftype"
68 ;;
69
70 let environmentfile =
71  try
72   Sys.getenv "GTOPLEVEL_ENVIRONMENTFILE"
73  with
74   Not_found -> "/public/environment"
75 ;;
76
77 let restore_environment_on_boot = true ;;
78 let notify_hbugs_on_goal_change = false ;;
79
80 (* GLOBAL REFERENCES (USED BY CALLBACKS) *)
81
82 let check_term = ref (fun _ _ _ -> assert false);;
83
84 exception RenderingWindowsNotInitialized;;
85
86 let set_rendering_window,rendering_window =
87  let rendering_window_ref = ref None in
88   (function rw -> rendering_window_ref := Some rw),
89   (function () ->
90     match !rendering_window_ref with
91        None -> raise RenderingWindowsNotInitialized
92      | Some rw -> rw
93   )
94 ;;
95
96 exception SettingsWindowsNotInitialized;;
97
98 let set_settings_window,settings_window =
99  let settings_window_ref = ref None in
100   (function rw -> settings_window_ref := Some rw),
101   (function () ->
102     match !settings_window_ref with
103        None -> raise SettingsWindowsNotInitialized
104      | Some rw -> rw
105   )
106 ;;
107
108 exception OutputHtmlNotInitialized;;
109
110 let set_outputhtml,outputhtml =
111  let outputhtml_ref = ref None in
112   (function (rw: Ui_logger.html_logger) -> outputhtml_ref := Some rw),
113   (function () ->
114     match !outputhtml_ref with
115      | None -> raise OutputHtmlNotInitialized
116      | Some outputhtml -> (outputhtml: Ui_logger.html_logger)
117   )
118 ;;
119
120 exception QedSetSensitiveNotInitialized;;
121 let qed_set_sensitive =
122  ref (function _ -> raise QedSetSensitiveNotInitialized)
123 ;;
124
125 exception SaveSetSensitiveNotInitialized;;
126 let save_set_sensitive =
127  ref (function _ -> raise SaveSetSensitiveNotInitialized)
128 ;;
129
130 (* COMMAND LINE OPTIONS *)
131
132 let usedb = ref true
133
134 let argspec =
135   [
136     "-nodb", Arg.Clear usedb, "disable use of MathQL DB"
137   ]
138 in
139 Arg.parse argspec ignore ""
140
141 (* MISC FUNCTIONS *)
142
143 let term_of_cic_textual_parser_uri uri =
144  let module C = Cic in
145  let module CTP = CicTextualParser0 in
146   match uri with
147      CTP.ConUri uri -> C.Const (uri,[])
148    | CTP.VarUri uri -> C.Var (uri,[])
149    | CTP.IndTyUri (uri,tyno) -> C.MutInd (uri,tyno,[])
150    | CTP.IndConUri (uri,tyno,consno) -> C.MutConstruct (uri,tyno,consno,[])
151 ;;
152
153 let string_of_cic_textual_parser_uri uri =
154  let module C = Cic in
155  let module CTP = CicTextualParser0 in
156   let uri' =
157    match uri with
158       CTP.ConUri uri -> UriManager.string_of_uri uri
159     | CTP.VarUri uri -> UriManager.string_of_uri uri
160     | CTP.IndTyUri (uri,tyno) ->
161        UriManager.string_of_uri uri ^ "#1/" ^ string_of_int (tyno + 1)
162     | CTP.IndConUri (uri,tyno,consno) ->
163        UriManager.string_of_uri uri ^ "#1/" ^ string_of_int (tyno + 1) ^ "/" ^
164         string_of_int consno
165   in
166    (* 4 = String.length "cic:" *)
167    String.sub uri' 4 (String.length uri' - 4)
168 ;;
169
170 let output_html ?(append_NL = true) (outputhtml: Ui_logger.html_logger) =
171   outputhtml#log ~append_NL
172
173 (* UTILITY FUNCTIONS TO DISAMBIGUATE AN URI *)
174
175 (* Check window *)
176
177 let check_window (outputhtml: Ui_logger.html_logger) uris =
178  let window =
179   GWindow.window
180    ~width:800 ~modal:true ~title:"Check" ~border_width:2 () in
181  let notebook =
182   GPack.notebook ~scrollable:true ~packing:window#add () in
183  window#show () ;
184  let render_terms =
185   List.map
186    (function uri ->
187      let scrolled_window =
188       GBin.scrolled_window ~border_width:10
189        ~packing:
190          (notebook#append_page ~tab_label:((GMisc.label ~text:uri ())#coerce))
191        ()
192      in
193       lazy 
194        (let mmlwidget =
195          TermViewer.sequent_viewer
196           ~packing:scrolled_window#add ~width:400 ~height:280 () in
197         let expr =
198          let term =
199           term_of_cic_textual_parser_uri
200            (MQueryMisc.cic_textual_parser_uri_of_string uri)
201          in
202           (Cic.Cast (term, CicTypeChecker.type_of_aux' [] [] term))
203         in
204          try
205           mmlwidget#load_sequent [] (111,[],expr)
206          with
207           e ->
208            output_html outputhtml (`Error (`T (Printexc.to_string e)))
209        )
210    ) uris
211  in
212   ignore
213    (notebook#connect#switch_page
214      (function i ->
215        Lazy.force (List.nth render_terms i)))
216 ;;
217
218 exception NoChoice;;
219
220 let
221  interactive_user_uri_choice ~(selection_mode:[`MULTIPLE|`SINGLE]) ?(ok="Ok")
222   ?(enable_button_for_non_vars=false) ~title ~msg uris
223 =
224  let choices = ref [] in
225  let chosen = ref false in
226  let use_only_constants = ref false in
227  let window =
228   GWindow.dialog ~modal:true ~title ~width:600 () in
229  let lMessage =
230   GMisc.label ~text:msg
231    ~packing:(window#vbox#pack ~expand:false ~fill:false ~padding:5) () in
232  let scrolled_window =
233   GBin.scrolled_window ~border_width:10
234    ~packing:(window#vbox#pack ~expand:true ~fill:true ~padding:5) () in
235  let clist =
236   let expected_height = 18 * List.length uris in
237    let height = if expected_height > 400 then 400 else expected_height in
238     GList.clist ~columns:1 ~packing:scrolled_window#add
239      ~height ~selection_mode:(selection_mode :> Gtk.Tags.selection_mode) () in
240  let _ = List.map (function x -> clist#append [x]) uris in
241  let hbox2 =
242   GPack.hbox ~border_width:0
243    ~packing:(window#vbox#pack ~expand:false ~fill:false ~padding:5) () in
244  let explain_label =
245   GMisc.label ~text:"None of the above. Try this one:"
246    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
247  let manual_input =
248   GEdit.entry ~editable:true
249    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
250  let hbox =
251   GPack.hbox ~border_width:0 ~packing:window#action_area#add () in
252  let okb =
253   GButton.button ~label:ok
254    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
255  let _ = okb#misc#set_sensitive false in
256  let nonvarsb =
257   GButton.button
258    ~packing:
259     (function w ->
260       if enable_button_for_non_vars then
261        hbox#pack ~expand:false ~fill:false ~padding:5 w)
262    ~label:"Try constants only" () in
263  let checkb =
264   GButton.button ~label:"Check"
265    ~packing:(hbox#pack ~padding:5) () in
266  let _ = checkb#misc#set_sensitive false in
267  let cancelb =
268   GButton.button ~label:"Abort"
269    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
270  (* actions *)
271  let check_callback () =
272   assert (List.length !choices > 0) ;
273   check_window (outputhtml ()) !choices
274  in
275   ignore (window#connect#destroy GMain.Main.quit) ;
276   ignore (cancelb#connect#clicked window#destroy) ;
277   ignore
278    (okb#connect#clicked (function () -> chosen := true ; window#destroy ())) ;
279   ignore
280    (nonvarsb#connect#clicked
281      (function () ->
282        use_only_constants := true ;
283        chosen := true ;
284        window#destroy ()
285    )) ;
286   ignore (checkb#connect#clicked check_callback) ;
287   ignore
288    (clist#connect#select_row
289      (fun ~row ~column ~event ->
290        checkb#misc#set_sensitive true ;
291        okb#misc#set_sensitive true ;
292        choices := (List.nth uris row)::!choices)) ;
293   ignore
294    (clist#connect#unselect_row
295      (fun ~row ~column ~event ->
296        choices :=
297         List.filter (function uri -> uri != (List.nth uris row)) !choices)) ;
298   ignore
299    (manual_input#connect#changed
300      (fun _ ->
301        if manual_input#text = "" then
302         begin
303          choices := [] ;
304          checkb#misc#set_sensitive false ;
305          okb#misc#set_sensitive false ;
306          clist#misc#set_sensitive true
307         end
308        else
309         begin
310          choices := [manual_input#text] ;
311          clist#unselect_all () ;
312          checkb#misc#set_sensitive true ;
313          okb#misc#set_sensitive true ;
314          clist#misc#set_sensitive false
315         end));
316   window#set_position `CENTER ;
317   window#show () ;
318   GtkThread.main ();
319   if !chosen then
320    if !use_only_constants then
321     List.filter
322      (function uri -> not (String.sub uri (String.length uri - 4) 4 = ".var"))
323      uris
324    else
325     if List.length !choices > 0 then !choices else raise NoChoice
326   else
327    raise NoChoice
328 ;;
329
330 let interactive_interpretation_choice interpretations =
331  let chosen = ref None in
332  let window =
333   GWindow.window
334    ~modal:true ~title:"Ambiguous well-typed input." ~border_width:2 () in
335  let vbox = GPack.vbox ~packing:window#add () in
336  let lMessage =
337   GMisc.label
338    ~text:
339     ("Ambiguous input since there are many well-typed interpretations." ^
340      " Please, choose one of them.")
341    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
342  let notebook =
343   GPack.notebook ~scrollable:true
344    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
345  let _ =
346   List.map
347    (function interpretation ->
348      let clist =
349       let expected_height = 18 * List.length interpretation in
350        let height = if expected_height > 400 then 400 else expected_height in
351         GList.clist ~columns:2 ~packing:notebook#append_page ~height
352          ~titles:["id" ; "URI"] ()
353      in
354       ignore
355        (List.map
356          (function (id,uri) ->
357            let n = clist#append [id;uri] in
358             clist#set_row ~selectable:false n
359          ) interpretation
360        ) ;
361       clist#columns_autosize ()
362    ) interpretations in
363  let hbox =
364   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
365  let okb =
366   GButton.button ~label:"Ok"
367    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
368  let cancelb =
369   GButton.button ~label:"Abort"
370    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
371  (* actions *)
372  ignore (window#connect#destroy GMain.Main.quit) ;
373  ignore (cancelb#connect#clicked window#destroy) ;
374  ignore
375   (okb#connect#clicked
376     (function () -> chosen := Some notebook#current_page ; window#destroy ())) ;
377  window#set_position `CENTER ;
378  window#show () ;
379  GtkThread.main ();
380  match !chosen with
381     None -> raise NoChoice
382   | Some n -> n
383 ;;
384
385
386 (* MISC FUNCTIONS *)
387
388 let
389  save_object_to_disk uri annobj ids_to_inner_sorts ids_to_inner_types pathname
390 =
391  let name =
392   let struri = UriManager.string_of_uri uri in
393   let idx = (String.rindex struri '/') + 1 in
394    String.sub struri idx (String.length struri - idx)
395  in
396   let path = pathname ^ "/" ^ name in
397   let xml, bodyxml =
398    Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:false
399     annobj 
400   in
401   let xmlinnertypes =
402    Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
403     ~ask_dtd_to_the_getter:false
404   in
405    (* innertypes *)
406    let innertypesuri = UriManager.innertypesuri_of_uri uri in
407     Xml.pp ~quiet:true xmlinnertypes (Some (path ^ ".types.xml")) ;
408     Getter.register innertypesuri
409      (Configuration.annotations_url ^
410        Str.replace_first (Str.regexp "^cic:") ""
411         (UriManager.string_of_uri innertypesuri) ^ ".xml"
412      ) ;
413     (* constant type / variable / mutual inductive types definition *)
414     Xml.pp ~quiet:true xml (Some (path ^ ".xml")) ;
415     Getter.register uri
416      (Configuration.annotations_url ^
417        Str.replace_first (Str.regexp "^cic:") ""
418         (UriManager.string_of_uri uri) ^ ".xml"
419      ) ;
420     match bodyxml with
421        None -> ()
422      | Some bodyxml' ->
423         (* constant body *)
424         let bodyuri =
425          match UriManager.bodyuri_of_uri uri with
426             None -> assert false
427           | Some bodyuri -> bodyuri
428         in
429          Xml.pp ~quiet:true bodyxml' (Some (path ^ ".body.xml")) ;
430          Getter.register bodyuri
431           (Configuration.annotations_url ^
432             Str.replace_first (Str.regexp "^cic:") ""
433              (UriManager.string_of_uri bodyuri) ^ ".xml"
434           )
435 ;;
436
437
438 (* CALLBACKS *)
439
440 exception OpenConjecturesStillThere;;
441 exception WrongProof;;
442
443 let pathname_of_annuri uristring =
444  Configuration.annotations_dir ^    
445   Str.replace_first (Str.regexp "^cic:") "" uristring
446 ;;
447
448 let make_dirs dirpath =
449  ignore (Unix.system ("mkdir -p " ^ dirpath))
450 ;;
451
452 let save_obj uri obj =
453  let
454   (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
455    ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
456  =
457   Cic2acic.acic_object_of_cic_object obj
458  in
459   (* let's save the theorem and register it to the getter *) 
460   let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
461    make_dirs pathname ;
462    save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
463     pathname
464 ;;
465
466 let qed () =
467  match ProofEngine.get_proof () with
468     None -> assert false
469   | Some (uri,[],bo,ty) ->
470      if
471       CicReduction.are_convertible []
472        (CicTypeChecker.type_of_aux' [] [] bo) ty
473      then
474       begin
475        (*CSC: Wrong: [] is just plainly wrong *)
476        let proof = Cic.Constant (UriManager.name_of_uri uri,Some bo,ty,[]) in
477        let (acic,ids_to_inner_types,ids_to_inner_sorts) =
478         (rendering_window ())#output#load_proof uri proof
479        in
480         !qed_set_sensitive false ;
481         (* let's save the theorem and register it to the getter *) 
482         let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
483          make_dirs pathname ;
484          save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
485           pathname
486       end
487      else
488       raise WrongProof
489   | _ -> raise OpenConjecturesStillThere
490 ;;
491
492   (** save an unfinished proof on the filesystem *)
493 let save_unfinished_proof () =
494  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
495  let (xml, bodyxml) = ProofEngine.get_current_status_as_xml () in
496  Xml.pp ~quiet:true xml (Some prooffiletype) ;
497  output_html outputhtml
498   (`Msg (`T ("Current proof type saved to " ^ prooffiletype))) ;
499  Xml.pp ~quiet:true bodyxml (Some prooffile) ;
500  output_html outputhtml
501   (`Msg (`T ("Current proof body saved to " ^ prooffile)))
502 ;;
503
504 (* Used to typecheck the loaded proofs *)
505 let typecheck_loaded_proof metasenv bo ty =
506  let module T = CicTypeChecker in
507   ignore (
508    List.fold_left
509     (fun metasenv ((_,context,ty) as conj) ->
510       ignore (T.type_of_aux' metasenv context ty) ;
511       metasenv @ [conj]
512     ) [] metasenv) ;
513   ignore (T.type_of_aux' metasenv [] ty) ;
514   ignore (T.type_of_aux' metasenv [] bo)
515 ;;
516
517 let decompose_uris_choice_callback uris = 
518 (* N.B.: in questo passaggio perdo l'informazione su exp_named_subst !!!! *)
519   let module U = UriManager in 
520    List.map 
521     (function uri ->
522       match MQueryMisc.cic_textual_parser_uri_of_string uri with
523          CicTextualParser0.IndTyUri (uri,typeno) -> (uri,typeno,[])
524        | _ -> assert false)
525     (interactive_user_uri_choice 
526       ~selection_mode:`MULTIPLE ~ok:"Ok" ~enable_button_for_non_vars:false 
527       ~title:"Decompose" ~msg:"Please, select the Inductive Types to decompose" 
528       (List.map 
529         (function (uri,typeno,_) ->
530           U.string_of_uri uri ^ "#1/" ^ string_of_int (typeno+1)
531         ) uris)
532     ) 
533 ;;
534
535 let mk_fresh_name_callback context name ~typ =
536  let fresh_name =
537   match ProofEngineHelpers.mk_fresh_name context name ~typ with
538      Cic.Name fresh_name -> fresh_name
539    | Cic.Anonymous -> assert false
540  in
541   match
542    GToolbox.input_string ~title:"Enter a fresh hypothesis name" ~text:fresh_name
543     ("Enter a fresh name for the hypothesis " ^
544       CicPp.pp typ
545        (List.map (function None -> None | Some (n,_) -> Some n) context))
546   with
547      Some fresh_name' -> Cic.Name fresh_name'
548    | None -> raise NoChoice
549 ;;
550
551 let refresh_proof (output : TermViewer.proof_viewer) =
552  try
553   let uri,currentproof =
554    match ProofEngine.get_proof () with
555       None -> assert false
556     | Some (uri,metasenv,bo,ty) ->
557        ProofEngine.set_proof (Some (uri,metasenv,bo,ty)) ;
558        if List.length metasenv = 0 then
559         begin
560          !qed_set_sensitive true ;
561          Hbugs.clear ()
562         end
563        else
564         Hbugs.notify () ;
565        (*CSC: Wrong: [] is just plainly wrong *)
566        uri,
567         (Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty, []))
568   in
569    ignore (output#load_proof uri currentproof)
570  with
571   e ->
572  match ProofEngine.get_proof () with
573     None -> assert false
574   | Some (uri,metasenv,bo,ty) ->
575 prerr_endline ("Offending proof: " ^ CicPp.ppobj (Cic.CurrentProof ("questa",metasenv,bo,ty,[]))) ; flush stderr ;
576    raise (InvokeTactics.RefreshProofException e)
577
578 let set_proof_engine_goal g =
579  ProofEngine.goal := g
580 ;;
581
582 let refresh_goals ?(empty_notebook=true) notebook =
583  try
584   match !ProofEngine.goal with
585      None ->
586       if empty_notebook then
587        begin 
588         notebook#remove_all_pages ~skip_switch_page_event:false ;
589         notebook#set_empty_page
590        end
591       else
592        notebook#proofw#unload
593    | Some metano ->
594       let metasenv =
595        match ProofEngine.get_proof () with
596           None -> assert false
597         | Some (_,metasenv,_,_) -> metasenv
598       in
599       let currentsequent =
600        List.find (function (m,_,_) -> m=metano) metasenv
601       in
602         let regenerate_notebook () = 
603          let skip_switch_page_event =
604           match metasenv with
605              (m,_,_)::_ when m = metano -> false
606            | _ -> true
607          in
608           notebook#remove_all_pages ~skip_switch_page_event ;
609           List.iter (function (m,_,_) -> notebook#add_page m) metasenv ;
610         in
611          if empty_notebook then
612           begin
613            regenerate_notebook () ;
614            notebook#set_current_page
615             ~may_skip_switch_page_event:false metano
616           end
617          else
618           begin
619            notebook#set_current_page
620             ~may_skip_switch_page_event:true metano ;
621            notebook#proofw#load_sequent metasenv currentsequent
622           end
623  with
624   e ->
625 let metano =
626   match !ProofEngine.goal with
627      None -> assert false
628    | Some m -> m
629 in
630 let metasenv =
631  match ProofEngine.get_proof () with
632     None -> assert false
633   | Some (_,metasenv,_,_) -> metasenv
634 in
635 try
636 let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
637    prerr_endline ("Offending sequent: " ^ SequentPp.TextualPp.print_sequent currentsequent) ; flush stderr ;
638       raise (InvokeTactics.RefreshSequentException e)
639 with Not_found -> prerr_endline ("Offending sequent " ^ string_of_int metano ^ " unknown."); raise (InvokeTactics.RefreshSequentException e)
640
641 module InvokeTacticsCallbacks =
642  struct
643   let sequent_viewer () = (rendering_window ())#notebook#proofw
644   let term_editor () = (rendering_window ())#inputt
645   let scratch_window () = (rendering_window ())#scratch_window
646
647   let refresh_proof () =
648    let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
649     refresh_proof output
650
651   let refresh_goals () =
652    let notebook = (rendering_window ())#notebook in
653     refresh_goals notebook
654
655   let decompose_uris_choice_callback = decompose_uris_choice_callback
656   let mk_fresh_name_callback = mk_fresh_name_callback
657   let output_html msg = output_html (outputhtml ()) msg
658  end
659 ;;
660 module InvokeTactics' = InvokeTactics.Make (InvokeTacticsCallbacks);;
661 (*
662 (* Just to initialize the Hbugs module *)
663 module Ignore = Hbugs.Initialize (InvokeTactics');;
664 Hbugs.set_describe_hint_callback (fun hint ->
665   match hint with
666   | Hbugs_types.Use_apply_Luke term ->
667       let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
668       check_window outputhtml [term]
669   | _ -> ())
670 ;;
671 *)
672 let dummy_uri = "/dummy.con"
673
674   (** load an unfinished proof from filesystem *)
675 let load_unfinished_proof () =
676  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
677  let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
678  let notebook = (rendering_window ())#notebook in
679   try
680    match 
681     GToolbox.input_string ~title:"Load Unfinished Proof" ~text:dummy_uri
682      "Choose an URI:"
683    with
684       None -> raise NoChoice
685     | Some uri0 ->
686        let uri = UriManager.uri_of_string ("cic:" ^ uri0) in
687         match CicParser.obj_of_xml prooffiletype (Some prooffile) with
688            Cic.CurrentProof (_,metasenv,bo,ty,_) ->
689             typecheck_loaded_proof metasenv bo ty ;
690             ProofEngine.set_proof (Some (uri, metasenv, bo, ty)) ;
691             refresh_proof output ;
692             set_proof_engine_goal
693              (match metasenv with
694                  [] -> None
695                | (metano,_,_)::_ -> Some metano
696              ) ;
697             refresh_goals notebook ;
698              output_html outputhtml
699               (`Msg (`T ("Current proof type loaded from " ^
700                 prooffiletype))) ;
701              output_html outputhtml
702               (`Msg (`T ("Current proof body loaded from " ^
703                 prooffile))) ;
704             !save_set_sensitive true;
705          | _ -> assert false
706   with
707      InvokeTactics.RefreshSequentException e ->
708       output_html outputhtml
709        (`Error (`T ("Exception raised during the refresh of the " ^
710         "sequent: " ^ Printexc.to_string e)))
711    | InvokeTactics.RefreshProofException e ->
712       output_html outputhtml
713        (`Error (`T ("Exception raised during the refresh of the " ^
714         "proof: " ^ Printexc.to_string e)))
715    | e ->
716       output_html outputhtml
717        (`Error (`T (Printexc.to_string e)))
718 ;;
719
720 let edit_aliases () =
721  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
722  let id_to_uris = inputt#id_to_uris in
723  let chosen = ref false in
724  let window =
725   GWindow.window
726    ~width:400 ~modal:true ~title:"Edit Aliases..." ~border_width:2 () in
727  let vbox =
728   GPack.vbox ~border_width:0 ~packing:window#add () in
729  let scrolled_window =
730   GBin.scrolled_window ~border_width:10
731    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
732  let input = GText.view ~editable:true ~width:400 ~height:100
733    ~packing:scrolled_window#add () in
734  let hbox =
735   GPack.hbox ~border_width:0
736    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
737  let okb =
738   GButton.button ~label:"Ok"
739    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
740  let cancelb =
741   GButton.button ~label:"Cancel"
742    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
743  ignore (window#connect#destroy GMain.Main.quit) ;
744  ignore (cancelb#connect#clicked window#destroy) ;
745  ignore
746   (okb#connect#clicked (function () -> chosen := true ; window#destroy ())) ;
747  let dom,resolve_id = !id_to_uris in
748   ignore
749    (input#buffer#insert ~iter:(input#buffer#get_iter_at_char 0)
750     (String.concat "\n"
751       (List.map
752         (function v ->
753           let uri =
754            match resolve_id v with
755               None -> assert false
756             | Some (CicTextualParser0.Uri uri) -> uri
757             | Some (CicTextualParser0.Term _)
758             | Some CicTextualParser0.Implicit -> assert false
759           in
760            "alias " ^
761             (match v with
762                 CicTextualParser0.Id id -> id
763               | CicTextualParser0.Symbol (descr,_) ->
764                  (* CSC: To be implemented *)
765                  assert false
766             )^ " " ^ (string_of_cic_textual_parser_uri uri)
767         ) dom))) ;
768   window#show () ;
769   GtkThread.main ();
770   if !chosen then
771    let dom,resolve_id =
772     let inputtext = input#buffer#get_text () in
773     let regexpr =
774      let alfa = "[a-zA-Z_-]" in
775      let digit = "[0-9]" in
776      let ident = alfa ^ "\(" ^ alfa ^ "\|" ^ digit ^ "\)*" in
777      let blanks = "\( \|\t\|\n\)+" in
778      let nonblanks = "[^ \t\n]+" in
779      let uri = "/\(" ^ ident ^ "/\)*" ^ nonblanks in (* not very strict check *)
780       Str.regexp
781        ("alias" ^ blanks ^ "\(" ^ ident ^ "\)" ^ blanks ^ "\(" ^ uri ^ "\)")
782     in
783      let rec aux n =
784       try
785        let n' = Str.search_forward regexpr inputtext n in
786         let id = CicTextualParser0.Id (Str.matched_group 2 inputtext) in
787         let uri =
788          MQueryMisc.cic_textual_parser_uri_of_string
789           ("cic:" ^ (Str.matched_group 5 inputtext))
790         in
791          let dom,resolve_id = aux (n' + 1) in
792           if List.mem id dom then
793            dom,resolve_id
794           else
795            id::dom,
796             (function id' ->
797               if id = id' then
798                Some (CicTextualParser0.Uri uri)
799               else resolve_id id')
800       with
801        Not_found -> TermEditor.empty_id_to_uris
802      in
803       aux 0
804    in
805     id_to_uris := (dom,resolve_id)
806 ;;
807
808 let proveit () =
809  let module L = LogicalOperations in
810  let module G = Gdome in
811  let notebook = (rendering_window ())#notebook in
812  let output = (rendering_window ())#output in
813  let outputhtml = ((rendering_window ())#outputhtml (*: GHtml.xmhtml*)) in
814   try
815    output#make_sequent_of_selected_term ;
816    refresh_proof output ;
817    refresh_goals notebook
818   with
819      InvokeTactics.RefreshSequentException e ->
820       output_html outputhtml
821        (`Error (`T ("Exception raised during the refresh of the " ^
822         "sequent: " ^ Printexc.to_string e)))
823    | InvokeTactics.RefreshProofException e ->
824       output_html outputhtml
825        (`Error (`T ("Exception raised during the refresh of the " ^
826         "proof: " ^ Printexc.to_string e)))
827    | e ->
828       output_html outputhtml
829        (`Error (`T (Printexc.to_string e)))
830 ;;
831
832 let focus () =
833  let module L = LogicalOperations in
834  let module G = Gdome in
835  let notebook = (rendering_window ())#notebook in
836  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
837  let output = (rendering_window ())#output in
838   try
839    output#focus_sequent_of_selected_term ;
840    refresh_goals notebook
841   with
842      InvokeTactics.RefreshSequentException e ->
843       output_html outputhtml
844        (`Error (`T ("Exception raised during the refresh of the " ^
845         "sequent: " ^ Printexc.to_string e)))
846    | InvokeTactics.RefreshProofException e ->
847       output_html outputhtml
848        (`Error (`T ("Exception raised during the refresh of the " ^
849         "proof: " ^ Printexc.to_string e)))
850    | e ->
851       output_html outputhtml
852        (`Error (`T (Printexc.to_string e)))
853 ;;
854
855 exception NoPrevGoal;;
856 exception NoNextGoal;;
857
858 let setgoal metano =
859  let module L = LogicalOperations in
860  let module G = Gdome in
861  let notebook = (rendering_window ())#notebook in
862  let output = (rendering_window ())#output in
863  let outputhtml = (rendering_window ())#outputhtml in
864   let metasenv =
865    match ProofEngine.get_proof () with
866       None -> assert false
867     | Some (_,metasenv,_,_) -> metasenv
868   in
869    try
870     refresh_goals ~empty_notebook:false notebook
871    with
872       InvokeTactics.RefreshSequentException e ->
873        output_html outputhtml
874         (`Error (`T ("Exception raised during the refresh of the " ^
875          "sequent: " ^ Printexc.to_string e)))
876     | e ->
877        output_html outputhtml
878         (`Error (`T (Printexc.to_string e)))
879 ;;
880
881 let
882  show_in_show_window_obj, show_in_show_window_uri, show_in_show_window_callback
883 =
884  let window =
885   GWindow.window ~width:800 ~border_width:2 () in
886  let scrolled_window =
887   GBin.scrolled_window ~border_width:10 ~packing:window#add () in
888  let mmlwidget =
889   GMathViewAux.single_selection_math_view
890     ~packing:scrolled_window#add ~width:600 ~height:400 ()
891  in
892  let _ = window#event#connect#delete (fun _ -> window#misc#hide () ; true ) in
893  let href = Gdome.domString "href" in
894   let show_in_show_window_obj uri obj =
895    let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
896     try
897      let
898       (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
899        ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
900      =
901       Cic2acic.acic_object_of_cic_object obj
902      in
903       let mml =
904        ApplyStylesheets.mml_of_cic_object
905         ~explode_all:false uri acic ids_to_inner_sorts ids_to_inner_types
906       in
907        window#set_title (UriManager.string_of_uri uri) ;
908        window#misc#hide () ; window#show () ;
909        mmlwidget#load_doc mml ;
910     with
911      e ->
912       output_html outputhtml
913        (`Error (`T (Printexc.to_string e)))
914   in
915   let show_in_show_window_uri uri =
916    let obj = CicEnvironment.get_obj uri in
917     show_in_show_window_obj uri obj
918   in
919    let show_in_show_window_callback mmlwidget (n : Gdome.element option) _ =
920     match n with
921        None -> ()
922      | Some n' ->
923         if n'#hasAttributeNS ~namespaceURI:xlinkns ~localName:href then
924          let uri =
925           (n'#getAttributeNS ~namespaceURI:xlinkns ~localName:href)#to_string
926          in 
927           show_in_show_window_uri (UriManager.uri_of_string uri)
928         else
929          ignore (mmlwidget#action_toggle n')
930    in
931     let _ =
932      mmlwidget#connect#click (show_in_show_window_callback mmlwidget)
933     in
934      show_in_show_window_obj, show_in_show_window_uri,
935       show_in_show_window_callback
936 ;;
937
938 exception NoObjectsLocated;;
939
940 let user_uri_choice ~title ~msg uris =
941  let uri =
942   match uris with
943      [] -> raise NoObjectsLocated
944    | [uri] -> uri
945    | uris ->
946       match
947        interactive_user_uri_choice ~selection_mode:`SINGLE ~title ~msg uris
948       with
949          [uri] -> uri
950        | _ -> assert false
951  in
952   String.sub uri 4 (String.length uri - 4)
953 ;;
954
955 let locate_callback id =
956  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
957  let out = output_html outputhtml in
958  let query = MQG.locate id in
959  let result = MQI.execute mqi_handle query in
960  let uris =
961   List.map
962    (function uri,_ ->
963      MQueryMisc.wrong_xpointer_format_from_wrong_xpointer_format' uri)
964    result in
965   out (`Msg (`T "Locate Query:")) ;
966   MQueryUtil.text_of_query (fun m -> out (`Msg (`T m))) "" query; 
967   out (`Msg (`T "Result:")) ;
968   MQueryUtil.text_of_result (fun m -> out (`Msg (`T m))) "" result;
969   user_uri_choice ~title:"Ambiguous input."
970    ~msg:
971      ("Ambiguous input \"" ^ id ^
972       "\". Please, choose one interpetation:")
973    uris
974 ;;
975
976
977 let input_or_locate_uri ~title =
978  let uri = ref None in
979  let window =
980   GWindow.window
981    ~width:400 ~modal:true ~title ~border_width:2 () in
982  let vbox = GPack.vbox ~packing:window#add () in
983  let hbox1 =
984   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
985  let _ =
986   GMisc.label ~text:"Enter a valid URI:" ~packing:(hbox1#pack ~padding:5) () in
987  let manual_input =
988   GEdit.entry ~editable:true
989    ~packing:(hbox1#pack ~expand:true ~fill:true ~padding:5) () in
990  let checkb =
991   GButton.button ~label:"Check"
992    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
993  let _ = checkb#misc#set_sensitive false in
994  let hbox2 =
995   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
996  let _ =
997   GMisc.label ~text:"You can also enter an indentifier to locate:"
998    ~packing:(hbox2#pack ~padding:5) () in
999  let locate_input =
1000   GEdit.entry ~editable:true
1001    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
1002  let locateb =
1003   GButton.button ~label:"Locate"
1004    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1005  let _ = locateb#misc#set_sensitive false in
1006  let hbox3 =
1007   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1008  let okb =
1009   GButton.button ~label:"Ok"
1010    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1011  let _ = okb#misc#set_sensitive false in
1012  let cancelb =
1013   GButton.button ~label:"Cancel"
1014    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) ()
1015  in
1016   ignore (window#connect#destroy GMain.Main.quit) ;
1017   ignore
1018    (cancelb#connect#clicked (function () -> uri := None ; window#destroy ())) ;
1019   let check_callback () =
1020    let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1021    let uri = "cic:" ^ manual_input#text in
1022     try
1023       ignore (Getter.resolve (UriManager.uri_of_string uri)) ;
1024       output_html outputhtml (`Msg (`T "OK")) ;
1025       true
1026     with
1027        Getter.Unresolved ->
1028         output_html outputhtml
1029          (`Error (`T ("URI " ^ uri ^
1030           " does not correspond to any object."))) ;
1031         false
1032      | UriManager.IllFormedUri _ ->
1033         output_html outputhtml
1034          (`Error (`T ("URI " ^ uri ^ " is not well-formed."))) ;
1035         false
1036      | e ->
1037         output_html outputhtml
1038          (`Error (`T (Printexc.to_string e))) ;
1039         false
1040   in
1041   ignore
1042    (okb#connect#clicked
1043      (function () ->
1044        if check_callback () then
1045         begin
1046          uri := Some manual_input#text ;
1047          window#destroy ()
1048         end
1049    )) ;
1050   ignore (checkb#connect#clicked (function () -> ignore (check_callback ()))) ;
1051   ignore
1052    (manual_input#connect#changed
1053      (fun _ ->
1054        if manual_input#text = "" then
1055         begin
1056          checkb#misc#set_sensitive false ;
1057          okb#misc#set_sensitive false
1058         end
1059        else
1060         begin
1061          checkb#misc#set_sensitive true ;
1062          okb#misc#set_sensitive true
1063         end));
1064   ignore
1065    (locate_input#connect#changed
1066      (fun _ -> locateb#misc#set_sensitive (locate_input#text <> ""))) ;
1067   ignore
1068    (locateb#connect#clicked
1069      (function () ->
1070        let id = locate_input#text in
1071         manual_input#set_text (locate_callback id) ;
1072         locate_input#delete_text 0 (String.length id)
1073    )) ;
1074   window#show () ;
1075   GtkThread.main ();
1076   match !uri with
1077      None -> raise NoChoice
1078    | Some uri -> UriManager.uri_of_string ("cic:" ^ uri)
1079 ;;
1080
1081 exception AmbiguousInput;;
1082
1083 (* A WIDGET TO ENTER CIC TERMS *)
1084
1085 module ChosenTermEditor  = TexTermEditor;;
1086 module ChosenTextualParser0 = TexCicTextualParser0;;
1087 (*
1088 module ChosenTermEditor = TermEditor;;
1089 module ChosenTextualParser0 = CicTextualParser0;;
1090 *)
1091
1092 module Callbacks =
1093  struct
1094   let get_metasenv () = !ChosenTextualParser0.metasenv
1095   let set_metasenv metasenv = ChosenTextualParser0.metasenv := metasenv
1096
1097   let output_html ?append_NL = output_html ?append_NL (outputhtml ())
1098   let interactive_user_uri_choice =
1099    fun ~selection_mode ?ok ?enable_button_for_non_vars ~title ~msg ~id ->
1100     interactive_user_uri_choice ~selection_mode ?ok
1101      ?enable_button_for_non_vars ~title ~msg
1102   let interactive_interpretation_choice = interactive_interpretation_choice
1103   let input_or_locate_uri = input_or_locate_uri
1104  end
1105 ;;
1106
1107 module TexTermEditor' = ChosenTermEditor.Make(Callbacks);;
1108
1109 (* OTHER FUNCTIONS *)
1110
1111 let locate () =
1112  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
1113  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1114    try
1115     match
1116      GToolbox.input_string ~title:"Locate" "Enter an identifier to locate:"
1117     with
1118        None -> raise NoChoice
1119      | Some input ->
1120         let uri = locate_callback input in
1121          inputt#set_term uri
1122    with
1123     e ->
1124      output_html outputhtml
1125       (`Error (`T (Printexc.to_string e)))
1126 ;;
1127
1128
1129 exception UriAlreadyInUse;;
1130 exception NotAUriToAConstant;;
1131
1132 let new_inductive () =
1133  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
1134  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1135  let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
1136  let notebook = (rendering_window ())#notebook in
1137
1138  let chosen = ref false in
1139  let inductive = ref true in
1140  let paramsno = ref 0 in
1141  let get_uri = ref (function _ -> assert false) in
1142  let get_base_uri = ref (function _ -> assert false) in
1143  let get_names = ref (function _ -> assert false) in
1144  let get_types_and_cons = ref (function _ -> assert false) in
1145  let get_context_and_subst = ref (function _ -> assert false) in 
1146  let window =
1147   GWindow.window
1148    ~width:600 ~modal:true ~position:`CENTER
1149    ~title:"New Block of Mutual (Co)Inductive Definitions"
1150    ~border_width:2 () in
1151  let vbox = GPack.vbox ~packing:window#add () in
1152  let hbox =
1153   GPack.hbox ~border_width:0
1154    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1155  let _ =
1156   GMisc.label ~text:"Enter the URI for the new block:"
1157    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1158  let uri_entry =
1159   GEdit.entry ~editable:true
1160    ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1161  let hbox0 =
1162   GPack.hbox ~border_width:0
1163    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1164  let _ =
1165   GMisc.label
1166    ~text:
1167      "Enter the number of left parameters in every arity and constructor type:"
1168    ~packing:(hbox0#pack ~expand:false ~fill:false ~padding:5) () in
1169  let paramsno_entry =
1170   GEdit.entry ~editable:true ~text:"0"
1171    ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
1172  let hbox1 =
1173   GPack.hbox ~border_width:0
1174    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1175  let _ =
1176   GMisc.label ~text:"Are the definitions inductive or coinductive?"
1177    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1178  let inductiveb =
1179   GButton.radio_button ~label:"Inductive"
1180    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1181  let coinductiveb =
1182   GButton.radio_button ~label:"Coinductive"
1183    ~group:inductiveb#group
1184    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1185  let hbox2 =
1186   GPack.hbox ~border_width:0
1187    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1188  let _ =
1189   GMisc.label ~text:"Enter the list of the names of the types:"
1190    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1191  let names_entry =
1192   GEdit.entry ~editable:true
1193    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
1194  let hboxn =
1195   GPack.hbox ~border_width:0
1196    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1197  let okb =
1198   GButton.button ~label:"> Next"
1199    ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1200  let _ = okb#misc#set_sensitive true in
1201  let cancelb =
1202   GButton.button ~label:"Abort"
1203    ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1204  ignore (window#connect#destroy GMain.Main.quit) ;
1205  ignore (cancelb#connect#clicked window#destroy) ;
1206  (* First phase *)
1207  let rec phase1 () =
1208   ignore
1209    (okb#connect#clicked
1210      (function () ->
1211        try
1212         let uristr = "cic:" ^ uri_entry#text in
1213         let namesstr = names_entry#text in
1214         let paramsno' = int_of_string (paramsno_entry#text) in
1215          match Str.split (Str.regexp " +") namesstr with
1216             [] -> assert false
1217           | (he::tl) as names ->
1218              let uri = UriManager.uri_of_string (uristr ^ "/" ^ he ^ ".ind") in
1219               begin
1220                try
1221                 ignore (Getter.resolve uri) ;
1222                 raise UriAlreadyInUse
1223                with
1224                 Getter.Unresolved ->
1225                  get_uri := (function () -> uri) ; 
1226                  get_names := (function () -> names) ;
1227                  inductive := inductiveb#active ;
1228                  paramsno := paramsno' ;
1229                  phase2 ()
1230               end
1231        with
1232         e ->
1233          output_html outputhtml
1234           (`Error (`T (Printexc.to_string e)))
1235      ))
1236  (* Second phase *)
1237  and phase2 () =
1238   let type_widgets =
1239    List.map
1240     (function name ->
1241       let frame =
1242        GBin.frame ~label:name
1243         ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
1244       let vbox = GPack.vbox ~packing:frame#add () in
1245       let hbox = GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false) () in
1246       let _ =
1247        GMisc.label ~text:("Enter its type:")
1248         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1249       let scrolled_window =
1250        GBin.scrolled_window ~border_width:5
1251         ~packing:(vbox#pack ~expand:true ~padding:0) () in
1252       let newinputt =
1253        TexTermEditor'.term_editor
1254         mqi_handle
1255         ~width:400 ~height:20 ~packing:scrolled_window#add 
1256         ~share_id_to_uris_with:inputt ()
1257         ~isnotempty_callback:
1258          (function b ->
1259            (*non_empty_type := b ;*)
1260            okb#misc#set_sensitive true) (*(b && uri_entry#text <> ""))*)
1261       in
1262       let hbox =
1263        GPack.hbox ~border_width:0
1264         ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1265       let _ =
1266        GMisc.label ~text:("Enter the list of its constructors:")
1267         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1268       let cons_names_entry =
1269        GEdit.entry ~editable:true
1270         ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1271       (newinputt,cons_names_entry)
1272     ) (!get_names ())
1273   in
1274    vbox#remove hboxn#coerce ;
1275    let hboxn =
1276     GPack.hbox ~border_width:0
1277      ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1278    let okb =
1279     GButton.button ~label:"> Next"
1280      ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1281    let cancelb =
1282     GButton.button ~label:"Abort"
1283      ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1284    ignore (cancelb#connect#clicked window#destroy) ;
1285    ignore
1286     (okb#connect#clicked
1287       (function () ->
1288         try
1289          let names = !get_names () in
1290          let types_and_cons =
1291           List.map2
1292            (fun name (newinputt,cons_names_entry) ->
1293              let consnamesstr = cons_names_entry#text in
1294              let cons_names = Str.split (Str.regexp " +") consnamesstr in
1295              let metasenv,expr =
1296               newinputt#get_metasenv_and_term ~context:[] ~metasenv:[]
1297              in
1298               match metasenv with
1299                  [] -> expr,cons_names
1300                | _ -> raise AmbiguousInput
1301            ) names type_widgets
1302          in
1303           let uri = !get_uri () in
1304           let _ =
1305            (* Let's see if so far the definition is well-typed *)
1306            let params = [] in
1307            let paramsno = 0 in
1308            (* To test if the arities of the inductive types are well *)
1309            (* typed, we check the inductive block definition where   *)
1310            (* no constructor is given to each type.                  *)
1311            let tys =
1312             List.map2
1313              (fun name (ty,cons) -> (name, !inductive, ty, []))
1314              names types_and_cons
1315            in
1316             CicTypeChecker.typecheck_mutual_inductive_defs uri
1317              (tys,params,paramsno)
1318           in
1319            get_context_and_subst :=
1320             (function () ->
1321               let i = ref 0 in
1322                List.fold_left2
1323                 (fun (context,subst) name (ty,_) ->
1324                   let res =
1325                    (Some (Cic.Name name, Cic.Decl ty))::context,
1326                     (Cic.MutInd (uri,!i,[]))::subst
1327                   in
1328                    incr i ; res
1329                 ) ([],[]) names types_and_cons) ;
1330            let types_and_cons' =
1331             List.map2
1332              (fun name (ty,cons) -> (name, !inductive, ty, phase3 name cons))
1333              names types_and_cons
1334            in
1335             get_types_and_cons := (function () -> types_and_cons') ;
1336             chosen := true ;
1337             window#destroy ()
1338         with
1339          e ->
1340           output_html outputhtml
1341            (`Error (`T (Printexc.to_string e)))
1342       ))
1343  (* Third phase *)
1344  and phase3 name cons =
1345   let get_cons_types = ref (function () -> assert false) in
1346   let window2 =
1347    GWindow.window
1348     ~width:600 ~modal:true ~position:`CENTER
1349     ~title:(name ^ " Constructors")
1350     ~border_width:2 () in
1351   let vbox = GPack.vbox ~packing:window2#add () in
1352   let cons_type_widgets =
1353    List.map
1354     (function consname ->
1355       let hbox =
1356        GPack.hbox ~border_width:0
1357         ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1358       let _ =
1359        GMisc.label ~text:("Enter the type of " ^ consname ^ ":")
1360         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1361       let scrolled_window =
1362        GBin.scrolled_window ~border_width:5
1363         ~packing:(vbox#pack ~expand:true ~padding:0) () in
1364       let newinputt =
1365        TexTermEditor'.term_editor
1366         mqi_handle
1367         ~width:400 ~height:20 ~packing:scrolled_window#add
1368         ~share_id_to_uris_with:inputt ()
1369         ~isnotempty_callback:
1370          (function b ->
1371            (* (*non_empty_type := b ;*)
1372            okb#misc#set_sensitive true) (*(b && uri_entry#text <> ""))*) *)())
1373       in
1374        newinputt
1375     ) cons in
1376   let hboxn =
1377    GPack.hbox ~border_width:0
1378     ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1379   let okb =
1380    GButton.button ~label:"> Next"
1381     ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1382   let _ = okb#misc#set_sensitive true in
1383   let cancelb =
1384    GButton.button ~label:"Abort"
1385     ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1386   ignore (window2#connect#destroy GMain.Main.quit) ;
1387   ignore (cancelb#connect#clicked window2#destroy) ;
1388   ignore
1389    (okb#connect#clicked
1390      (function () ->
1391        try
1392         chosen := true ;
1393         let context,subst= !get_context_and_subst () in
1394         let cons_types =
1395          List.map2
1396           (fun name inputt ->
1397             let metasenv,expr =
1398              inputt#get_metasenv_and_term ~context ~metasenv:[]
1399             in
1400              match metasenv with
1401                 [] ->
1402                  let undebrujined_expr =
1403                   List.fold_left
1404                    (fun expr t -> CicSubstitution.subst t expr) expr subst
1405                  in
1406                   name, undebrujined_expr
1407               | _ -> raise AmbiguousInput
1408           ) cons cons_type_widgets
1409         in
1410          get_cons_types := (function () -> cons_types) ;
1411          window2#destroy ()
1412        with
1413         e ->
1414          output_html outputhtml
1415           (`Error (`T (Printexc.to_string e)))
1416      )) ;
1417   window2#show () ;
1418   GtkThread.main ();
1419   let okb_pressed = !chosen in
1420    chosen := false ;
1421    if (not okb_pressed) then
1422     begin
1423      window#destroy () ;
1424      assert false (* The control never reaches this point *)
1425     end
1426    else
1427     (!get_cons_types ())
1428  in
1429   phase1 () ;
1430   (* No more phases left or Abort pressed *) 
1431   window#show () ;
1432   GtkThread.main ();
1433   window#destroy () ;
1434   if !chosen then
1435    try
1436     let uri = !get_uri () in
1437 (*CSC: Da finire *)
1438     let params = [] in
1439     let tys = !get_types_and_cons () in
1440      let obj = Cic.InductiveDefinition(tys,params,!paramsno) in
1441       begin
1442        try
1443         prerr_endline (CicPp.ppobj obj) ;
1444         CicTypeChecker.typecheck_mutual_inductive_defs uri
1445          (tys,params,!paramsno) ;
1446         with
1447          e ->
1448           prerr_endline "Offending mutual (co)inductive type declaration:" ;
1449           prerr_endline (CicPp.ppobj obj) ;
1450       end ;
1451       (* We already know that obj is well-typed. We need to add it to the  *)
1452       (* environment in order to compute the inner-types without having to *)
1453       (* debrujin it or having to modify lots of other functions to avoid  *)
1454       (* asking the environment for the MUTINDs we are defining now.       *)
1455       CicEnvironment.put_inductive_definition uri obj ;
1456       save_obj uri obj ;
1457       show_in_show_window_obj uri obj
1458    with
1459     e ->
1460      output_html outputhtml
1461       (`Error (`T (Printexc.to_string e)))
1462 ;;
1463
1464 let new_proof () =
1465  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
1466  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1467  let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
1468  let notebook = (rendering_window ())#notebook in
1469
1470  let chosen = ref false in
1471  let get_metasenv_and_term = ref (function _ -> assert false) in
1472  let get_uri = ref (function _ -> assert false) in
1473  let non_empty_type = ref false in
1474  let window =
1475   GWindow.window
1476    ~width:600 ~modal:true ~title:"New Proof or Definition"
1477    ~border_width:2 () in
1478  let vbox = GPack.vbox ~packing:window#add () in
1479  let hbox =
1480   GPack.hbox ~border_width:0
1481    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1482  let _ =
1483   GMisc.label ~text:"Enter the URI for the new theorem or definition:"
1484    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1485  let uri_entry =
1486   GEdit.entry ~editable:true
1487    ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1488  uri_entry#set_text dummy_uri;
1489  uri_entry#select_region ~start:1 ~stop:(String.length dummy_uri);
1490  let hbox1 =
1491   GPack.hbox ~border_width:0
1492    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1493  let _ =
1494   GMisc.label ~text:"Enter the theorem or definition type:"
1495    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1496  let scrolled_window =
1497   GBin.scrolled_window ~border_width:5
1498    ~packing:(vbox#pack ~expand:true ~padding:0) () in
1499  (* the content of the scrolled_window is moved below (see comment) *)
1500  let hbox =
1501   GPack.hbox ~border_width:0
1502    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1503  let okb =
1504   GButton.button ~label:"Ok"
1505    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1506  let _ = okb#misc#set_sensitive false in
1507  let cancelb =
1508   GButton.button ~label:"Cancel"
1509    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1510  (* moved here to have visibility of the ok button *)
1511  let newinputt =
1512   TexTermEditor'.term_editor
1513    mqi_handle
1514    ~width:400 ~height:100 ~packing:scrolled_window#add
1515    ~share_id_to_uris_with:inputt ()
1516    ~isnotempty_callback:
1517     (function b ->
1518       non_empty_type := b ;
1519       okb#misc#set_sensitive (b && uri_entry#text <> ""))
1520  in
1521  let _ =
1522 let xxx = inputt#get_as_string in
1523 prerr_endline ("######################## " ^ xxx) ;
1524   newinputt#set_term xxx ;
1525 (*
1526   newinputt#set_term inputt#get_as_string ;
1527 *)
1528   inputt#reset in
1529  let _ =
1530   uri_entry#connect#changed
1531    (function () ->
1532      okb#misc#set_sensitive (!non_empty_type && uri_entry#text <> ""))
1533  in
1534  ignore (window#connect#destroy GMain.Main.quit) ;
1535  ignore (cancelb#connect#clicked window#destroy) ;
1536  ignore
1537   (okb#connect#clicked
1538     (function () ->
1539       chosen := true ;
1540       try
1541        let metasenv,parsed = newinputt#get_metasenv_and_term [] [] in
1542        let uristr = "cic:" ^ uri_entry#text in
1543        let uri = UriManager.uri_of_string uristr in
1544         if String.sub uristr (String.length uristr - 4) 4 <> ".con" then
1545          raise NotAUriToAConstant
1546         else
1547          begin
1548           try
1549            ignore (Getter.resolve uri) ;
1550            raise UriAlreadyInUse
1551           with
1552            Getter.Unresolved ->
1553             get_metasenv_and_term := (function () -> metasenv,parsed) ;
1554             get_uri := (function () -> uri) ; 
1555             window#destroy ()
1556          end
1557       with
1558        e ->
1559         output_html outputhtml
1560          (`Error (`T (Printexc.to_string e)))
1561   )) ;
1562  window#show () ;
1563  GtkThread.main ();
1564  if !chosen then
1565   try
1566    let metasenv,expr = !get_metasenv_and_term () in
1567     let _  = CicTypeChecker.type_of_aux' metasenv [] expr in
1568      ProofEngine.set_proof
1569       (Some (!get_uri (), (1,[],expr)::metasenv, Cic.Meta (1,[]), expr)) ;
1570      set_proof_engine_goal (Some 1) ;
1571      refresh_goals notebook ;
1572      refresh_proof output ;
1573      !save_set_sensitive true ;
1574      inputt#reset ;
1575      ProofEngine.intros ~mk_fresh_name_callback () ;
1576      refresh_goals notebook ;
1577      refresh_proof output
1578   with
1579      InvokeTactics.RefreshSequentException e ->
1580       output_html outputhtml
1581        (`Error (`T ("Exception raised during the refresh of the " ^
1582         "sequent: " ^ Printexc.to_string e)))
1583    | InvokeTactics.RefreshProofException e ->
1584       output_html outputhtml
1585        (`Error (`T ("Exception raised during the refresh of the " ^
1586         "proof: " ^ Printexc.to_string e)))
1587    | e ->
1588       output_html outputhtml
1589        (`Error (`T (Printexc.to_string e)))
1590 ;;
1591
1592 let check_term_in_scratch scratch_window metasenv context expr = 
1593  try
1594   let ty = CicTypeChecker.type_of_aux' metasenv context expr in
1595   let expr = Cic.Cast (expr,ty) in
1596    scratch_window#show () ;
1597    scratch_window#set_term expr ;
1598    scratch_window#set_context context ;
1599    scratch_window#set_metasenv metasenv ;
1600    scratch_window#sequent_viewer#load_sequent metasenv (111,context,expr)
1601  with
1602   e ->
1603    print_endline ("? " ^ CicPp.ppterm expr) ;
1604    raise e
1605 ;;
1606
1607 let check scratch_window () =
1608  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
1609  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1610   let metasenv =
1611    match ProofEngine.get_proof () with
1612       None -> []
1613     | Some (_,metasenv,_,_) -> metasenv
1614   in
1615   let context =
1616    match !ProofEngine.goal with
1617       None -> []
1618     | Some metano ->
1619        let (_,canonical_context,_) =
1620         List.find (function (m,_,_) -> m=metano) metasenv
1621        in
1622         canonical_context
1623   in
1624    try
1625     let metasenv',expr = inputt#get_metasenv_and_term context metasenv in
1626      check_term_in_scratch scratch_window metasenv' context expr
1627    with
1628     e ->
1629      output_html outputhtml
1630       (`Error (`T (Printexc.to_string e)))
1631 ;;
1632
1633 let show () =
1634  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1635   try
1636    show_in_show_window_uri (input_or_locate_uri ~title:"Show")
1637   with
1638    e ->
1639     output_html outputhtml
1640      (`Error (`T (Printexc.to_string e)))
1641 ;;
1642
1643 exception NotADefinition;;
1644
1645 let open_ () =
1646  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1647  let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
1648  let notebook = (rendering_window ())#notebook in
1649    try
1650     let uri = input_or_locate_uri ~title:"Open" in
1651      CicTypeChecker.typecheck uri ;
1652      let metasenv,bo,ty =
1653       match CicEnvironment.get_cooked_obj uri with
1654          Cic.Constant (_,Some bo,ty,_) -> [],bo,ty
1655        | Cic.CurrentProof (_,metasenv,bo,ty,_) -> metasenv,bo,ty
1656        | Cic.Constant _
1657        | Cic.Variable _
1658        | Cic.InductiveDefinition _ -> raise NotADefinition
1659      in
1660       ProofEngine.set_proof (Some (uri, metasenv, bo, ty)) ;
1661       set_proof_engine_goal None ;
1662       refresh_goals notebook ;
1663       refresh_proof output ;
1664       !save_set_sensitive true
1665    with
1666       InvokeTactics.RefreshSequentException e ->
1667        output_html outputhtml
1668         (`Error (`T ("Exception raised during the refresh of the " ^
1669          "sequent: " ^ Printexc.to_string e)))
1670     | InvokeTactics.RefreshProofException e ->
1671        output_html outputhtml
1672         (`Error (`T ("Exception raised during the refresh of the " ^
1673          "proof: " ^ Printexc.to_string e)))
1674     | e ->
1675        output_html outputhtml
1676         (`Error (`T (Printexc.to_string e)))
1677 ;;
1678
1679 let show_query_results results =
1680  let window =
1681   GWindow.window
1682    ~modal:false ~title:"Query results." ~border_width:2 () in
1683  let vbox = GPack.vbox ~packing:window#add () in
1684  let hbox =
1685   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1686  let lMessage =
1687   GMisc.label
1688    ~text:"Click on a URI to show that object"
1689    ~packing:hbox#add () in
1690  let scrolled_window =
1691   GBin.scrolled_window ~border_width:10 ~height:400 ~width:600
1692    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
1693  let clist = GList.clist ~columns:1 ~packing:scrolled_window#add () in
1694   ignore
1695    (List.map
1696      (function (uri,_) ->
1697        let n =
1698         clist#append [uri]
1699        in
1700         clist#set_row ~selectable:false n
1701      ) results
1702    ) ;
1703   clist#columns_autosize () ;
1704   ignore
1705    (clist#connect#select_row
1706      (fun ~row ~column ~event ->
1707        let (uristr,_) = List.nth results row in
1708         match
1709          MQueryMisc.cic_textual_parser_uri_of_string
1710           (MQueryMisc.wrong_xpointer_format_from_wrong_xpointer_format'
1711             uristr)
1712         with
1713            CicTextualParser0.ConUri uri
1714          | CicTextualParser0.VarUri uri
1715          | CicTextualParser0.IndTyUri (uri,_)
1716          | CicTextualParser0.IndConUri (uri,_,_) ->
1717             show_in_show_window_uri uri
1718      )
1719    ) ;
1720   window#show ()
1721 ;;
1722
1723 let refine_constraints (must_obj,must_rel,must_sort) =
1724  let chosen = ref false in
1725  let use_only = ref false in
1726  let window =
1727   GWindow.window
1728    ~modal:true ~title:"Constraints refinement."
1729    ~width:800 ~border_width:2 () in
1730  let vbox = GPack.vbox ~packing:window#add () in
1731  let hbox =
1732   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1733  let lMessage =
1734   GMisc.label
1735    ~text: "\"Only\" constraints can be enforced or not."
1736    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1737  let onlyb =
1738   GButton.toggle_button ~label:"Enforce \"only\" constraints"
1739    ~active:false ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
1740  in
1741   ignore
1742    (onlyb#connect#toggled (function () -> use_only := onlyb#active)) ;
1743  (* Notebook for the constraints choice *)
1744  let notebook =
1745   GPack.notebook ~scrollable:true
1746    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
1747  (* Rel constraints *)
1748  let label =
1749   GMisc.label
1750    ~text: "Constraints on Rels" () in
1751  let vbox' =
1752   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
1753    () in
1754  let hbox =
1755   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
1756  let lMessage =
1757   GMisc.label
1758    ~text: "You can now specify the constraints on Rels."
1759    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1760  let expected_height = 25 * (List.length must_rel + 2) in
1761  let height = if expected_height > 400 then 400 else expected_height in
1762  let scrolled_window =
1763   GBin.scrolled_window ~border_width:10 ~height ~width:600
1764    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
1765  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
1766  let mk_depth_button (hbox:GPack.box) d =
1767     let mutable_ref = ref (Some d) in
1768     let depthb =
1769      GButton.toggle_button
1770       ~label:("depth = " ^ string_of_int d) 
1771       ~active:true
1772       ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
1773     in
1774      ignore
1775       (depthb#connect#toggled
1776        (function () ->
1777         let sel_depth = if depthb#active then Some d else None in
1778          mutable_ref := sel_depth
1779        )) ; mutable_ref
1780  in
1781  let rel_constraints =
1782   List.map
1783    (function p ->
1784      let hbox =
1785       GPack.hbox
1786        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
1787      let lMessage =
1788       GMisc.label
1789        ~text:(MQGU.text_of_position (p:>MQGT.full_position))
1790        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1791      match p with
1792       | `MainHypothesis None 
1793       | `MainConclusion None -> p, ref None
1794       | `MainHypothesis (Some depth') 
1795       | `MainConclusion (Some depth') -> p, mk_depth_button hbox depth'
1796    ) must_rel in
1797  (* Sort constraints *)
1798  let label =
1799   GMisc.label
1800    ~text: "Constraints on Sorts" () in
1801  let vbox' =
1802   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
1803    () in
1804  let hbox =
1805   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
1806  let lMessage =
1807   GMisc.label
1808    ~text: "You can now specify the constraints on Sorts."
1809    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1810  let expected_height = 25 * (List.length must_sort + 2) in
1811  let height = if expected_height > 400 then 400 else expected_height in
1812  let scrolled_window =
1813   GBin.scrolled_window ~border_width:10 ~height ~width:600
1814    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
1815  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
1816  let sort_constraints =
1817   List.map
1818    (function (p, sort) ->
1819      let hbox =
1820       GPack.hbox
1821        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
1822      let lMessage =
1823       GMisc.label
1824        ~text:(MQGU.text_of_sort sort ^ " " ^ MQGU.text_of_position (p:>MQGT.full_position))
1825        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1826      match p with
1827       | `MainHypothesis None 
1828       | `MainConclusion None -> p, ref None, sort
1829       | `MainHypothesis (Some depth') 
1830       | `MainConclusion (Some depth') -> p, mk_depth_button hbox depth', sort
1831    ) must_sort in
1832  (* Obj constraints *)
1833  let label =
1834   GMisc.label
1835    ~text: "Constraints on constants" () in
1836  let vbox' =
1837   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
1838    () in
1839  let hbox =
1840   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
1841  let lMessage =
1842   GMisc.label
1843    ~text: "You can now specify the constraints on constants."
1844    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1845  let expected_height = 25 * (List.length must_obj + 2) in
1846  let height = if expected_height > 400 then 400 else expected_height in
1847  let scrolled_window =
1848   GBin.scrolled_window ~border_width:10 ~height ~width:600
1849    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
1850  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
1851  let obj_constraints =
1852   List.map
1853    (function (p, uri) ->
1854      let hbox =
1855       GPack.hbox
1856        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
1857      let lMessage =
1858       GMisc.label
1859        ~text:(uri ^ " " ^ (MQGU.text_of_position p))
1860        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1861      match p with
1862       | `InBody
1863       | `InHypothesis 
1864       | `InConclusion 
1865       | `MainHypothesis None 
1866       | `MainConclusion None -> p, ref None, uri
1867       | `MainHypothesis (Some depth') 
1868       | `MainConclusion (Some depth') -> p, mk_depth_button hbox depth', uri
1869    ) must_obj in
1870  (* Confirm/abort buttons *)
1871  let hbox =
1872   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1873  let okb =
1874   GButton.button ~label:"Ok"
1875    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1876  let cancelb =
1877   GButton.button ~label:"Abort"
1878    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
1879  in
1880   ignore (window#connect#destroy GMain.Main.quit) ;
1881   ignore (cancelb#connect#clicked window#destroy) ;
1882   ignore
1883    (okb#connect#clicked (function () -> chosen := true ; window#destroy ()));
1884   window#set_position `CENTER ;
1885   window#show () ;
1886   GtkThread.main ();
1887   if !chosen then
1888    let chosen_must_rel =
1889     List.map
1890      (function (position, ref_depth) -> MQGU.set_main_position position !ref_depth)
1891      rel_constraints
1892    in
1893    let chosen_must_sort =
1894     List.map
1895      (function (position, ref_depth, sort) -> 
1896       MQGU.set_main_position position !ref_depth,sort)
1897      sort_constraints
1898    in
1899    let chosen_must_obj =
1900     List.map
1901      (function (position, ref_depth, uri) -> MQGU.set_full_position position !ref_depth, uri)
1902      obj_constraints
1903    in
1904     (chosen_must_obj,chosen_must_rel,chosen_must_sort),
1905      (if !use_only then
1906 (*CSC: ???????????????????????? I assume that must and only are the same... *)
1907        Some chosen_must_obj,Some chosen_must_rel,Some chosen_must_sort
1908       else
1909        None,None,None
1910      )
1911   else
1912    raise NoChoice
1913 ;;
1914
1915 let completeSearchPattern () =
1916  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
1917  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1918   try
1919    let metasenv,expr = inputt#get_metasenv_and_term ~context:[] ~metasenv:[] in
1920    let must = CGSearchPattern.get_constraints expr in
1921    let must',only = refine_constraints must in
1922    let query =
1923     MQG.query_of_constraints (Some CGSearchPattern.universe) must' only
1924    in
1925    let results = MQI.execute mqi_handle query in 
1926     show_query_results results
1927   with
1928    e ->
1929     output_html outputhtml
1930      (`Error (`T (Printexc.to_string e)))
1931 ;;
1932
1933 let insertQuery () =
1934  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
1935   try
1936    let chosen = ref None in
1937    let window =
1938     GWindow.window
1939      ~modal:true ~title:"Insert Query (Experts Only)" ~border_width:2 () in
1940    let vbox = GPack.vbox ~packing:window#add () in
1941    let label =
1942     GMisc.label ~text:"Insert Query. For Experts Only."
1943      ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1944    let scrolled_window =
1945     GBin.scrolled_window ~border_width:10 ~height:400 ~width:600
1946      ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
1947    let input = GText.view ~editable:true
1948     ~packing:scrolled_window#add () in
1949    let hbox =
1950     GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1951    let okb =
1952     GButton.button ~label:"Ok"
1953      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1954    let loadb =
1955     GButton.button ~label:"Load from file..."
1956      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1957    let cancelb =
1958     GButton.button ~label:"Abort"
1959      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1960    ignore (window#connect#destroy GMain.Main.quit) ;
1961    ignore (cancelb#connect#clicked window#destroy) ;
1962    ignore
1963     (okb#connect#clicked
1964       (function () ->
1965         chosen := Some (input#buffer#get_text ()) ; window#destroy ())) ;
1966    ignore
1967     (loadb#connect#clicked
1968       (function () ->
1969         match
1970          GToolbox.select_file ~title:"Select Query File" ()
1971         with
1972            None -> ()
1973          | Some filename ->
1974             let inch = open_in filename in
1975              let rec read_file () =
1976               try
1977                let line = input_line inch in
1978                 line ^ "\n" ^ read_file ()
1979               with
1980                End_of_file -> ""
1981              in
1982               let text = read_file () in
1983                input#buffer#delete input#buffer#start_iter input#buffer#end_iter ;
1984                ignore (input#buffer#insert text))) ;
1985    window#set_position `CENTER ;
1986    window#show () ;
1987    GtkThread.main ();
1988    match !chosen with
1989       None -> ()
1990     | Some q ->
1991        let results =
1992         MQI.execute mqi_handle (MQueryUtil.query_of_text (Lexing.from_string q))
1993        in
1994         show_query_results results
1995   with
1996    e ->
1997     output_html outputhtml
1998      (`Error (`T (Printexc.to_string e)))
1999 ;;
2000
2001 let choose_must list_of_must only =
2002  let chosen = ref None in
2003  let user_constraints = ref [] in
2004  let window =
2005   GWindow.window
2006    ~modal:true ~title:"Query refinement." ~border_width:2 () in
2007  let vbox = GPack.vbox ~packing:window#add () in
2008  let hbox =
2009   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2010  let lMessage =
2011   GMisc.label
2012    ~text:
2013     ("You can now specify the genericity of the query. " ^
2014      "The more generic the slower.")
2015    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2016  let hbox =
2017   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2018  let lMessage =
2019   GMisc.label
2020    ~text:
2021     "Suggestion: start with faster queries before moving to more generic ones."
2022    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2023  let notebook =
2024   GPack.notebook ~scrollable:true
2025    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2026  let _ =
2027   let page = ref 0 in
2028   let last = List.length list_of_must in
2029   List.map
2030    (function must ->
2031      incr page ;
2032      let label =
2033       GMisc.label ~text:
2034        (if !page = 1 then "More generic" else
2035          if !page = last then "More precise" else "          ") () in
2036      let expected_height = 25 * (List.length must + 2) in
2037      let height = if expected_height > 400 then 400 else expected_height in
2038      let scrolled_window =
2039       GBin.scrolled_window ~border_width:10 ~height ~width:600
2040        ~packing:(notebook#append_page ~tab_label:label#coerce) () in
2041      let clist =
2042         GList.clist ~columns:2 ~packing:scrolled_window#add
2043          ~titles:["URI" ; "Position"] ()
2044      in
2045       ignore
2046        (List.map
2047          (function (position, uri) ->
2048            let n =
2049             clist#append 
2050              [uri; MQGUtil.text_of_position position]
2051            in
2052             clist#set_row ~selectable:false n
2053          ) must
2054        ) ;
2055       clist#columns_autosize ()
2056    ) list_of_must in
2057  let _ =
2058   let label = GMisc.label ~text:"User provided" () in
2059   let vbox =
2060    GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce) () in
2061   let hbox =
2062    GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2063   let lMessage =
2064    GMisc.label
2065    ~text:"Select the constraints that must be satisfied and press OK."
2066    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2067   let expected_height = 25 * (List.length only + 2) in
2068   let height = if expected_height > 400 then 400 else expected_height in
2069   let scrolled_window =
2070    GBin.scrolled_window ~border_width:10 ~height ~width:600
2071     ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2072   let clist =
2073    GList.clist ~columns:2 ~packing:scrolled_window#add
2074     ~selection_mode:`MULTIPLE
2075     ~titles:["URI" ; "Position"] ()
2076   in
2077    ignore
2078     (List.map
2079       (function (position, uri) ->
2080         let n =
2081          clist#append 
2082           [uri; MQGUtil.text_of_position position]
2083         in
2084          clist#set_row ~selectable:true n
2085       ) only
2086     ) ;
2087    clist#columns_autosize () ;
2088    ignore
2089     (clist#connect#select_row
2090       (fun ~row ~column ~event ->
2091         user_constraints := (List.nth only row)::!user_constraints)) ;
2092    ignore
2093     (clist#connect#unselect_row
2094       (fun ~row ~column ~event ->
2095         user_constraints :=
2096          List.filter
2097           (function uri -> uri != (List.nth only row)) !user_constraints)) ;
2098  in
2099  let hbox =
2100   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2101  let okb =
2102   GButton.button ~label:"Ok"
2103    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2104  let cancelb =
2105   GButton.button ~label:"Abort"
2106    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2107  (* actions *)
2108  ignore (window#connect#destroy GMain.Main.quit) ;
2109  ignore (cancelb#connect#clicked window#destroy) ;
2110  ignore
2111   (okb#connect#clicked
2112     (function () -> chosen := Some notebook#current_page ; window#destroy ())) ;
2113  window#set_position `CENTER ;
2114  window#show () ;
2115  GtkThread.main ();
2116  match !chosen with
2117     None -> raise NoChoice
2118   | Some n ->
2119      if n = List.length list_of_must then
2120       (* user provided constraints *)
2121       !user_constraints
2122      else
2123       List.nth list_of_must n
2124 ;;
2125
2126 let searchPattern () =
2127  let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
2128  let outputhtml = ((rendering_window ())#outputhtml(* : GHtml.xmhtml*)) in
2129   try
2130     let proof =
2131      match ProofEngine.get_proof () with
2132         None -> assert false
2133       | Some proof -> proof
2134     in
2135      match !ProofEngine.goal with
2136       | None -> ()
2137       | Some metano ->
2138          let uris' =
2139            TacticChaser.matchConclusion
2140             mqi_handle
2141             ~output_html:(fun m -> output_html outputhtml (`Msg (`T m)))
2142             ~choose_must () ~status:(proof, metano)
2143          in
2144          let uri' =
2145           user_uri_choice ~title:"Ambiguous input."
2146           ~msg: "Many lemmas can be successfully applied. Please, choose one:"
2147            uris'
2148          in
2149           inputt#set_term uri' ;
2150           InvokeTactics'.apply ()
2151   with
2152    e -> 
2153     output_html outputhtml 
2154      (`Error (`T (Printexc.to_string e)))
2155 ;;
2156       
2157 let choose_selection mmlwidget (element : Gdome.element option) =
2158  let module G = Gdome in
2159  prerr_endline "Il bandolo" ;
2160   let rec aux element =
2161    if element#hasAttributeNS
2162        ~namespaceURI:Misc.helmns
2163        ~localName:(G.domString "xref")
2164    then
2165      mmlwidget#set_selection (Some element)
2166    else
2167     try
2168       match element#get_parentNode with
2169          None -> assert false
2170        (*CSC: OCAML DIVERGES!
2171        | Some p -> aux (new G.element_of_node p)
2172        *)
2173        | Some p -> aux (new Gdome.element_of_node p)
2174     with
2175        GdomeInit.DOMCastException _ ->
2176         prerr_endline
2177          "******* trying to select above the document root ********"
2178   in
2179    match element with
2180      Some x -> aux x
2181    | None   -> mmlwidget#set_selection None
2182 ;;
2183
2184 (* STUFF TO BUILD THE GTK INTERFACE *)
2185
2186 (* Stuff for the widget settings *)
2187
2188 (*
2189 let export_to_postscript output =
2190  let lastdir = ref (Unix.getcwd ()) in
2191   function () ->
2192    match
2193     GToolbox.select_file ~title:"Export to PostScript"
2194      ~dir:lastdir ~filename:"screenshot.ps" ()
2195    with
2196       None -> ()
2197     | Some filename ->
2198        (output :> GMathView.math_view)#export_to_postscript
2199          ~filename:filename ();
2200 ;;
2201 *)
2202
2203 (*
2204 let activate_t1 output button_set_anti_aliasing
2205  button_set_transparency export_to_postscript_menu_item
2206  button_t1 ()
2207 =
2208  let is_set = button_t1#active in
2209   output#set_font_manager_type
2210    ~fm_type:(if is_set then `font_manager_t1 else `font_manager_gtk) ;
2211   if is_set then
2212    begin
2213     button_set_anti_aliasing#misc#set_sensitive true ;
2214     button_set_transparency#misc#set_sensitive true ;
2215     export_to_postscript_menu_item#misc#set_sensitive true ;
2216    end
2217   else
2218    begin
2219     button_set_anti_aliasing#misc#set_sensitive false ;
2220     button_set_transparency#misc#set_sensitive false ;
2221     export_to_postscript_menu_item#misc#set_sensitive false ;
2222    end
2223 ;;
2224
2225 let set_anti_aliasing output button_set_anti_aliasing () =
2226  output#set_anti_aliasing button_set_anti_aliasing#active
2227 ;;
2228
2229 let set_transparency output button_set_transparency () =
2230  output#set_transparency button_set_transparency#active
2231 ;;
2232 *)
2233
2234 let changefont output font_size_spinb () =
2235  output#set_font_size font_size_spinb#value_as_int
2236 ;;
2237
2238 let set_log_verbosity output log_verbosity_spinb () =
2239  output#set_log_verbosity log_verbosity_spinb#value_as_int
2240 ;;
2241
2242 class settings_window output sw
2243  export_to_postscript_menu_item selection_changed_callback
2244 =
2245  let settings_window = GWindow.window ~title:"GtkMathView settings" () in
2246  let vbox =
2247   GPack.vbox ~packing:settings_window#add () in
2248  let table =
2249   GPack.table
2250    ~rows:1 ~columns:3 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
2251    ~border_width:5 ~packing:vbox#add () in
2252  let button_t1 =
2253   GButton.toggle_button ~label:"activate t1 fonts"
2254    ~packing:(table#attach ~left:0 ~top:0) () in
2255  let button_set_anti_aliasing =
2256   GButton.toggle_button ~label:"set_anti_aliasing"
2257    ~packing:(table#attach ~left:0 ~top:1) () in
2258  let button_set_transparency =
2259   GButton.toggle_button ~label:"set_transparency"
2260    ~packing:(table#attach ~left:2 ~top:1) () in
2261  let table =
2262   GPack.table
2263    ~rows:2 ~columns:2 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
2264    ~border_width:5 ~packing:vbox#add () in
2265  let font_size_label =
2266   GMisc.label ~text:"font size:"
2267    ~packing:(table#attach ~left:0 ~top:0 ~expand:`NONE) () in
2268  let font_size_spinb =
2269   let sadj =
2270    GData.adjustment ~value:(float_of_int output#get_font_size)
2271     ~lower:5.0 ~upper:50.0 ~step_incr:1.0 ()
2272   in
2273    GEdit.spin_button 
2274     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:0 ~fill:`NONE) () in
2275  let log_verbosity_label =
2276   GMisc.label ~text:"log verbosity:"
2277    ~packing:(table#attach ~left:0 ~top:1) () in
2278  let log_verbosity_spinb =
2279   let sadj =
2280    GData.adjustment ~value:0.0 ~lower:0.0 ~upper:3.0 ~step_incr:1.0 ()
2281   in
2282    GEdit.spin_button 
2283     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:1) () in
2284  let hbox =
2285   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2286  let closeb =
2287   GButton.button ~label:"Close"
2288    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2289 object(self)
2290  method show = settings_window#show
2291  initializer
2292   button_set_anti_aliasing#misc#set_sensitive false ;
2293   button_set_transparency#misc#set_sensitive false ;
2294   (* Signals connection *)
2295   (*
2296   ignore(button_t1#connect#clicked
2297    (activate_t1 output button_set_anti_aliasing
2298     button_set_transparency export_to_postscript_menu_item button_t1)) ;
2299   *)
2300   ignore(font_size_spinb#connect#changed (changefont output font_size_spinb)) ;
2301   (*
2302   ignore(button_set_anti_aliasing#connect#toggled
2303    (set_anti_aliasing output button_set_anti_aliasing));
2304   ignore(button_set_transparency#connect#toggled
2305    (set_transparency output button_set_transparency)) ;
2306   *)
2307   ignore(log_verbosity_spinb#connect#changed
2308    (set_log_verbosity output log_verbosity_spinb)) ;
2309   ignore(closeb#connect#clicked settings_window#misc#hide)
2310 end;;
2311
2312 (* Scratch window *)
2313
2314 class scratch_window =
2315  let window =
2316   GWindow.window
2317     ~title:"MathML viewer"
2318     ~border_width:2 () in
2319  let vbox =
2320   GPack.vbox ~packing:window#add () in
2321  let hbox =
2322   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2323  let whdb =
2324   GButton.button ~label:"Whd"
2325    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2326  let reduceb =
2327   GButton.button ~label:"Reduce"
2328    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2329  let simplb =
2330   GButton.button ~label:"Simpl"
2331    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2332  let scrolled_window =
2333   GBin.scrolled_window ~border_width:10
2334    ~packing:(vbox#pack ~expand:true ~padding:5) () in
2335  let sequent_viewer =
2336   TermViewer.sequent_viewer
2337    ~packing:(scrolled_window#add) ~width:400 ~height:280 () in
2338 object(self)
2339  val mutable term = Cic.Rel 1                 (* dummy value *)
2340  val mutable context = ([] : Cic.context)     (* dummy value *)
2341  val mutable metasenv = ([] : Cic.metasenv)   (* dummy value *)
2342  method sequent_viewer = sequent_viewer
2343  method show () = window#misc#hide () ; window#show ()
2344  method term = term
2345  method set_term t = term <- t
2346  method context = context
2347  method set_context t = context <- t
2348  method metasenv = metasenv
2349  method set_metasenv t = metasenv <- t
2350  initializer
2351   ignore
2352    (sequent_viewer#connect#selection_changed (choose_selection sequent_viewer));
2353   ignore(window#event#connect#delete (fun _ -> window#misc#hide () ; true )) ;
2354   ignore(whdb#connect#clicked InvokeTactics'.whd_in_scratch) ;
2355   ignore(reduceb#connect#clicked InvokeTactics'.reduce_in_scratch) ;
2356   ignore(simplb#connect#clicked InvokeTactics'.simpl_in_scratch)
2357 end;;
2358
2359 let open_contextual_menu_for_selected_terms mmlwidget infos =
2360  let button = GdkEvent.Button.button infos in 
2361  let terms_selected = List.length mmlwidget#get_selections > 0 in
2362   if button = 3 then
2363    begin
2364     let time = GdkEvent.Button.time infos in
2365     let menu = GMenu.menu () in
2366     let f = new GMenu.factory menu in
2367     let whd_menu_item =
2368      f#add_item "Whd" ~key:GdkKeysyms._W ~callback:InvokeTactics'.whd in
2369     let reduce_menu_item =
2370      f#add_item "Reduce" ~key:GdkKeysyms._R ~callback:InvokeTactics'.reduce in
2371     let simpl_menu_item =
2372      f#add_item "Simpl" ~key:GdkKeysyms._S ~callback:InvokeTactics'.simpl in
2373     let _ = f#add_separator () in
2374     let generalize_menu_item =
2375      f#add_item "Generalize"
2376       ~key:GdkKeysyms._G ~callback:InvokeTactics'.generalize in
2377     let _ = f#add_separator () in
2378     let clear_menu_item =
2379      f#add_item "Clear" ~key:GdkKeysyms._C ~callback:InvokeTactics'.clear in
2380     let clearbody_menu_item =
2381      f#add_item "ClearBody"
2382       ~key:GdkKeysyms._B ~callback:InvokeTactics'.clearbody
2383     in
2384      whd_menu_item#misc#set_sensitive terms_selected ; 
2385      reduce_menu_item#misc#set_sensitive terms_selected ; 
2386      simpl_menu_item#misc#set_sensitive terms_selected ;
2387      generalize_menu_item#misc#set_sensitive terms_selected ;
2388      clear_menu_item#misc#set_sensitive terms_selected ;
2389      clearbody_menu_item#misc#set_sensitive terms_selected ;
2390      menu#popup ~button ~time
2391    end ;
2392   true
2393 ;;
2394
2395 class page () =
2396  let vbox1 = GPack.vbox () in
2397 object(self)
2398  val mutable proofw_ref = None
2399  val mutable compute_ref = None
2400  method proofw =
2401   Lazy.force self#compute ;
2402   match proofw_ref with
2403      None -> assert false
2404    | Some proofw -> proofw
2405  method content = vbox1
2406  method compute =
2407   match compute_ref with
2408      None -> assert false
2409    | Some compute -> compute
2410  initializer
2411   compute_ref <-
2412    Some (lazy (
2413    let scrolled_window1 =
2414     GBin.scrolled_window ~border_width:10
2415      ~packing:(vbox1#pack ~expand:true ~padding:5) () in
2416    let proofw =
2417     TermViewer.sequent_viewer ~width:400 ~height:275
2418      ~packing:(scrolled_window1#add) () in
2419    let _ = proofw_ref <- Some proofw in
2420    let hbox3 =
2421     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
2422    let ringb =
2423     GButton.button ~label:"Ring"
2424      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2425    let fourierb =
2426     GButton.button ~label:"Fourier"
2427      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2428    let reflexivityb =
2429     GButton.button ~label:"Reflexivity"
2430      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2431    let symmetryb =
2432     GButton.button ~label:"Symmetry"
2433      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2434    let assumptionb =
2435     GButton.button ~label:"Assumption"
2436      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2437    let contradictionb =
2438     GButton.button ~label:"Contradiction"
2439      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2440    let hbox4 =
2441     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
2442    let existsb =
2443     GButton.button ~label:"Exists"
2444      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
2445    let splitb =
2446     GButton.button ~label:"Split"
2447      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
2448    let leftb =
2449     GButton.button ~label:"Left"
2450      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
2451    let rightb =
2452     GButton.button ~label:"Right"
2453      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
2454    let searchpatternb =
2455     GButton.button ~label:"SearchPattern_Apply"
2456      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
2457    let hbox5 =
2458     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
2459    let exactb =
2460     GButton.button ~label:"Exact"
2461      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2462    let introsb =
2463     GButton.button ~label:"Intros"
2464      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2465    let applyb =
2466     GButton.button ~label:"Apply"
2467      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2468    let elimintrossimplb =
2469     GButton.button ~label:"ElimIntrosSimpl"
2470      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2471    let elimtypeb =
2472     GButton.button ~label:"ElimType"
2473      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2474    let foldwhdb =
2475     GButton.button ~label:"Fold_whd"
2476      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2477    let foldreduceb =
2478     GButton.button ~label:"Fold_reduce"
2479      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2480    let hbox6 =
2481     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
2482    let foldsimplb =
2483     GButton.button ~label:"Fold_simpl"
2484      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2485    let cutb =
2486     GButton.button ~label:"Cut"
2487      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2488    let changeb =
2489     GButton.button ~label:"Change"
2490      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2491    let letinb =
2492     GButton.button ~label:"Let ... In"
2493      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2494    let rewritesimplb =
2495     GButton.button ~label:"RewriteSimpl ->"
2496      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2497    let rewritebacksimplb =
2498     GButton.button ~label:"RewriteSimpl <-"
2499      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
2500    let hbox7 =
2501     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
2502    let absurdb =
2503     GButton.button ~label:"Absurd"
2504      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2505    let decomposeb =
2506     GButton.button ~label:"Decompose"
2507      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2508    let transitivityb =
2509     GButton.button ~label:"Transitivity"
2510      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2511    let replaceb =
2512     GButton.button ~label:"Replace"
2513      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2514    let injectionb =
2515     GButton.button ~label:"Injection"
2516      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2517    let discriminateb =
2518     GButton.button ~label:"Discriminate"
2519      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2520 (* Zack: spostare in una toolbar
2521    let generalizeb =
2522     GButton.button ~label:"Generalize"
2523      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
2524    let clearbodyb =
2525     GButton.button ~label:"ClearBody"
2526      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2527    let clearb =
2528     GButton.button ~label:"Clear"
2529      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
2530    let whdb =
2531     GButton.button ~label:"Whd"
2532      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2533    let reduceb =
2534     GButton.button ~label:"Reduce"
2535      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2536    let simplb =
2537     GButton.button ~label:"Simpl"
2538      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
2539 *)
2540
2541    ignore(exactb#connect#clicked InvokeTactics'.exact) ;
2542    ignore(applyb#connect#clicked InvokeTactics'.apply) ;
2543    ignore(elimintrossimplb#connect#clicked InvokeTactics'.elimintrossimpl) ;
2544    ignore(elimtypeb#connect#clicked InvokeTactics'.elimtype) ;
2545    ignore(foldwhdb#connect#clicked InvokeTactics'.fold_whd) ;
2546    ignore(foldreduceb#connect#clicked InvokeTactics'.fold_reduce) ;
2547    ignore(foldsimplb#connect#clicked InvokeTactics'.fold_simpl) ;
2548    ignore(cutb#connect#clicked InvokeTactics'.cut) ;
2549    ignore(changeb#connect#clicked InvokeTactics'.change) ;
2550    ignore(letinb#connect#clicked InvokeTactics'.letin) ;
2551    ignore(ringb#connect#clicked InvokeTactics'.ring) ;
2552    ignore(fourierb#connect#clicked InvokeTactics'.fourier) ;
2553    ignore(rewritesimplb#connect#clicked InvokeTactics'.rewritesimpl) ;
2554    ignore(rewritebacksimplb#connect#clicked InvokeTactics'.rewritebacksimpl) ;
2555    ignore(replaceb#connect#clicked InvokeTactics'.replace) ;
2556    ignore(reflexivityb#connect#clicked InvokeTactics'.reflexivity) ;
2557    ignore(symmetryb#connect#clicked InvokeTactics'.symmetry) ;
2558    ignore(transitivityb#connect#clicked InvokeTactics'.transitivity) ;
2559    ignore(existsb#connect#clicked InvokeTactics'.exists) ;
2560    ignore(splitb#connect#clicked InvokeTactics'.split) ;
2561    ignore(leftb#connect#clicked InvokeTactics'.left) ;
2562    ignore(rightb#connect#clicked InvokeTactics'.right) ;
2563    ignore(assumptionb#connect#clicked InvokeTactics'.assumption) ;
2564    ignore(absurdb#connect#clicked InvokeTactics'.absurd) ;
2565    ignore(contradictionb#connect#clicked InvokeTactics'.contradiction) ;
2566    ignore(introsb#connect#clicked InvokeTactics'.intros) ;
2567    ignore(decomposeb#connect#clicked InvokeTactics'.decompose) ;
2568    ignore(searchpatternb#connect#clicked searchPattern) ;
2569    ignore(injectionb#connect#clicked InvokeTactics'.injection) ;
2570    ignore(discriminateb#connect#clicked InvokeTactics'.discriminate) ;
2571 (* Zack: spostare in una toolbar
2572    ignore(whdb#connect#clicked whd) ;
2573    ignore(reduceb#connect#clicked reduce) ;
2574    ignore(simplb#connect#clicked simpl) ;
2575    ignore(clearbodyb#connect#clicked clearbody) ;
2576    ignore(clearb#connect#clicked clear) ;
2577    ignore(generalizeb#connect#clicked generalize) ;
2578 *)
2579    ignore(proofw#connect#selection_changed (choose_selection proofw)) ;
2580    ignore
2581      ((new GObj.event_ops proofw#as_widget)#connect#button_press
2582         (open_contextual_menu_for_selected_terms proofw)) ;
2583   ))
2584 end
2585 ;;
2586
2587 class empty_page =
2588  let vbox1 = GPack.vbox () in
2589  let scrolled_window1 =
2590   GBin.scrolled_window ~border_width:10
2591    ~packing:(vbox1#pack ~expand:true ~padding:5) () in
2592  let proofw =
2593   TermViewer.sequent_viewer ~width:400 ~height:275
2594    ~packing:(scrolled_window1#add) () in
2595 object(self)
2596  method proofw = (assert false : TermViewer.sequent_viewer)
2597  method content = vbox1
2598  method compute = (assert false : unit)
2599 end
2600 ;;
2601
2602 let empty_page = new empty_page;;
2603
2604 class notebook =
2605 object(self)
2606  val notebook = GPack.notebook ()
2607  val pages = ref []
2608  val mutable skip_switch_page_event = false 
2609  val mutable empty = true
2610  method notebook = notebook
2611  method add_page n =
2612   let new_page = new page () in
2613    empty <- false ;
2614    pages := !pages @ [n,lazy (setgoal n),new_page] ;
2615    notebook#append_page
2616     ~tab_label:((GMisc.label ~text:("?" ^ string_of_int n) ())#coerce)
2617     new_page#content#coerce
2618  method remove_all_pages ~skip_switch_page_event:skip =
2619   if empty then
2620    notebook#remove_page 0 (* let's remove the empty page *)
2621   else
2622    List.iter (function _ -> notebook#remove_page 0) !pages ;
2623   pages := [] ;
2624   skip_switch_page_event <- skip
2625  method set_current_page ~may_skip_switch_page_event n =
2626   let (_,_,page) = List.find (function (m,_,_) -> m=n) !pages in
2627    let new_page = notebook#page_num page#content#coerce in
2628     if may_skip_switch_page_event && new_page <> notebook#current_page then
2629      skip_switch_page_event <- true ;
2630     notebook#goto_page new_page
2631  method set_empty_page =
2632   empty <- true ;
2633   pages := [] ;
2634   notebook#append_page
2635    ~tab_label:((GMisc.label ~text:"No proof in progress" ())#coerce)
2636    empty_page#content#coerce
2637  method proofw =
2638   let (_,_,page) = List.nth !pages notebook#current_page in
2639    page#proofw
2640  initializer
2641   ignore
2642    (notebook#connect#switch_page
2643     (function i ->
2644       let skip = skip_switch_page_event in
2645        skip_switch_page_event <- false ;
2646        if not skip then
2647         try
2648          let (metano,setgoal,page) = List.nth !pages i in
2649           set_proof_engine_goal (Some metano) ;
2650           Lazy.force (page#compute) ;
2651           Lazy.force setgoal;
2652           if notify_hbugs_on_goal_change then
2653             Hbugs.notify ()
2654         with _ -> ()
2655     ))
2656 end
2657 ;;
2658
2659 let dump_environment () =
2660   try
2661     let oc = open_out environmentfile in
2662     output_html (outputhtml ()) (`Msg (`T "Dumping environment ..."));
2663     CicEnvironment.dump_to_channel
2664       ~callback:(fun uri -> output_html (outputhtml ()) (`Msg (`T uri)))
2665       oc;
2666     output_html (outputhtml ()) (`Msg (`T "... done!")) ;
2667     close_out oc
2668   with exc ->
2669     output_html (outputhtml ())
2670       (`Error (`T (Printf.sprintf "Dump failure, uncaught exception:%s"
2671         (Printexc.to_string exc))))
2672 ;;
2673 let restore_environment () =
2674   try
2675     let ic = open_in environmentfile in
2676     output_html (outputhtml ()) (`Msg (`T "Restoring environment ... "));
2677     CicEnvironment.restore_from_channel
2678       ~callback:(fun uri -> output_html (outputhtml ()) (`Msg (`T uri)))
2679       ic;
2680     output_html (outputhtml ()) (`Msg (`T "... done!"));
2681     close_in ic
2682   with exc ->
2683     output_html (outputhtml ())
2684       (`Error (`T (Printf.sprintf "Restore failure, uncaught exception:%s"
2685         (Printexc.to_string exc))))
2686 ;;
2687
2688 (* Main window *)
2689
2690 class rendering_window output (notebook : notebook) =
2691  let scratch_window = new scratch_window in
2692  let window =
2693   GWindow.window
2694    ~title:"gTopLevel - Helm's Proof Assistant"
2695    ~border_width:0 ~allow_shrink:false () in
2696  let vbox_for_menu = GPack.vbox ~packing:window#add () in
2697  (* menus *)
2698  let handle_box = GBin.handle_box ~border_width:2
2699   ~packing:(vbox_for_menu#pack ~padding:0) () in
2700  let menubar = GMenu.menu_bar ~packing:handle_box#add () in
2701  let factory0 = new GMenu.factory menubar in
2702  let accel_group = factory0#accel_group in
2703  (* file menu *)
2704  let file_menu = factory0#add_submenu "File" in
2705  let factory1 = new GMenu.factory file_menu ~accel_group in
2706  (* let export_to_postscript_menu_item = *)
2707  let _ =
2708   begin
2709    let _ =
2710     factory1#add_item "New Block of (Co)Inductive Definitions..."
2711      ~key:GdkKeysyms._B ~callback:new_inductive
2712    in
2713    let _ =
2714     factory1#add_item "New Proof or Definition..." ~key:GdkKeysyms._N
2715      ~callback:new_proof
2716    in
2717    let reopen_menu_item =
2718     factory1#add_item "Reopen a Finished Proof..." ~key:GdkKeysyms._R
2719      ~callback:open_
2720    in
2721    let qed_menu_item =
2722     factory1#add_item "Qed" ~key:GdkKeysyms._E ~callback:qed in
2723    ignore (factory1#add_separator ()) ;
2724    ignore
2725     (factory1#add_item "Load Unfinished Proof..." ~key:GdkKeysyms._L
2726       ~callback:load_unfinished_proof) ;
2727    let save_menu_item =
2728     factory1#add_item "Save Unfinished Proof" ~key:GdkKeysyms._S
2729       ~callback:save_unfinished_proof
2730    in
2731    ignore (factory1#add_separator ()) ;
2732    ignore (factory1#add_item "Clear Environment" ~callback:CicEnvironment.empty);
2733    ignore (factory1#add_item "Dump Environment" ~callback:dump_environment);
2734    ignore
2735     (factory1#add_item "Restore Environment" ~callback:restore_environment);
2736    ignore
2737     (save_set_sensitive := function b -> save_menu_item#misc#set_sensitive b);
2738    ignore (!save_set_sensitive false);
2739    ignore (qed_set_sensitive:=function b -> qed_menu_item#misc#set_sensitive b);
2740    ignore (!qed_set_sensitive false);
2741    ignore (factory1#add_separator ()) ;
2742    (*
2743    let export_to_postscript_menu_item =
2744     factory1#add_item "Export to PostScript..."
2745      ~callback:(export_to_postscript output) in
2746    *)
2747    ignore (factory1#add_separator ()) ;
2748    ignore
2749     (factory1#add_item "Exit" ~key:GdkKeysyms._Q ~callback:GMain.Main.quit) (*;
2750    export_to_postscript_menu_item *)
2751   end in
2752  (* edit menu *)
2753  let edit_menu = factory0#add_submenu "Edit Current Proof" in
2754  let factory2 = new GMenu.factory edit_menu ~accel_group in
2755  let focus_and_proveit_set_sensitive = ref (function _ -> assert false) in
2756  let proveit_menu_item =
2757   factory2#add_item "Prove It" ~key:GdkKeysyms._I
2758    ~callback:(function () -> proveit ();!focus_and_proveit_set_sensitive false)
2759  in
2760  let focus_menu_item =
2761   factory2#add_item "Focus" ~key:GdkKeysyms._F
2762    ~callback:(function () -> focus () ; !focus_and_proveit_set_sensitive false)
2763  in
2764  let _ =
2765   focus_and_proveit_set_sensitive :=
2766    function b ->
2767     proveit_menu_item#misc#set_sensitive b ;
2768     focus_menu_item#misc#set_sensitive b
2769  in
2770  let _ = !focus_and_proveit_set_sensitive false in
2771  (* edit term menu *)
2772  let edit_term_menu = factory0#add_submenu "Edit Term" in
2773  let factory5 = new GMenu.factory edit_term_menu ~accel_group in
2774  let check_menu_item =
2775   factory5#add_item "Check Term" ~key:GdkKeysyms._C
2776    ~callback:(check scratch_window) in
2777  let _ = check_menu_item#misc#set_sensitive false in
2778  (* search menu *)
2779  let search_menu = factory0#add_submenu "Search" in
2780  let factory4 = new GMenu.factory search_menu ~accel_group in
2781  let _ =
2782   factory4#add_item "Locate..." ~key:GdkKeysyms._T
2783    ~callback:locate in
2784  let searchPattern_menu_item =
2785   factory4#add_item "SearchPattern..." ~key:GdkKeysyms._D
2786    ~callback:completeSearchPattern in
2787  let _ = searchPattern_menu_item#misc#set_sensitive false in
2788  let show_menu_item =
2789   factory4#add_item "Show..." ~key:GdkKeysyms._H ~callback:show
2790  in
2791  let insert_query_item =
2792   factory4#add_item "Insert Query (Experts Only)..." ~key:GdkKeysyms._Y
2793    ~callback:insertQuery in
2794  (* hbugs menu *)
2795  let hbugs_menu = factory0#add_submenu "HBugs" in
2796  let factory6 = new GMenu.factory hbugs_menu ~accel_group in
2797  let _ =
2798   factory6#add_check_item
2799     ~active:false ~key:GdkKeysyms._F5 ~callback:Hbugs.toggle "HBugs enabled"
2800  in
2801  let _ =
2802   factory6#add_item ~key:GdkKeysyms._Return ~callback:Hbugs.notify
2803    "(Re)Submit status!"
2804  in
2805  let _ = factory6#add_separator () in
2806  let _ =
2807   factory6#add_item ~callback:Hbugs.start_web_services "Start Web Services"
2808  in
2809  let _ =
2810   factory6#add_item ~callback:Hbugs.stop_web_services "Stop Web Services"
2811  in
2812  (* settings menu *)
2813  let settings_menu = factory0#add_submenu "Settings" in
2814  let factory3 = new GMenu.factory settings_menu ~accel_group in
2815  let _ =
2816   factory3#add_item "Edit Aliases..." ~key:GdkKeysyms._A
2817    ~callback:edit_aliases in
2818  let _ = factory3#add_separator () in
2819  let _ =
2820   factory3#add_item "MathML Widget Preferences..." ~key:GdkKeysyms._P
2821    ~callback:(function _ -> (settings_window ())#show ()) in
2822  let _ = factory3#add_separator () in
2823  let _ =
2824   factory3#add_item "Reload Stylesheets"
2825    ~callback:
2826      (function _ ->
2827        ApplyStylesheets.reload_stylesheets () ;
2828        if ProofEngine.get_proof () <> None then
2829         try
2830          refresh_goals notebook ;
2831          refresh_proof output
2832         with
2833            InvokeTactics.RefreshSequentException e ->
2834             output_html (outputhtml ())
2835              (`Error (`T ("An error occurred while refreshing the " ^
2836                "sequent: " ^ Printexc.to_string e))) ;
2837            (*notebook#remove_all_pages ~skip_switch_page_event:false ;*)
2838            notebook#set_empty_page
2839          | InvokeTactics.RefreshProofException e ->
2840             output_html (outputhtml ())
2841              (`Error (`T ("An error occurred while refreshing the proof: "               ^ Printexc.to_string e))) ;
2842             output#unload
2843      ) in
2844  (* accel group *)
2845  let _ = window#add_accel_group accel_group in
2846  (* end of menus *)
2847  let hbox0 =
2848   GPack.hbox
2849    ~packing:(vbox_for_menu#pack ~expand:true ~fill:true ~padding:5) () in
2850  let vbox =
2851   GPack.vbox ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
2852  let scrolled_window0 =
2853   GBin.scrolled_window ~border_width:10
2854    ~packing:(vbox#pack ~expand:true ~padding:5) () in
2855  let _ = scrolled_window0#add output#coerce in
2856  let frame =
2857   GBin.frame ~label:"Insert Term"
2858    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2859  let scrolled_window1 =
2860   GBin.scrolled_window ~border_width:5
2861    ~packing:frame#add () in
2862  let inputt =
2863   TexTermEditor'.term_editor
2864    mqi_handle
2865    ~width:400 ~height:100 ~packing:scrolled_window1#add ()
2866    ~isnotempty_callback:
2867     (function b ->
2868       check_menu_item#misc#set_sensitive b ;
2869       searchPattern_menu_item#misc#set_sensitive b) in
2870  let vboxl =
2871   GPack.vbox ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
2872  let _ =
2873   vboxl#pack ~expand:true ~fill:true ~padding:5 notebook#notebook#coerce in
2874  let frame =
2875   GBin.frame ~shadow_type:`IN ~packing:(vboxl#pack ~expand:true ~padding:5) ()
2876  in
2877  let outputhtml =
2878   new Ui_logger.html_logger
2879    ~width:400 ~height: 100
2880    ~packing:frame#add
2881    ~show:true () in
2882 object
2883  method outputhtml = outputhtml
2884  method inputt = inputt
2885  method output = (output : TermViewer.proof_viewer)
2886  method scratch_window = scratch_window
2887  method notebook = notebook
2888  method show = window#show
2889  initializer
2890   notebook#set_empty_page ;
2891   (*export_to_postscript_menu_item#misc#set_sensitive false ;*)
2892   check_term := (check_term_in_scratch scratch_window) ;
2893
2894   (* signal handlers here *)
2895   ignore(output#connect#selection_changed
2896    (function elem ->
2897      choose_selection output elem ;
2898      !focus_and_proveit_set_sensitive true
2899    )) ;
2900   ignore (output#connect#click (show_in_show_window_callback output)) ;
2901   let settings_window = new settings_window output scrolled_window0
2902    (*export_to_postscript_menu_item*)() (choose_selection output) in
2903   set_settings_window settings_window ;
2904   set_outputhtml outputhtml ;
2905   ignore(window#event#connect#delete (fun _ -> GMain.Main.quit () ; true )) ;
2906   CicLogger.log_callback := (outputhtml#log_cic_msg ~append_NL:true)
2907 end
2908
2909 (* MAIN *)
2910
2911 let initialize_everything () =
2912  let module U = Unix in
2913   let output = TermViewer.proof_viewer ~width:350 ~height:280 () in
2914   let notebook = new notebook in
2915    let rendering_window' = new rendering_window output notebook in
2916     set_rendering_window rendering_window' ;
2917     let print_error_as_html prefix msg =
2918      output_html (outputhtml ()) (`Error (`T (prefix ^ msg)))
2919     in
2920      Gdome_xslt.setErrorCallback (Some (print_error_as_html "XSLT Error: "));
2921      Gdome_xslt.setDebugCallback
2922       (Some (print_error_as_html "XSLT Debug Message: "));
2923      rendering_window'#show () ;
2924      if restore_environment_on_boot && Sys.file_exists environmentfile then
2925        restore_environment ();
2926      GtkThread.main ()
2927 ;;
2928
2929 let main () =
2930  ignore (GtkMain.Main.init ()) ;
2931  initialize_everything () ;
2932  MQIC.close mqi_handle;
2933  Hbugs.quit ()
2934 ;;
2935
2936 try
2937   Sys.catch_break true;
2938   main ();
2939 with Sys.Break -> ()  (* exit nicely, invoking at_exit functions *)
2940