]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
New files AUTHORS and LICENSE.
[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 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#cutMenuItem#connect#activate
335         ~callback:(fun () -> source_view#buffer#cut_clipboard clipboard));
336       ignore(self#main#copyMenuItem#connect#activate
337         ~callback:(fun () -> source_view#buffer#copy_clipboard clipboard));
338       ignore(self#main#pasteMenuItem#connect#activate
339         ~callback:(fun () ->
340           source_view#buffer#paste_clipboard clipboard;
341           (MatitaScript.instance ())#clean_dirty_lock));
342       ignore(self#main#deleteMenuItem#connect#activate
343         ~callback:(fun () -> ignore (source_view#buffer#delete_selection ())));
344       ignore(self#main#findReplMenuItem#connect#activate
345         ~callback:show_find_Repl);
346       ignore (findRepl#findEntry#connect#activate ~callback:find_forward);
347         (* interface lockers *)
348       let lock_world _ =
349         main#buttonsToolbar#misc#set_sensitive false;
350         source_view#set_editable false
351       in
352       let unlock_world _ =
353         main#buttonsToolbar#misc#set_sensitive true;
354         source_view#set_editable true
355       in
356       let locker f = 
357         fun () -> 
358           lock_world ();
359           try f ();unlock_world () with exc -> unlock_world (); raise exc
360       in
361         (* developments win *)
362       let model = 
363         new MatitaGtkMisc.multiStringListModel 
364           ~cols:2 develList#developmentsTreeview
365       in
366       let refresh_devels_win () =
367         model#list_store#clear ();
368         List.iter 
369           (fun (name, root) -> model#easy_mappend [name;root]) 
370           (MatitamakeLib.list_known_developments ())
371       in
372       let get_devel_selected () = 
373         match model#easy_mselection () with
374         | [[name;_]] -> MatitamakeLib.development_for_name name
375         | _ -> assert false 
376       in
377       connect_button develList#newButton
378         (fun () -> 
379           next_devel_must_contain <- None;
380           newDevel#toplevel#misc#show());
381       connect_button develList#deleteButton
382         (fun () -> 
383           (match get_devel_selected () with
384           | None -> ()
385           | Some d -> MatitamakeLib.destroy_development d);
386           refresh_devels_win ());
387       let refresh () = 
388         while Glib.Main.pending () do 
389           ignore(Glib.Main.iteration false); 
390         done
391       in
392       connect_button develList#buildButton 
393         (fun () -> 
394           match get_devel_selected () with
395           | None -> ()
396           | Some d -> 
397               let build = locker 
398                 (fun () -> MatitamakeLib.build_development_in_bg refresh d)
399               in
400               ignore(build ()));
401       connect_button develList#cleanButton 
402         (fun () -> 
403           match get_devel_selected () with
404           | None -> ()
405           | Some d -> 
406               let clean = locker 
407                 (fun () -> MatitamakeLib.clean_development_in_bg refresh d)
408               in
409               ignore(clean ()));
410       connect_button develList#closeButton 
411         (fun () -> develList#toplevel#misc#hide());
412       ignore(develList#toplevel#event#connect#delete 
413         (fun _ -> develList#toplevel#misc#hide();true));
414       let selected_devel = ref None in
415       connect_menu_item self#main#developmentsMenuItem
416         (fun () -> refresh_devels_win ();develList#toplevel#misc#show ());
417       
418         (* add development win *)
419       let check_if_root_contains root =
420         match next_devel_must_contain with
421         | None -> true
422         | Some path -> 
423             let is_prefix_of d1 d2 =
424               let len1 = String.length d1 in
425               let len2 = String.length d2 in
426               if len2 < len1 then 
427                 false
428               else
429                 let pref = String.sub d2 0 len1 in
430                 pref = d1
431             in
432             is_prefix_of root path
433       in
434       connect_button newDevel#addButton 
435        (fun () -> 
436           let name = newDevel#nameEntry#text in
437           let root = newDevel#rootEntry#text in
438           if check_if_root_contains root then
439             begin
440               ignore (MatitamakeLib.initialize_development name root);
441               refresh_devels_win ();
442               newDevel#nameEntry#set_text "";
443               newDevel#rootEntry#set_text "";
444               newDevel#toplevel#misc#hide()
445             end
446           else
447             MatitaLog.error ("The selected root does not contain " ^ 
448               match next_devel_must_contain with 
449               | Some x -> x 
450               | _ -> assert false));
451       connect_button newDevel#chooseRootButton 
452        (fun () ->
453          let path = self#chooseDir () in
454          match path with
455          | Some path -> newDevel#rootEntry#set_text path
456          | None -> ());
457       connect_button newDevel#cancelButton 
458        (fun () -> newDevel#toplevel#misc#hide ());
459       ignore(newDevel#toplevel#event#connect#delete 
460         (fun _ -> newDevel#toplevel#misc#hide();true));
461       
462         (* file selection win *)
463       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
464       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
465         let return r =
466           chosen_file <- r;
467           fileSel#fileSelectionWin#misc#hide ();
468           GMain.Main.quit ()
469         in
470         match event with
471         | `OK ->
472             let fname = fileSel#fileSelectionWin#filename in
473             if Sys.file_exists fname then
474               begin
475                 if is_regular fname && not(_only_directory) then 
476                   return (Some fname) 
477                 else if _only_directory && is_dir fname then 
478                   return (Some fname)
479               end
480             else
481               begin
482                 if _ok_not_exists then 
483                   return (Some fname)
484               end
485         | `CANCEL -> return None
486         | `HELP -> ()
487         | `DELETE_EVENT -> return None));
488         (* menus *)
489       List.iter (fun w -> w#misc#set_sensitive false) [ main#saveMenuItem ];
490       main#helpMenu#set_right_justified true;
491         (* console *)
492       let adj = main#logScrolledWin#vadjustment in
493         ignore (adj#connect#changed
494                 (fun _ -> adj#set_value (adj#upper -. adj#page_size)));
495       console#message (sprintf "\tMatita version %s\n" BuildTimeConf.version);
496         (* toolbar *)
497       let module A = GrafiteAst in
498       let hole = CicNotationPt.UserInput in
499       let loc = Disambiguate.dummy_floc in
500       let tac ast _ =
501         if (MatitaScript.instance ())#onGoingProof () then
502           (MatitaScript.instance ())#advance
503             ~statement:("\n" ^ GrafiteAstPp.pp_tactical (A.Tactic (loc, ast)))
504             ()
505       in
506       let tac_w_term ast _ =
507         if (MatitaScript.instance ())#onGoingProof () then
508           let buf = source_buffer in
509           buf#insert ~iter:(buf#get_iter_at_mark (`NAME "locked"))
510             ("\n" ^ GrafiteAstPp.pp_tactic ast)
511       in
512       let tbar = self#main in
513       connect_button tbar#introsButton (tac (A.Intros (loc, None, [])));
514       connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole)));
515       connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole)));
516       connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None, None, [])));
517       connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole, None, None, [])));
518       connect_button tbar#splitButton (tac (A.Split loc));
519       connect_button tbar#leftButton (tac (A.Left loc));
520       connect_button tbar#rightButton (tac (A.Right loc));
521       connect_button tbar#existsButton (tac (A.Exists loc));
522       connect_button tbar#reflexivityButton (tac (A.Reflexivity loc));
523       connect_button tbar#symmetryButton (tac (A.Symmetry loc));
524       connect_button tbar#transitivityButton
525         (tac_w_term (A.Transitivity (loc, hole)));
526       connect_button tbar#assumptionButton (tac (A.Assumption loc));
527       connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole)));
528       connect_button tbar#autoButton (tac (A.Auto (loc,None,None)));
529       MatitaGtkMisc.toggle_widget_visibility
530        ~widget:(self#main#tacticsButtonsHandlebox :> GObj.widget)
531        ~check:self#main#tacticsBarMenuItem;
532       let module Hr = Helm_registry in
533       if
534         not (Hr.get_opt_default Hr.bool ~default:false "matita.tactics_bar")
535       then 
536         self#main#tacticsBarMenuItem#set_active false;
537       MatitaGtkMisc.toggle_callback 
538         ~callback:(function 
539           | true -> self#main#toplevel#fullscreen () 
540           | false -> self#main#toplevel#unfullscreen ())
541         ~check:self#main#fullscreenMenuItem;
542       self#main#fullscreenMenuItem#set_active false;
543         (* log *)
544       MatitaLog.set_log_callback self#console#log_callback;
545       GtkSignal.user_handler :=
546         (fun exn -> MatitaLog.error (MatitaExcPp.to_string exn));
547         (* script *)
548       let _ =
549         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
550         | None ->
551             MatitaLog.warn (sprintf "can't load language file %s"
552               BuildTimeConf.lang_file)
553         | Some matita_lang ->
554             source_buffer#set_language matita_lang;
555             source_buffer#set_highlight true
556       in
557       let s () = MatitaScript.instance () in
558       let disableSave () =
559         script_fname <- None;
560         self#main#saveMenuItem#misc#set_sensitive false
561       in
562       let saveAsScript () =
563         let script = s () in
564         match self#chooseFile ~ok_not_exists:true () with
565         | Some f -> 
566               script#assignFileName f;
567               script#saveToFile (); 
568               console#message ("'"^f^"' saved.\n");
569               self#_enableSaveTo f
570         | None -> ()
571       in
572       let saveScript () =
573         match script_fname with
574         | None -> saveAsScript ()
575         | Some f -> 
576               (s ())#assignFileName f;
577               (s ())#saveToFile ();
578               console#message ("'"^f^"' saved.\n");
579       in
580       let loadScript () =
581         let script = s () in 
582         let status = script#status in
583         try 
584           if source_view#buffer#modified then
585             begin
586               match ask_unsaved main#toplevel with
587               | `YES -> saveScript ()
588               | `NO -> ()
589               | `CANCEL -> raise MatitaTypes.Cancel
590             end;
591           (match script_fname with
592           | None -> ()
593           | Some fname -> 
594               ask_and_save_moo_if_needed main#toplevel fname status);
595           match self#chooseFile () with
596           | Some f -> 
597                 script#reset (); 
598                 script#assignFileName f;
599                 source_view#source_buffer#begin_not_undoable_action ();
600                 script#loadFromFile (); 
601                 source_view#source_buffer#end_not_undoable_action ();
602                 console#message ("'"^f^"' loaded.\n");
603                 self#_enableSaveTo f
604           | None -> ()
605         with MatitaTypes.Cancel -> ()
606       in
607       let newScript () = 
608         source_view#source_buffer#begin_not_undoable_action ();
609         (s ())#reset (); 
610         (s ())#template (); 
611         source_view#source_buffer#end_not_undoable_action ();
612         disableSave ();
613         script_fname <- None
614       in
615       let cursor () =
616         source_buffer#place_cursor
617           (source_buffer#get_iter_at_mark (`NAME "locked"))
618       in
619       let advance _ = (MatitaScript.instance ())#advance (); cursor () in
620       let retract _ = (MatitaScript.instance ())#retract (); cursor () in
621       let top _ = (MatitaScript.instance ())#goto `Top (); cursor () in
622       let bottom _ = (MatitaScript.instance ())#goto `Bottom (); cursor () in
623       let jump _ = (MatitaScript.instance ())#goto `Cursor (); cursor () in
624       let advance = locker advance in
625       let retract = locker retract in
626       let top = locker top in
627       let bottom = locker bottom in
628       let jump = locker jump in
629       let connect_key sym f =
630         connect_key self#main#mainWinEventBox#event
631           ~modifiers:[`CONTROL] ~stop:true sym f;
632         connect_key self#sourceView#event
633           ~modifiers:[`CONTROL] ~stop:true sym f
634       in
635         (* quit *)
636       self#setQuitCallback (fun () -> 
637         let status = (MatitaScript.instance ())#status in
638         if source_view#buffer#modified then
639           begin
640             let rc = ask_unsaved main#toplevel in 
641             try
642               match rc with
643               | `YES -> saveScript ();
644                         if not source_view#buffer#modified then
645                           begin
646                             (match script_fname with
647                             | None -> ()
648                             | Some fname -> 
649                                ask_and_save_moo_if_needed 
650                                  main#toplevel fname status);
651                           GMain.Main.quit ()
652                           end
653               | `NO -> GMain.Main.quit ()
654               | `CANCEL -> raise MatitaTypes.Cancel
655             with MatitaTypes.Cancel -> ()
656           end 
657         else 
658           begin  
659             (match script_fname with
660             | None -> clean_current_baseuri status; GMain.Main.quit ()
661             | Some fname ->
662                 try
663                   ask_and_save_moo_if_needed main#toplevel fname status;
664                   GMain.Main.quit ()
665                 with MatitaTypes.Cancel -> ())
666           end);
667       connect_button self#main#scriptAdvanceButton advance;
668       connect_button self#main#scriptRetractButton retract;
669       connect_button self#main#scriptTopButton top;
670       connect_button self#main#scriptBottomButton bottom;
671       connect_key GdkKeysyms._Down advance;
672       connect_key GdkKeysyms._Up retract;
673       connect_key GdkKeysyms._Home top;
674       connect_key GdkKeysyms._End bottom;
675       connect_button self#main#scriptJumpButton jump;
676       connect_menu_item self#main#openMenuItem   loadScript;
677       connect_menu_item self#main#saveMenuItem   saveScript;
678       connect_menu_item self#main#saveAsMenuItem saveAsScript;
679       connect_menu_item self#main#newMenuItem    newScript;
680       connect_key GdkKeysyms._period
681         (fun () ->
682           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
683             ".\n";
684           advance ());
685       connect_key GdkKeysyms._Return
686         (fun () ->
687           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
688             "\n";
689           advance ());
690          (* script monospace font stuff *)  
691       self#updateFontSize ();
692         (* debug menu *)
693       self#main#debugMenu#misc#hide ();
694         (* status bar *)
695       self#main#hintLowImage#set_file (image_path "matita-bulb-low.png");
696       self#main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
697       self#main#hintHighImage#set_file (image_path "matita-bulb-high.png");
698         (* focus *)
699       self#sourceView#misc#grab_focus ();
700         (* main win dimension *)
701       let width = Gdk.Screen.width () in
702       let height = Gdk.Screen.height () in
703       let main_w = width * 90 / 100 in 
704       let main_h = height * 80 / 100 in
705       let script_w = main_w * 6 / 10 in
706       self#main#toplevel#resize ~width:main_w ~height:main_h;
707       self#main#hpaneScriptSequent#set_position script_w;
708         (* source_view *)
709       ignore(source_view#connect#after#paste_clipboard 
710         ~callback:(fun () -> (MatitaScript.instance ())#clean_dirty_lock))
711     
712     method loadScript file =       
713       let script = MatitaScript.instance () in
714       script#reset (); 
715       script#assignFileName file;
716       if not (Sys.file_exists file) then
717         begin
718           let oc = open_out file in
719           let template = MatitaMisc.input_file BuildTimeConf.script_template in 
720           output_string oc template;
721           close_out oc
722         end;
723       source_view#source_buffer#begin_not_undoable_action ();
724       script#loadFromFile ();
725       source_view#source_buffer#end_not_undoable_action ();
726       console#message ("'"^file^"' loaded.");
727       self#_enableSaveTo file
728       
729     method setStar name b =
730       let l = main#scriptLabel in
731       if b then
732         l#set_text (name ^  " *")
733       else
734         l#set_text (name)
735         
736     method private _enableSaveTo file =
737       script_fname <- Some file;
738       self#main#saveMenuItem#misc#set_sensitive true
739         
740
741     method console = console
742     method sourceView: GSourceView.source_view = (source_view: GSourceView.source_view)
743     method fileSel = fileSel
744     method findRepl = findRepl
745     method main = main
746     method develList = develList
747     method newDevel = newDevel
748
749     method newBrowserWin () =
750       object (self)
751         inherit browserWin ()
752         val combo = GEdit.combo_box_entry ()
753         initializer
754           self#check_widgets ();
755           let combo_widget = combo#coerce in
756           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
757           combo#entry#misc#grab_focus ()
758         method browserUri = combo
759       end
760
761     method newUriDialog () =
762       let dialog = new uriChoiceDialog () in
763       dialog#check_widgets ();
764       dialog
765
766     method newInterpDialog () =
767       let dialog = new interpChoiceDialog () in
768       dialog#check_widgets ();
769       dialog
770
771     method newConfirmationDialog () =
772       let dialog = new confirmationDialog () in
773       dialog#check_widgets ();
774       dialog
775
776     method newEmptyDialog () =
777       let dialog = new emptyDialog () in
778       dialog#check_widgets ();
779       dialog
780
781     method private addKeyBinding key callback =
782       List.iter (fun evbox -> add_key_binding key callback evbox)
783         keyBindingBoxes
784
785     method setQuitCallback callback =
786       ignore (main#quitMenuItem#connect#activate callback);
787       ignore (main#toplevel#event#connect#delete 
788         (fun _ -> callback ();true));
789       self#addKeyBinding GdkKeysyms._q callback
790
791     method chooseFile ?(ok_not_exists = false) () =
792       _ok_not_exists <- ok_not_exists;
793       _only_directory <- false;
794       fileSel#fileSelectionWin#show ();
795       GtkThread.main ();
796       chosen_file
797
798     method private chooseDir ?(ok_not_exists = false) () =
799       _ok_not_exists <- ok_not_exists;
800       _only_directory <- true;
801       fileSel#fileSelectionWin#show ();
802       GtkThread.main ();
803       (* we should check that this is a directory *)
804       chosen_file
805   
806     method createDevelopment ~containing =
807       next_devel_must_contain <- containing;
808       newDevel#toplevel#misc#show()
809
810     method askText ?(title = "") ?(msg = "") () =
811       let dialog = new textDialog () in
812       dialog#textDialog#set_title title;
813       dialog#textDialogLabel#set_label msg;
814       let text = ref None in
815       let return v =
816         text := v;
817         dialog#textDialog#destroy ();
818         GMain.Main.quit ()
819       in
820       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
821       connect_button dialog#textDialogCancelButton (fun _ -> return None);
822       connect_button dialog#textDialogOkButton (fun _ ->
823         let text = dialog#textDialogTextView#buffer#get_text () in
824         return (Some text));
825       dialog#textDialog#show ();
826       GtkThread.main ();
827       !text
828
829     method private updateFontSize () =
830       self#sourceView#misc#modify_font_by_name
831         (sprintf "%s %d" BuildTimeConf.script_font font_size)
832
833     method increaseFontSize () =
834       font_size <- font_size + 1;
835       self#updateFontSize ()
836
837     method decreaseFontSize () =
838       font_size <- font_size - 1;
839       self#updateFontSize ()
840
841     method resetFontSize () =
842       font_size <- default_font_size;
843       self#updateFontSize ()
844
845   end
846
847 let gui () = 
848   let g = new gui () in
849   gui_instance := Some g;
850   g
851   
852 let instance = singleton gui
853
854 let non p x = not (p x)
855
856 (* this is a shit and should be changed :-{ *)
857 let interactive_uri_choice
858   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
859   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
860   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
861   ?copy_cb ()
862   ~id uris
863 =
864   let gui = instance () in
865   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
866   if (selection_mode <> `SINGLE) &&
867     (Helm_registry.get_bool "matita.auto_disambiguation")
868   then
869     Lazy.force nonvars_uris
870   else begin
871     let dialog = gui#newUriDialog () in
872     if hide_uri_entry then
873       dialog#uriEntryHBox#misc#hide ();
874     if hide_try then
875       begin
876       dialog#uriChoiceSelectedButton#misc#hide ();
877       dialog#uriChoiceConstantsButton#misc#hide ();
878       end;
879     dialog#okLabel#set_label ok_label;  
880     dialog#uriChoiceTreeView#selection#set_mode
881       (selection_mode :> Gtk.Tags.selection_mode);
882     let model = new stringListModel dialog#uriChoiceTreeView in
883     let choices = ref None in
884     let nonvars = ref false in
885     (match copy_cb with
886     | None -> ()
887     | Some cb ->
888         dialog#copyButton#misc#show ();
889         connect_button dialog#copyButton 
890         (fun _ ->
891           match model#easy_selection () with
892           | [u] -> (cb u)
893           | _ -> ()));
894     dialog#uriChoiceDialog#set_title title;
895     dialog#uriChoiceLabel#set_text msg;
896     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
897     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
898     let return v =
899       choices := v;
900       dialog#uriChoiceDialog#destroy ();
901       GMain.Main.quit ()
902     in
903     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
904     connect_button dialog#uriChoiceConstantsButton (fun _ ->
905       return (Some (Lazy.force nonvars_uris)));
906     if ok_action = `AUTO then
907       connect_button dialog#uriChoiceAutoButton (fun _ ->
908         Helm_registry.set_bool "matita.auto_disambiguation" true;
909         return (Some (Lazy.force nonvars_uris)))
910     else
911       connect_button dialog#uriChoiceAutoButton (fun _ ->
912         match model#easy_selection () with
913         | [] -> ()
914         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
915     connect_button dialog#uriChoiceSelectedButton (fun _ ->
916       match model#easy_selection () with
917       | [] -> ()
918       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
919     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
920     dialog#uriChoiceDialog#show ();
921     GtkThread.main ();
922     (match !choices with 
923     | None -> raise MatitaTypes.Cancel
924     | Some uris -> uris)
925   end
926
927 class interpModel =
928   let cols = new GTree.column_list in
929   let id_col = cols#add Gobject.Data.string in
930   let dsc_col = cols#add Gobject.Data.string in
931   let interp_no_col = cols#add Gobject.Data.int in
932   let tree_store = GTree.tree_store cols in
933   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
934   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
935   let id_view_col = GTree.view_column ~renderer:id_renderer () in
936   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
937   fun tree_view choices ->
938     object
939       initializer
940         tree_view#set_model (Some (tree_store :> GTree.model));
941         ignore (tree_view#append_column id_view_col);
942         ignore (tree_view#append_column dsc_view_col);
943         let name_of_interp =
944           (* try to find a reasonable name for an interpretation *)
945           let idx = ref 0 in
946           fun interp ->
947             try
948               List.assoc "0" interp
949             with Not_found ->
950               incr idx; string_of_int !idx
951         in
952         tree_store#clear ();
953         let idx = ref ~-1 in
954         List.iter
955           (fun interp ->
956             incr idx;
957             let interp_row = tree_store#append () in
958             tree_store#set ~row:interp_row ~column:id_col
959               (name_of_interp interp);
960             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
961             List.iter
962               (fun (id, dsc) ->
963                 let row = tree_store#append ~parent:interp_row () in
964                 tree_store#set ~row ~column:id_col id;
965                 tree_store#set ~row ~column:dsc_col dsc;
966                 tree_store#set ~row ~column:interp_no_col !idx)
967               interp)
968           choices
969
970       method get_interp_no tree_path =
971         let iter = tree_store#get_iter tree_path in
972         tree_store#get ~row:iter ~column:interp_no_col
973     end
974
975 let interactive_interp_choice () choices =
976   let gui = instance () in
977   assert (choices <> []);
978   let dialog = gui#newInterpDialog () in
979   let model = new interpModel dialog#interpChoiceTreeView choices in
980   let interp_len = List.length (List.hd choices) in
981   dialog#interpChoiceDialog#set_title "Interpretation choice";
982   dialog#interpChoiceDialogLabel#set_label "Choose an interpretation:";
983   let interp_no = ref None in
984   let return _ =
985     dialog#interpChoiceDialog#destroy ();
986     GMain.Main.quit ()
987   in
988   let fail _ = interp_no := None; return () in
989   ignore (dialog#interpChoiceDialog#event#connect#delete (fun _ -> true));
990   connect_button dialog#interpChoiceOkButton (fun _ ->
991     match !interp_no with None -> () | Some _ -> return ());
992   connect_button dialog#interpChoiceCancelButton fail;
993   ignore (dialog#interpChoiceTreeView#connect#row_activated (fun path _ ->
994     interp_no := Some (model#get_interp_no path);
995     return ()));
996   let selection = dialog#interpChoiceTreeView#selection in
997   ignore (selection#connect#changed (fun _ ->
998     match selection#get_selected_rows with
999     | [path] ->
1000         MatitaLog.debug (sprintf "selection: %d" (model#get_interp_no path));
1001         interp_no := Some (model#get_interp_no path)
1002     | _ -> assert false));
1003   dialog#interpChoiceDialog#show ();
1004   GtkThread.main ();
1005   (match !interp_no with Some row -> [row] | _ -> raise MatitaTypes.Cancel)
1006