]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
Code simplification.
[helm.git] / helm / matita / matitaGui.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 MatitaGeneratedGui
29 open MatitaGtkMisc
30 open MatitaMisc
31
32 let gui_instance = ref None ;;
33
34 class type browserWin =
35   (* this class exists only because GEdit.combo_box_entry is not supported by
36    * lablgladecc :-(((( *)
37 object
38   inherit MatitaGeneratedGui.browserWin
39   method browserUri: GEdit.combo_box_entry
40 end
41
42 class console ~(buffer: GText.buffer) () =
43   object (self)
44     val error_tag   = buffer#create_tag [ `FOREGROUND "red" ]
45     val warning_tag = buffer#create_tag [ `FOREGROUND "orange" ]
46     val message_tag = buffer#create_tag []
47     val debug_tag   = buffer#create_tag [ `FOREGROUND "#888888" ]
48     method message s = buffer#insert ~iter:buffer#end_iter ~tags:[message_tag] s
49     method error s   = buffer#insert ~iter:buffer#end_iter ~tags:[error_tag] s
50     method warning s = buffer#insert ~iter:buffer#end_iter ~tags:[warning_tag] s
51     method debug s   = buffer#insert ~iter:buffer#end_iter ~tags:[debug_tag] s
52     method clear () =
53       buffer#delete ~start:buffer#start_iter ~stop:buffer#end_iter
54     method log_callback (tag: MatitaLog.log_tag) s =
55       match tag with
56       | `Debug -> self#debug (s ^ "\n")
57       | `Error -> self#error (s ^ "\n")
58       | `Message -> self#message (s ^ "\n")
59       | `Warning -> self#warning (s ^ "\n")
60   end
61         
62 let clean_current_baseuri status = 
63     try  
64       let baseuri = MatitaTypes.get_string_option status "baseuri" in
65       MatitacleanLib.clean_baseuris [baseuri]
66     with MatitaTypes.Option_error _ -> ()
67
68 let ask_and_save_moo_if_needed parent fname status = 
69   let save () =
70     MatitacLib.dump_moo_to_file fname status.MatitaTypes.moo_content_rev in
71   if (MatitaScript.instance ())#eos &&
72      status.MatitaTypes.proof_status = MatitaTypes.No_proof
73   then
74     begin
75       let mooname = 
76         MatitaMisc.obj_file_of_script fname
77       in
78       let rc = 
79         MatitaGtkMisc.ask_confirmation
80         ~title:"A .moo can be generated"
81         ~message:(Printf.sprintf 
82           "%s can be generated for %s.\n<i>Should I generate it?</i>"
83           mooname fname)
84         ~parent ()
85       in
86       let b = 
87         match rc with 
88         | `YES -> true 
89         | `NO -> false 
90         | `CANCEL -> raise MatitaTypes.Cancel 
91       in
92       if b then
93         save ()
94       else
95         clean_current_baseuri status
96     end
97   else
98     clean_current_baseuri status 
99     
100 let ask_unsaved parent =
101   MatitaGtkMisc.ask_confirmation 
102     ~parent ~title:"Unsaved work!" 
103     ~message:("Your work is <b>unsaved</b>!\n\n"^
104          "<i>Do you want to save the script before exiting?</i>")
105     ()
106
107 class gui () =
108     (* creation order _is_ relevant for windows placement *)
109   let main = new mainWin () in
110   let fileSel = new fileSelectionWin () in
111   let findRepl = new findReplWin () in
112   let develList = new develListWin () in
113   let newDevel = new newDevelopmentWin () in
114   let keyBindingBoxes = (* event boxes which should receive global key events *)
115     [ main#mainWinEventBox ]
116   in
117   let console = new console ~buffer:main#logTextView#buffer () in
118   let (source_view: GSourceView.source_view) =
119     GSourceView.source_view
120       ~auto_indent:true
121       ~insert_spaces_instead_of_tabs:true ~tabs_width:2
122       ~margin:80 ~show_margin:true
123       ~smart_home_end:true
124       ~packing:main#scriptScrolledWin#add
125       ()
126   in
127   let default_font_size =
128     Helm_registry.get_opt_default Helm_registry.int
129       ~default:BuildTimeConf.default_font_size "matita.font_size"
130   in
131   let source_buffer = source_view#source_buffer in
132   object (self)
133     val mutable chosen_file = None
134     val mutable _ok_not_exists = false
135     val mutable _only_directory = false
136     val mutable script_fname = None
137     val mutable font_size = default_font_size
138     val mutable next_devel_must_contain = None
139    
140     initializer
141         (* glade's check widgets *)
142       List.iter (fun w -> w#check_widgets ())
143         (let c w = (w :> <check_widgets: unit -> unit>) in
144         [ c fileSel; c main; c findRepl]);
145         (* key bindings *)
146       List.iter (* global key bindings *)
147         (fun (key, callback) -> self#addKeyBinding key callback)
148 (*
149         [ GdkKeysyms._F3,
150             toggle_win ~check:main#showProofMenuItem proof#proofWin;
151           GdkKeysyms._F4,
152             toggle_win ~check:main#showCheckMenuItem check#checkWin;
153 *)
154         [ ];
155         (* about win *)
156       let parse_txt_file file =
157        let ch = open_in (BuildTimeConf.runtime_base_dir ^ "/" ^ file) in
158        let l_rev = ref [] in
159        try
160         while true do
161          l_rev := input_line ch :: !l_rev;
162         done;
163         assert false
164        with
165         End_of_file ->
166          close_in ch;
167          List.rev !l_rev in 
168       let about_dialog =
169        GWindow.about_dialog
170         ~authors:(parse_txt_file "AUTHORS")
171         (*~comments:"comments"*)
172         ~copyright:"Copyright (C) 2005, the HELM team"
173         ~license:(String.concat "\n" (parse_txt_file "LICENSE"))
174         (*?logo:GdkPixbuf.pixbuf*)
175         (*?logo_icon_name:string*)
176         ~name:"Matita"
177         ~version:BuildTimeConf.version
178         ~website:"http://helm.cs.unibo.it"
179         ()
180       in
181       ignore (main#aboutMenuItem#connect#activate
182        (fun _ -> about_dialog#present ()));
183         (* findRepl win *)
184       let show_find_Repl () = 
185         findRepl#toplevel#misc#show ();
186         findRepl#toplevel#misc#grab_focus ()
187       in
188       let hide_find_Repl () = findRepl#toplevel#misc#hide () in
189       let find_forward _ = 
190           let highlight start end_ =
191             source_buffer#move_mark `INSERT ~where:start;
192             source_buffer#move_mark `SEL_BOUND ~where:end_;
193             source_view#scroll_mark_onscreen `INSERT
194           in
195           let text = findRepl#findEntry#text in
196           let iter = source_buffer#get_iter `SEL_BOUND in
197           match iter#forward_search text with
198           | None -> 
199               (match source_buffer#start_iter#forward_search text with
200               | None -> ()
201               | Some (start,end_) -> highlight start end_)
202           | Some (start,end_) -> highlight start end_ 
203       in
204       let replace _ =
205         let text = findRepl#replaceEntry#text in
206         let ins = source_buffer#get_iter `INSERT in
207         let sel = source_buffer#get_iter `SEL_BOUND in
208         if ins#compare sel < 0 then 
209           begin
210             ignore(source_buffer#delete_selection ());
211             source_buffer#insert text
212           end
213       in
214       connect_button findRepl#findButton find_forward;
215       connect_button findRepl#findReplButton replace;
216       connect_button findRepl#cancelButton (fun _ -> hide_find_Repl ());
217       ignore(findRepl#toplevel#event#connect#delete 
218         ~callback:(fun _ -> hide_find_Repl ();true));
219       let safe_undo =
220        fun () ->
221         (* phase 1: we save the actual status of the marks and we undo *)
222         let locked_mark = `MARK ((MatitaScript.instance ())#locked_mark) in
223         let locked_iter = source_view#buffer#get_iter_at_mark locked_mark in
224         let locked_iter_offset = locked_iter#offset in
225         let mark2 =
226          `MARK
227            (source_view#buffer#create_mark ~name:"lock_point"
228              ~left_gravity:true locked_iter) in
229         source_view#source_buffer#undo ();
230         (* phase 2: we save the cursor position and we redo, restoring
231            the previous status of all the marks *)
232         let cursor_iter = source_view#buffer#get_iter_at_mark `INSERT in
233         let mark =
234          `MARK
235            (source_view#buffer#create_mark ~name:"undo_point"
236              ~left_gravity:true cursor_iter)
237         in
238          source_view#source_buffer#redo ();
239          let mark_iter = source_view#buffer#get_iter_at_mark mark in
240          let mark2_iter = source_view#buffer#get_iter_at_mark mark2 in
241          let mark2_iter = mark2_iter#set_offset locked_iter_offset in
242           source_view#buffer#move_mark locked_mark ~where:mark2_iter;
243           source_view#buffer#delete_mark mark;
244           source_view#buffer#delete_mark mark2;
245           (* phase 3: if after the undo the cursor was in the locked area,
246              then we move it there again and we perform a goto *)
247           if mark_iter#offset < locked_iter_offset then
248            begin
249             source_view#buffer#move_mark `INSERT ~where:mark_iter;
250             (MatitaScript.instance ())#goto `Cursor ();
251            end;
252           (* phase 4: we perform again the undo. This time we are sure that
253              the text to undo is not locked *)
254           source_view#source_buffer#undo ();
255           source_view#misc#grab_focus () in
256       let safe_redo =
257        fun () ->
258         (* phase 1: we save the actual status of the marks, we redo and
259            we undo *)
260         let locked_mark = `MARK ((MatitaScript.instance ())#locked_mark) in
261         let locked_iter = source_view#buffer#get_iter_at_mark locked_mark in
262         let locked_iter_offset = locked_iter#offset in
263         let mark2 =
264          `MARK
265            (source_view#buffer#create_mark ~name:"lock_point"
266              ~left_gravity:true locked_iter) in
267         source_view#source_buffer#redo ();
268         source_view#source_buffer#undo ();
269         (* phase 2: we save the cursor position and we restore
270            the previous status of all the marks *)
271         let cursor_iter = source_view#buffer#get_iter_at_mark `INSERT in
272         let mark =
273          `MARK
274            (source_view#buffer#create_mark ~name:"undo_point"
275              ~left_gravity:true cursor_iter)
276         in
277          let mark_iter = source_view#buffer#get_iter_at_mark mark in
278          let mark2_iter = source_view#buffer#get_iter_at_mark mark2 in
279          let mark2_iter = mark2_iter#set_offset locked_iter_offset in
280           source_view#buffer#move_mark locked_mark ~where:mark2_iter;
281           source_view#buffer#delete_mark mark;
282           source_view#buffer#delete_mark mark2;
283           (* phase 3: if after the undo the cursor is in the locked area,
284              then we move it there again and we perform a goto *)
285           if mark_iter#offset < locked_iter_offset then
286            begin
287             source_view#buffer#move_mark `INSERT ~where:mark_iter;
288             (MatitaScript.instance ())#goto `Cursor ();
289            end;
290           (* phase 4: we perform again the redo. This time we are sure that
291              the text to redo is not locked *)
292           source_view#source_buffer#redo ();
293           source_view#misc#grab_focus ()
294       in
295       ignore(self#main#undoMenuItem#connect#activate ~callback:safe_undo);
296       ignore(source_view#source_buffer#connect#can_undo
297         ~callback:self#main#undoMenuItem#misc#set_sensitive);
298       ignore(self#main#redoMenuItem#connect#activate ~callback:safe_redo);
299       ignore(source_view#source_buffer#connect#can_redo
300         ~callback:self#main#redoMenuItem#misc#set_sensitive);
301       ignore(source_view#connect#after#populate_popup
302        ~callback:(fun pre_menu ->
303          let menu = new GMenu.menu pre_menu in
304          let menuItems = menu#children in
305          let undoMenuItem, redoMenuItem =
306           match menuItems with
307              [undo;redo;sep1;cut;copy;paste;delete;sep2;
308               selectall;sep3;inputmethod;insertunicodecharacter] -> undo,redo
309            | _ -> assert false in
310          let new_undoMenuItem =
311           GMenu.image_menu_item
312            ~image:(GMisc.image ~stock:`UNDO ())
313            ~use_mnemonic:true
314            ~label:"_Undo"
315            ~packing:(menu#insert ~pos:0) () in
316          new_undoMenuItem#misc#set_sensitive
317           (undoMenuItem#misc#get_flag `SENSITIVE);
318          menu#remove (undoMenuItem :> GMenu.menu_item);
319          ignore(new_undoMenuItem#connect#activate ~callback:safe_undo);
320          let new_redoMenuItem =
321           GMenu.image_menu_item
322            ~image:(GMisc.image ~stock:`REDO ())
323            ~use_mnemonic:true
324            ~label:"_Redo"
325            ~packing:(menu#insert ~pos:1) () in
326          new_redoMenuItem#misc#set_sensitive
327           (redoMenuItem#misc#get_flag `SENSITIVE);
328           menu#remove (redoMenuItem :> GMenu.menu_item);
329           ignore(new_redoMenuItem#connect#activate ~callback:safe_redo);
330          ));
331       let clipboard =
332        let atom = Gdk.Atom.clipboard in
333         GData.clipboard atom in
334       ignore(self#main#editMenu#connect#activate
335         ~callback:
336           (fun () ->
337             let something_selected =
338               (source_buffer#get_iter_at_mark `INSERT)#compare
339               (source_buffer#get_iter_at_mark `SEL_BOUND) <> 0
340             in
341              self#main#cutMenuItem#misc#set_sensitive something_selected;
342              self#main#copyMenuItem#misc#set_sensitive something_selected;
343              self#main#deleteMenuItem#misc#set_sensitive something_selected;
344              self#main#pasteMenuItem#misc#set_sensitive (clipboard#text <> None)
345           ));
346       ignore(self#main#cutMenuItem#connect#activate
347         ~callback:(fun () -> source_view#buffer#cut_clipboard clipboard));
348       ignore(self#main#copyMenuItem#connect#activate
349         ~callback:(fun () -> source_view#buffer#copy_clipboard clipboard));
350       ignore(self#main#pasteMenuItem#connect#activate
351         ~callback:(fun () ->
352           source_view#buffer#paste_clipboard clipboard;
353           (MatitaScript.instance ())#clean_dirty_lock));
354       ignore(self#main#deleteMenuItem#connect#activate
355         ~callback:(fun () -> ignore (source_view#buffer#delete_selection ())));
356       ignore(self#main#selectAllMenuItem#connect#activate
357         ~callback:(fun () ->
358           source_buffer#move_mark `INSERT source_buffer#start_iter;
359           source_buffer#move_mark `SEL_BOUND source_buffer#end_iter));
360       ignore(self#main#findReplMenuItem#connect#activate
361         ~callback:show_find_Repl);
362       ignore (findRepl#findEntry#connect#activate ~callback:find_forward);
363         (* interface lockers *)
364       let lock_world _ =
365         main#buttonsToolbar#misc#set_sensitive false;
366         develList#buttonsHbox#misc#set_sensitive false;
367         source_view#set_editable false
368       in
369       let unlock_world _ =
370         main#buttonsToolbar#misc#set_sensitive true;
371         develList#buttonsHbox#misc#set_sensitive true;
372         source_view#set_editable true
373       in
374       let locker f = 
375         fun () -> 
376           lock_world ();
377           try f ();unlock_world () with exc -> unlock_world (); raise exc
378       in
379         (* developments win *)
380       let model = 
381         new MatitaGtkMisc.multiStringListModel 
382           ~cols:2 develList#developmentsTreeview
383       in
384       let refresh_devels_win () =
385         model#list_store#clear ();
386         List.iter 
387           (fun (name, root) -> model#easy_mappend [name;root]) 
388           (MatitamakeLib.list_known_developments ())
389       in
390       let get_devel_selected () = 
391         match model#easy_mselection () with
392         | [[name;_]] -> MatitamakeLib.development_for_name name
393         | _ -> assert false 
394       in
395       let refresh () = 
396         while Glib.Main.pending () do 
397           ignore(Glib.Main.iteration false); 
398         done
399       in
400       connect_button develList#newButton
401         (fun () -> 
402           next_devel_must_contain <- None;
403           newDevel#toplevel#misc#show());
404       connect_button develList#deleteButton
405         (locker (fun () -> 
406           (match get_devel_selected () with
407           | None -> ()
408           | Some d -> MatitamakeLib.destroy_development_in_bg refresh d);
409           refresh_devels_win ()));
410       connect_button develList#buildButton 
411         (locker (fun () -> 
412           match get_devel_selected () with
413           | None -> ()
414           | Some d -> 
415               let build = locker 
416                 (fun () -> MatitamakeLib.build_development_in_bg refresh d)
417               in
418               ignore(build ())));
419       connect_button develList#cleanButton 
420         (locker (fun () -> 
421           match get_devel_selected () with
422           | None -> ()
423           | Some d -> 
424               let clean = locker 
425                 (fun () -> MatitamakeLib.clean_development_in_bg refresh d)
426               in
427               ignore(clean ())));
428       connect_button develList#closeButton 
429         (fun () -> develList#toplevel#misc#hide());
430       ignore(develList#toplevel#event#connect#delete 
431         (fun _ -> develList#toplevel#misc#hide();true));
432       let selected_devel = ref None in
433       connect_menu_item self#main#developmentsMenuItem
434         (fun () -> refresh_devels_win ();develList#toplevel#misc#show ());
435       
436         (* add development win *)
437       let check_if_root_contains root =
438         match next_devel_must_contain with
439         | None -> true
440         | Some path -> 
441             let is_prefix_of d1 d2 =
442               let len1 = String.length d1 in
443               let len2 = String.length d2 in
444               if len2 < len1 then 
445                 false
446               else
447                 let pref = String.sub d2 0 len1 in
448                 pref = d1
449             in
450             is_prefix_of root path
451       in
452       connect_button newDevel#addButton 
453        (fun () -> 
454           let name = newDevel#nameEntry#text in
455           let root = newDevel#rootEntry#text in
456           if check_if_root_contains root then
457             begin
458               ignore (MatitamakeLib.initialize_development name root);
459               refresh_devels_win ();
460               newDevel#nameEntry#set_text "";
461               newDevel#rootEntry#set_text "";
462               newDevel#toplevel#misc#hide()
463             end
464           else
465             MatitaLog.error ("The selected root does not contain " ^ 
466               match next_devel_must_contain with 
467               | Some x -> x 
468               | _ -> assert false));
469       connect_button newDevel#chooseRootButton 
470        (fun () ->
471          let path = self#chooseDir () in
472          match path with
473          | Some path -> newDevel#rootEntry#set_text path
474          | None -> ());
475       connect_button newDevel#cancelButton 
476        (fun () -> newDevel#toplevel#misc#hide ());
477       ignore(newDevel#toplevel#event#connect#delete 
478         (fun _ -> newDevel#toplevel#misc#hide();true));
479       
480         (* file selection win *)
481       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
482       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
483         let return r =
484           chosen_file <- r;
485           fileSel#fileSelectionWin#misc#hide ();
486           GMain.Main.quit ()
487         in
488         match event with
489         | `OK ->
490             let fname = fileSel#fileSelectionWin#filename in
491             if Sys.file_exists fname then
492               begin
493                 if is_regular fname && not(_only_directory) then 
494                   return (Some fname) 
495                 else if _only_directory && is_dir fname then 
496                   return (Some fname)
497               end
498             else
499               begin
500                 if _ok_not_exists then 
501                   return (Some fname)
502               end
503         | `CANCEL -> return None
504         | `HELP -> ()
505         | `DELETE_EVENT -> return None));
506         (* menus *)
507       List.iter (fun w -> w#misc#set_sensitive false) [ main#saveMenuItem ];
508         (* console *)
509       let adj = main#logScrolledWin#vadjustment in
510         ignore (adj#connect#changed
511                 (fun _ -> adj#set_value (adj#upper -. adj#page_size)));
512       console#message (sprintf "\tMatita version %s\n" BuildTimeConf.version);
513         (* toolbar *)
514       let module A = GrafiteAst in
515       let hole = CicNotationPt.UserInput in
516       let loc = Disambiguate.dummy_floc in
517       let tac ast _ =
518         if (MatitaScript.instance ())#onGoingProof () then
519           (MatitaScript.instance ())#advance
520             ~statement:("\n" ^ GrafiteAstPp.pp_tactical (A.Tactic (loc, ast)))
521             ()
522       in
523       let tac_w_term ast _ =
524         if (MatitaScript.instance ())#onGoingProof () then
525           let buf = source_buffer in
526           buf#insert ~iter:(buf#get_iter_at_mark (`NAME "locked"))
527             ("\n" ^ GrafiteAstPp.pp_tactic ast)
528       in
529       let tbar = self#main in
530       connect_button tbar#introsButton (tac (A.Intros (loc, None, [])));
531       connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole)));
532       connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole)));
533       connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None, None, [])));
534       connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole, None, None, [])));
535       connect_button tbar#splitButton (tac (A.Split loc));
536       connect_button tbar#leftButton (tac (A.Left loc));
537       connect_button tbar#rightButton (tac (A.Right loc));
538       connect_button tbar#existsButton (tac (A.Exists loc));
539       connect_button tbar#reflexivityButton (tac (A.Reflexivity loc));
540       connect_button tbar#symmetryButton (tac (A.Symmetry loc));
541       connect_button tbar#transitivityButton
542         (tac_w_term (A.Transitivity (loc, hole)));
543       connect_button tbar#assumptionButton (tac (A.Assumption loc));
544       connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole)));
545       connect_button tbar#autoButton (tac (A.Auto (loc,None,None,None))); (* ALB *)
546       MatitaGtkMisc.toggle_widget_visibility
547        ~widget:(self#main#tacticsButtonsHandlebox :> GObj.widget)
548        ~check:self#main#tacticsBarMenuItem;
549       let module Hr = Helm_registry in
550       if
551         not (Hr.get_opt_default Hr.bool ~default:false "matita.tactics_bar")
552       then 
553         self#main#tacticsBarMenuItem#set_active false;
554       MatitaGtkMisc.toggle_callback 
555         ~callback:(function 
556           | true -> self#main#toplevel#fullscreen () 
557           | false -> self#main#toplevel#unfullscreen ())
558         ~check:self#main#fullscreenMenuItem;
559       self#main#fullscreenMenuItem#set_active false;
560         (* log *)
561       MatitaLog.set_log_callback self#console#log_callback;
562       GtkSignal.user_handler :=
563         (fun exn -> MatitaLog.error (MatitaExcPp.to_string exn));
564         (* script *)
565       let _ =
566         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
567         | None ->
568             MatitaLog.warn (sprintf "can't load language file %s"
569               BuildTimeConf.lang_file)
570         | Some matita_lang ->
571             source_buffer#set_language matita_lang;
572             source_buffer#set_highlight true
573       in
574       let s () = MatitaScript.instance () in
575       let disableSave () =
576         script_fname <- None;
577         self#main#saveMenuItem#misc#set_sensitive false
578       in
579       let saveAsScript () =
580         let script = s () in
581         match self#chooseFile ~ok_not_exists:true () with
582         | Some f -> 
583               script#assignFileName f;
584               script#saveToFile (); 
585               console#message ("'"^f^"' saved.\n");
586               self#_enableSaveTo f
587         | None -> ()
588       in
589       let saveScript () =
590         match script_fname with
591         | None -> saveAsScript ()
592         | Some f -> 
593               (s ())#assignFileName f;
594               (s ())#saveToFile ();
595               console#message ("'"^f^"' saved.\n");
596       in
597       let loadScript () =
598         let script = s () in 
599         let status = script#status in
600         try 
601           if source_view#buffer#modified then
602             begin
603               match ask_unsaved main#toplevel with
604               | `YES -> saveScript ()
605               | `NO -> ()
606               | `CANCEL -> raise MatitaTypes.Cancel
607             end;
608           (match script_fname with
609           | None -> ()
610           | Some fname -> 
611               ask_and_save_moo_if_needed main#toplevel fname status);
612           match self#chooseFile () with
613           | Some f -> 
614                 script#reset (); 
615                 script#assignFileName f;
616                 source_view#source_buffer#begin_not_undoable_action ();
617                 script#loadFromFile f; 
618                 source_view#source_buffer#end_not_undoable_action ();
619                 console#message ("'"^f^"' loaded.\n");
620                 self#_enableSaveTo f
621           | None -> ()
622         with MatitaTypes.Cancel -> ()
623       in
624       let newScript () = 
625         source_view#source_buffer#begin_not_undoable_action ();
626         (s ())#reset (); 
627         (s ())#template (); 
628         source_view#source_buffer#end_not_undoable_action ();
629         disableSave ();
630         script_fname <- None
631       in
632       let cursor () =
633         source_buffer#place_cursor
634           (source_buffer#get_iter_at_mark (`NAME "locked"));
635         source_view#misc#grab_focus ()
636       in
637       let advance _ = (MatitaScript.instance ())#advance (); cursor () in
638       let retract _ = (MatitaScript.instance ())#retract (); cursor () in
639       let top _ = (MatitaScript.instance ())#goto `Top (); cursor () in
640       let bottom _ = (MatitaScript.instance ())#goto `Bottom (); cursor () in
641       let jump _ = (MatitaScript.instance ())#goto `Cursor (); cursor () in
642       let advance = locker advance in
643       let retract = locker retract in
644       let top = locker top in
645       let bottom = locker bottom in
646       let jump = locker jump in
647       let connect_key sym f =
648         connect_key self#main#mainWinEventBox#event
649           ~modifiers:[`CONTROL] ~stop:true sym f;
650         connect_key self#sourceView#event
651           ~modifiers:[`CONTROL] ~stop:true sym f
652       in
653         (* quit *)
654       self#setQuitCallback (fun () -> 
655         let status = (MatitaScript.instance ())#status in
656         if source_view#buffer#modified then
657           begin
658             let rc = ask_unsaved main#toplevel in 
659             try
660               match rc with
661               | `YES -> saveScript ();
662                         if not source_view#buffer#modified then
663                           begin
664                             (match script_fname with
665                             | None -> ()
666                             | Some fname -> 
667                                ask_and_save_moo_if_needed 
668                                  main#toplevel fname status);
669                           GMain.Main.quit ()
670                           end
671               | `NO -> GMain.Main.quit ()
672               | `CANCEL -> raise MatitaTypes.Cancel
673             with MatitaTypes.Cancel -> ()
674           end 
675         else 
676           begin  
677             (match script_fname with
678             | None -> clean_current_baseuri status; GMain.Main.quit ()
679             | Some fname ->
680                 try
681                   ask_and_save_moo_if_needed main#toplevel fname status;
682                   GMain.Main.quit ()
683                 with MatitaTypes.Cancel -> ())
684           end);
685       connect_button self#main#scriptAdvanceButton advance;
686       connect_button self#main#scriptRetractButton retract;
687       connect_button self#main#scriptTopButton top;
688       connect_button self#main#scriptBottomButton bottom;
689       connect_key GdkKeysyms._Down advance;
690       connect_key GdkKeysyms._Up retract;
691       connect_key GdkKeysyms._Home top;
692       connect_key GdkKeysyms._End bottom;
693       connect_button self#main#scriptJumpButton jump;
694       connect_menu_item self#main#openMenuItem   loadScript;
695       connect_menu_item self#main#saveMenuItem   saveScript;
696       connect_menu_item self#main#saveAsMenuItem saveAsScript;
697       connect_menu_item self#main#newMenuItem    newScript;
698       connect_key GdkKeysyms._period
699         (fun () ->
700           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
701             ".\n";
702           advance ());
703       connect_key GdkKeysyms._Return
704         (fun () ->
705           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
706             "\n";
707           advance ());
708          (* script monospace font stuff *)  
709       self#updateFontSize ();
710         (* debug menu *)
711       self#main#debugMenu#misc#hide ();
712         (* status bar *)
713       self#main#hintLowImage#set_file (image_path "matita-bulb-low.png");
714       self#main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
715       self#main#hintHighImage#set_file (image_path "matita-bulb-high.png");
716         (* focus *)
717       self#sourceView#misc#grab_focus ();
718         (* main win dimension *)
719       let width = Gdk.Screen.width () in
720       let height = Gdk.Screen.height () in
721       let main_w = width * 90 / 100 in 
722       let main_h = height * 80 / 100 in
723       let script_w = main_w * 6 / 10 in
724       self#main#toplevel#resize ~width:main_w ~height:main_h;
725       self#main#hpaneScriptSequent#set_position script_w;
726         (* source_view *)
727       ignore(source_view#connect#after#paste_clipboard 
728         ~callback:(fun () -> (MatitaScript.instance ())#clean_dirty_lock))
729     
730     method loadScript file =       
731       let script = MatitaScript.instance () in
732       script#reset (); 
733       script#assignFileName file;
734       let content =
735        if Sys.file_exists file then file
736        else BuildTimeConf.script_template
737       in
738        source_view#source_buffer#begin_not_undoable_action ();
739        script#loadFromFile content;
740        source_view#source_buffer#end_not_undoable_action ();
741        console#message ("'"^file^"' loaded.");
742        self#_enableSaveTo file
743       
744     method setStar name b =
745       let l = main#scriptLabel in
746       if b then
747         l#set_text (name ^  " *")
748       else
749         l#set_text (name)
750         
751     method private _enableSaveTo file =
752       script_fname <- Some file;
753       self#main#saveMenuItem#misc#set_sensitive true
754         
755
756     method console = console
757     method sourceView: GSourceView.source_view = (source_view: GSourceView.source_view)
758     method fileSel = fileSel
759     method findRepl = findRepl
760     method main = main
761     method develList = develList
762     method newDevel = newDevel
763
764     method newBrowserWin () =
765       object (self)
766         inherit browserWin ()
767         val combo = GEdit.combo_box_entry ()
768         initializer
769           self#check_widgets ();
770           let combo_widget = combo#coerce in
771           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
772           combo#entry#misc#grab_focus ()
773         method browserUri = combo
774       end
775
776     method newUriDialog () =
777       let dialog = new uriChoiceDialog () in
778       dialog#check_widgets ();
779       dialog
780
781     method newInterpDialog () =
782       let dialog = new interpChoiceDialog () in
783       dialog#check_widgets ();
784       dialog
785
786     method newConfirmationDialog () =
787       let dialog = new confirmationDialog () in
788       dialog#check_widgets ();
789       dialog
790
791     method newEmptyDialog () =
792       let dialog = new emptyDialog () in
793       dialog#check_widgets ();
794       dialog
795
796     method private addKeyBinding key callback =
797       List.iter (fun evbox -> add_key_binding key callback evbox)
798         keyBindingBoxes
799
800     method setQuitCallback callback =
801       ignore (main#quitMenuItem#connect#activate callback);
802       ignore (main#toplevel#event#connect#delete 
803         (fun _ -> callback ();true));
804       self#addKeyBinding GdkKeysyms._q callback
805
806     method chooseFile ?(ok_not_exists = false) () =
807       _ok_not_exists <- ok_not_exists;
808       _only_directory <- false;
809       fileSel#fileSelectionWin#show ();
810       GtkThread.main ();
811       chosen_file
812
813     method private chooseDir ?(ok_not_exists = false) () =
814       _ok_not_exists <- ok_not_exists;
815       _only_directory <- true;
816       fileSel#fileSelectionWin#show ();
817       GtkThread.main ();
818       (* we should check that this is a directory *)
819       chosen_file
820   
821     method createDevelopment ~containing =
822       next_devel_must_contain <- containing;
823       newDevel#toplevel#misc#show()
824
825     method askText ?(title = "") ?(msg = "") () =
826       let dialog = new textDialog () in
827       dialog#textDialog#set_title title;
828       dialog#textDialogLabel#set_label msg;
829       let text = ref None in
830       let return v =
831         text := v;
832         dialog#textDialog#destroy ();
833         GMain.Main.quit ()
834       in
835       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
836       connect_button dialog#textDialogCancelButton (fun _ -> return None);
837       connect_button dialog#textDialogOkButton (fun _ ->
838         let text = dialog#textDialogTextView#buffer#get_text () in
839         return (Some text));
840       dialog#textDialog#show ();
841       GtkThread.main ();
842       !text
843
844     method private updateFontSize () =
845       self#sourceView#misc#modify_font_by_name
846         (sprintf "%s %d" BuildTimeConf.script_font font_size)
847
848     method increaseFontSize () =
849       font_size <- font_size + 1;
850       self#updateFontSize ()
851
852     method decreaseFontSize () =
853       font_size <- font_size - 1;
854       self#updateFontSize ()
855
856     method resetFontSize () =
857       font_size <- default_font_size;
858       self#updateFontSize ()
859
860   end
861
862 let gui () = 
863   let g = new gui () in
864   gui_instance := Some g;
865   g
866   
867 let instance = singleton gui
868
869 let non p x = not (p x)
870
871 (* this is a shit and should be changed :-{ *)
872 let interactive_uri_choice
873   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
874   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
875   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
876   ?copy_cb ()
877   ~id uris
878 =
879   let gui = instance () in
880   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
881   if (selection_mode <> `SINGLE) &&
882     (Helm_registry.get_bool "matita.auto_disambiguation")
883   then
884     Lazy.force nonvars_uris
885   else begin
886     let dialog = gui#newUriDialog () in
887     if hide_uri_entry then
888       dialog#uriEntryHBox#misc#hide ();
889     if hide_try then
890       begin
891       dialog#uriChoiceSelectedButton#misc#hide ();
892       dialog#uriChoiceConstantsButton#misc#hide ();
893       end;
894     dialog#okLabel#set_label ok_label;  
895     dialog#uriChoiceTreeView#selection#set_mode
896       (selection_mode :> Gtk.Tags.selection_mode);
897     let model = new stringListModel dialog#uriChoiceTreeView in
898     let choices = ref None in
899     let nonvars = ref false in
900     (match copy_cb with
901     | None -> ()
902     | Some cb ->
903         dialog#copyButton#misc#show ();
904         connect_button dialog#copyButton 
905         (fun _ ->
906           match model#easy_selection () with
907           | [u] -> (cb u)
908           | _ -> ()));
909     dialog#uriChoiceDialog#set_title title;
910     dialog#uriChoiceLabel#set_text msg;
911     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
912     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
913     let return v =
914       choices := v;
915       dialog#uriChoiceDialog#destroy ();
916       GMain.Main.quit ()
917     in
918     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
919     connect_button dialog#uriChoiceConstantsButton (fun _ ->
920       return (Some (Lazy.force nonvars_uris)));
921     if ok_action = `AUTO then
922       connect_button dialog#uriChoiceAutoButton (fun _ ->
923         Helm_registry.set_bool "matita.auto_disambiguation" true;
924         return (Some (Lazy.force nonvars_uris)))
925     else
926       connect_button dialog#uriChoiceAutoButton (fun _ ->
927         match model#easy_selection () with
928         | [] -> ()
929         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
930     connect_button dialog#uriChoiceSelectedButton (fun _ ->
931       match model#easy_selection () with
932       | [] -> ()
933       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
934     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
935     dialog#uriChoiceDialog#show ();
936     GtkThread.main ();
937     (match !choices with 
938     | None -> raise MatitaTypes.Cancel
939     | Some uris -> uris)
940   end
941
942 class interpModel =
943   let cols = new GTree.column_list in
944   let id_col = cols#add Gobject.Data.string in
945   let dsc_col = cols#add Gobject.Data.string in
946   let interp_no_col = cols#add Gobject.Data.int in
947   let tree_store = GTree.tree_store cols in
948   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
949   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
950   let id_view_col = GTree.view_column ~renderer:id_renderer () in
951   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
952   fun tree_view choices ->
953     object
954       initializer
955         tree_view#set_model (Some (tree_store :> GTree.model));
956         ignore (tree_view#append_column id_view_col);
957         ignore (tree_view#append_column dsc_view_col);
958         let name_of_interp =
959           (* try to find a reasonable name for an interpretation *)
960           let idx = ref 0 in
961           fun interp ->
962             try
963               List.assoc "0" interp
964             with Not_found ->
965               incr idx; string_of_int !idx
966         in
967         tree_store#clear ();
968         let idx = ref ~-1 in
969         List.iter
970           (fun interp ->
971             incr idx;
972             let interp_row = tree_store#append () in
973             tree_store#set ~row:interp_row ~column:id_col
974               (name_of_interp interp);
975             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
976             List.iter
977               (fun (id, dsc) ->
978                 let row = tree_store#append ~parent:interp_row () in
979                 tree_store#set ~row ~column:id_col id;
980                 tree_store#set ~row ~column:dsc_col dsc;
981                 tree_store#set ~row ~column:interp_no_col !idx)
982               interp)
983           choices
984
985       method get_interp_no tree_path =
986         let iter = tree_store#get_iter tree_path in
987         tree_store#get ~row:iter ~column:interp_no_col
988     end
989
990 let interactive_interp_choice () choices =
991   let gui = instance () in
992   assert (choices <> []);
993   let dialog = gui#newInterpDialog () in
994   let model = new interpModel dialog#interpChoiceTreeView choices in
995   let interp_len = List.length (List.hd choices) in
996   dialog#interpChoiceDialog#set_title "Interpretation choice";
997   dialog#interpChoiceDialogLabel#set_label "Choose an interpretation:";
998   let interp_no = ref None in
999   let return _ =
1000     dialog#interpChoiceDialog#destroy ();
1001     GMain.Main.quit ()
1002   in
1003   let fail _ = interp_no := None; return () in
1004   ignore (dialog#interpChoiceDialog#event#connect#delete (fun _ -> true));
1005   connect_button dialog#interpChoiceOkButton (fun _ ->
1006     match !interp_no with None -> () | Some _ -> return ());
1007   connect_button dialog#interpChoiceCancelButton fail;
1008   ignore (dialog#interpChoiceTreeView#connect#row_activated (fun path _ ->
1009     interp_no := Some (model#get_interp_no path);
1010     return ()));
1011   let selection = dialog#interpChoiceTreeView#selection in
1012   ignore (selection#connect#changed (fun _ ->
1013     match selection#get_selected_rows with
1014     | [path] ->
1015         MatitaLog.debug (sprintf "selection: %d" (model#get_interp_no path));
1016         interp_no := Some (model#get_interp_no path)
1017     | _ -> assert false));
1018   dialog#interpChoiceDialog#show ();
1019   GtkThread.main ();
1020   (match !interp_no with Some row -> [row] | _ -> raise MatitaTypes.Cancel)
1021