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