]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matita.ml
proof of concept implementation of cut and paste from gtkMathView to text
[helm.git] / helm / matita / matita.ml
1 (* Copyright (C) 2004-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 open MatitaGtkMisc
29 open MatitaTypes
30 open MatitaMisc
31
32
33 (* ALB to link paramodulation... *)
34 let _ = Paramodulation.Saturation.init ()
35   
36
37 (** {2 Initialization} *)
38
39 let _ =
40   Helm_registry.load_from BuildTimeConf.matita_conf;
41   CicNotation.load_notation BuildTimeConf.core_notation_script;
42   Http_getter.init ();
43   MetadataTypes.ownerize_tables (Helm_registry.get "matita.owner");
44   MatitaDb.create_owner_environment ();
45   MatitamakeLib.initialize ();
46   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc_file; (* loads gtk rc *)
47   GMathView.add_configuration_path BuildTimeConf.gtkmathview_conf;
48   ignore (GMain.Main.init ());
49   CicEnvironment.set_trust (* environment trust *)
50     (let trust = Helm_registry.get_bool "matita.environment_trust" in
51      fun _ -> trust)
52
53 (** {2 GUI callbacks} *)
54
55 let gui = MatitaGui.instance ()
56
57 let _ =
58   ignore (gui#main#newCicBrowserMenuItem#connect#activate (fun _ ->
59     ignore (MatitaMathView.cicBrowser ())));
60   (* font sizes *)
61   ignore (gui#main#increaseFontSizeMenuItem#connect#activate (fun _ ->
62     gui#increaseFontSize ();
63     MatitaMathView.increase_font_size ();
64     MatitaMathView.update_font_sizes ()));
65   ignore (gui#main#decreaseFontSizeMenuItem#connect#activate (fun _ ->
66     gui#decreaseFontSize ();
67     MatitaMathView.decrease_font_size ();
68     MatitaMathView.update_font_sizes ()));
69   ignore (gui#main#normalFontSizeMenuItem#connect#activate (fun _ ->
70     gui#resetFontSize ();
71     MatitaMathView.reset_font_size ();
72     MatitaMathView.update_font_sizes ()));
73   MatitaMathView.reset_font_size ();
74   (* disambiguator callback *)
75   MatitaDisambiguator.set_choose_uris_callback
76     (MatitaGui.interactive_uri_choice ());
77   MatitaDisambiguator.set_choose_interp_callback
78     (MatitaGui.interactive_interp_choice ())
79
80 let script =
81   let s = 
82     MatitaScript.script 
83       ~view:(gui#sourceView :> GText.view)
84       ~init:(Lazy.force MatitaEngine.initial_status) 
85       ~mathviewer:(MatitaMathView.mathViewer ())
86       ~urichooser:(fun uris ->
87         try
88           MatitaGui.interactive_uri_choice ~selection_mode:`SINGLE
89           ~title:"Matita: URI chooser" 
90           ~msg:"Select the URI" ~hide_uri_entry:true
91           ~hide_try:true ~ok_label:"_Apply" ~ok_action:`SELECT
92           ~copy_cb:(fun s -> gui#sourceView#buffer#insert ("\n"^s^"\n"))
93           () ~id:"boh?" uris
94         with MatitaTypes.Cancel -> [])
95       ~set_star:gui#setStar
96       ~ask_confirmation:
97         (fun ~title ~message -> 
98             MatitaGtkMisc.ask_confirmation ~title ~message 
99             ~parent:gui#main#toplevel ())
100       ~develcreator:gui#createDevelopment
101       ()
102   in
103   gui#sourceView#source_buffer#begin_not_undoable_action ();
104   s#reset (); 
105   s#template (); 
106   gui#sourceView#source_buffer#end_not_undoable_action ();
107   s
108   
109
110   (* math viewers *)
111 let _ =
112   let sequent_viewer = MatitaMathView.sequentViewer_instance () in
113   let sequents_viewer = MatitaMathView.sequentsViewer_instance () in
114   sequent_viewer#set_href_callback
115     (Some (fun uri -> (MatitaMathView.cicBrowser ())#load
116       (`Uri (UriManager.uri_of_string uri))));
117   let browser_observer _ = MatitaMathView.refresh_all_browsers () in
118   let sequents_observer status =
119     sequents_viewer#reset;
120     match status.proof_status with
121     | Incomplete_proof ((proof, goal) as status) ->
122         sequents_viewer#load_sequents status;
123         sequents_viewer#goto_sequent goal
124     | Proof proof -> 
125         prerr_endline "sequents_viewer#load_logo_with_qed (no proof)"; ()
126     | No_proof -> 
127         prerr_endline "sequents_viewer#load_logo (no proof)"; ()
128     | Intermediate _ -> 
129         assert false (* only the engine may be in this state *)
130   in
131   script#addObserver sequents_observer;
132   script#addObserver browser_observer
133
134   (** <DEBUGGING> *)
135 let _ =
136   if BuildTimeConf.debug then begin
137     gui#main#debugMenu#misc#show ();
138     let addDebugItem ~label callback =
139       let item =
140         GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label ()
141       in
142       ignore (item#connect#activate callback)
143     in
144     addDebugItem "dump environment to \"env.dump\"" (fun _ ->
145       let oc = open_out "env.dump" in
146       CicEnvironment.dump_to_channel oc;
147       close_out oc);
148     addDebugItem "load environment from \"env.dump\"" (fun _ ->
149       let ic = open_in "env.dump" in
150       CicEnvironment.restore_from_channel ic;
151       close_in ic);
152     addDebugItem "dump universes" (fun _ ->
153       List.iter (fun (u,_,g) -> 
154         prerr_endline (UriManager.string_of_uri u); 
155         CicUniv.print_ugraph g) (CicEnvironment.list_obj ())
156       );
157     addDebugItem "dump environment content" (fun _ ->
158       List.iter (fun (u,_,_) -> 
159         prerr_endline (UriManager.string_of_uri u)) 
160         (CicEnvironment.list_obj ()));
161     addDebugItem "print selected terms" (fun () ->
162       let sequentViewer = MatitaMathView.sequentViewer_instance () in
163       MatitaLog.debug (sequentViewer#string_of_selected_terms));
164     addDebugItem "dump getter settings" (fun _ ->
165       prerr_endline (Http_getter_env.env_to_string ()));
166     addDebugItem "getter: getalluris" (fun _ ->
167       List.iter prerr_endline (Http_getter.getalluris ()));
168     addDebugItem "dump script status" script#dump;
169     addDebugItem "dump metasenv"
170       (fun _ ->
171          if script#onGoingProof () then
172            MatitaLog.debug (CicMetaSubst.ppmetasenv script#proofMetasenv []));
173     addDebugItem "dump coercions Db" (fun _ ->
174       List.iter
175         (fun (s,t,u) -> 
176           MatitaLog.debug
177             (UriManager.name_of_uri u ^ ":"
178              ^ UriManager.name_of_uri s ^ " -> " ^ UriManager.name_of_uri t))
179         (CoercDb.to_list ()));
180     addDebugItem "rotate light bulbs"
181       (fun _ ->
182          let nb = gui#main#hintNotebook in
183          nb#goto_page ((nb#current_page + 1) mod 3))
184   end
185
186   (** </DEBUGGING> *)
187
188 let _ =
189   at_exit (fun () -> print_endline "\nThanks for using Matita!\n");
190   Sys.catch_break true;
191   if Filename.basename Sys.argv.(0) = "cicbrowser" then begin (* cicbrowser *)
192     Helm_registry.set "matita.mode" "cicbrowser";
193     let browser = MatitaMathView.cicBrowser () in
194     let entry =
195       try
196         `Uri (UriManager.uri_of_string Sys.argv.(1))
197       with Invalid_argument _ -> `Dir "cic:/"
198     in
199     browser#load entry
200   end else begin  (* matita *)
201     Helm_registry.set "matita.mode" "matita";
202     (try
203        gui#loadScript Sys.argv.(1);
204      with Invalid_argument _ -> ());
205     gui#main#mainWin#show ();
206   end;
207   try
208     GtkThread.main ()
209   with Sys.Break -> ()
210