]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaGui.ml
moved the high level pretty printing setting to a toggle menu item of the View menu...
[helm.git] / 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 (* $Id$ *)
27
28 open Printf
29
30 open MatitaGeneratedGui
31 open MatitaGtkMisc
32 open MatitaMisc
33
34 exception Found of int
35
36 let gui_instance = ref None
37
38 class type browserWin =
39   (* this class exists only because GEdit.combo_box_entry is not supported by
40    * lablgladecc :-(((( *)
41 object
42   inherit MatitaGeneratedGui.browserWin
43   method browserUri: GEdit.combo_box_entry
44 end
45
46 class console ~(buffer: GText.buffer) () =
47   object (self)
48     val error_tag   = buffer#create_tag [ `FOREGROUND "red" ]
49     val warning_tag = buffer#create_tag [ `FOREGROUND "orange" ]
50     val message_tag = buffer#create_tag []
51     val debug_tag   = buffer#create_tag [ `FOREGROUND "#888888" ]
52     method message s = buffer#insert ~iter:buffer#end_iter ~tags:[message_tag] s
53     method error s   = buffer#insert ~iter:buffer#end_iter ~tags:[error_tag] s
54     method warning s = buffer#insert ~iter:buffer#end_iter ~tags:[warning_tag] s
55     method debug s   = buffer#insert ~iter:buffer#end_iter ~tags:[debug_tag] s
56     method clear () =
57       buffer#delete ~start:buffer#start_iter ~stop:buffer#end_iter
58     method log_callback (tag: HLog.log_tag) s =
59       match tag with
60       | `Debug -> self#debug (s ^ "\n")
61       | `Error -> self#error (s ^ "\n")
62       | `Message -> self#message (s ^ "\n")
63       | `Warning -> self#warning (s ^ "\n")
64   end
65         
66 let clean_current_baseuri grafite_status = 
67     try  
68       let baseuri = GrafiteTypes.get_string_option grafite_status "baseuri" in
69       LibraryClean.clean_baseuris [baseuri]
70     with GrafiteTypes.Option_error _ -> ()
71
72 let ask_and_save_moo_if_needed parent fname lexicon_status grafite_status = 
73   let baseuri =
74    try Some (GrafiteTypes.get_string_option grafite_status "baseuri")
75    with GrafiteTypes.Option_error _ -> None
76   in
77   if (MatitaScript.current ())#eos &&
78      grafite_status.GrafiteTypes.proof_status = GrafiteTypes.No_proof &&
79      baseuri <> None
80   then
81    begin
82     let baseuri = match baseuri with Some b -> b | None -> assert false in
83     let moo_fname = 
84      LibraryMisc.obj_file_of_baseuri ~must_exist:false ~baseuri
85       ~writable:true in
86     let save () =
87       let metadata_fname =
88        LibraryMisc.metadata_file_of_baseuri 
89          ~must_exist:false ~baseuri ~writable:true in
90       let lexicon_fname =
91        LibraryMisc.lexicon_file_of_baseuri 
92          ~must_exist:false ~baseuri ~writable:true
93       in
94        GrafiteMarshal.save_moo moo_fname
95         grafite_status.GrafiteTypes.moo_content_rev;
96        LibraryNoDb.save_metadata metadata_fname
97         lexicon_status.LexiconEngine.metadata;
98        LexiconMarshal.save_lexicon lexicon_fname
99         lexicon_status.LexiconEngine.lexicon_content_rev
100     in
101      begin
102        let rc = 
103          MatitaGtkMisc.ask_confirmation
104          ~title:"A .moo can be generated"
105          ~message:(Printf.sprintf 
106            "%s can be generated for %s.\n<i>Should I generate it?</i>"
107            (Filename.basename moo_fname) (Filename.basename fname))
108          ~parent ()
109        in
110        let b = 
111          match rc with 
112          | `YES -> true 
113          | `NO -> false 
114          | `CANCEL -> raise MatitaTypes.Cancel 
115        in
116        if b then
117            save ()
118        else
119          clean_current_baseuri grafite_status
120      end
121    end
122   else
123     clean_current_baseuri grafite_status 
124     
125 let ask_unsaved parent =
126   MatitaGtkMisc.ask_confirmation 
127     ~parent ~title:"Unsaved work!" 
128     ~message:("Your work is <b>unsaved</b>!\n\n"^
129          "<i>Do you want to save the script before continuing?</i>")
130     ()
131
132 class interpErrorModel =
133   let cols = new GTree.column_list in
134   let id_col = cols#add Gobject.Data.string in
135   let dsc_col = cols#add Gobject.Data.string in
136   let interp_no_col = cols#add Gobject.Data.caml in
137   let tree_store = GTree.tree_store cols in
138   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
139   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
140   let id_view_col = GTree.view_column ~renderer:id_renderer () in
141   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
142   fun (tree_view: GTree.view) choices ->
143     object
144       initializer
145         tree_view#set_model (Some (tree_store :> GTree.model));
146         ignore (tree_view#append_column id_view_col);
147         ignore (tree_view#append_column dsc_view_col);
148         tree_store#clear ();
149         let idx1 = ref ~-1 in
150         List.iter
151           (fun _,lll ->
152             incr idx1;
153             let loc_row =
154              if List.length choices = 1 then
155               None
156              else
157               (let loc_row = tree_store#append () in
158                 begin
159                  match lll with
160                     [passes,envs_and_diffs,_,_] ->
161                       tree_store#set ~row:loc_row ~column:id_col
162                        ("Error location " ^ string_of_int (!idx1+1) ^
163                         ", error message " ^ string_of_int (!idx1+1) ^ ".1" ^
164                         " (in passes " ^
165                         String.concat " " (List.map string_of_int passes) ^
166                         ")");
167                       tree_store#set ~row:loc_row ~column:interp_no_col
168                        (!idx1,Some 0,None);
169                   | _ ->
170                     tree_store#set ~row:loc_row ~column:id_col
171                      ("Error location " ^ string_of_int (!idx1+1));
172                     tree_store#set ~row:loc_row ~column:interp_no_col
173                      (!idx1,None,None);
174                 end ;
175                 Some loc_row) in
176             let idx2 = ref ~-1 in
177              List.iter
178               (fun passes,envs_and_diffs,_,_ ->
179                 incr idx2;
180                 let msg_row =
181                  if List.length lll = 1 then
182                   loc_row
183                  else
184                   let msg_row = tree_store#append ?parent:loc_row () in
185                    (tree_store#set ~row:msg_row ~column:id_col
186                      ("Error message " ^ string_of_int (!idx1+1) ^ "." ^
187                       string_of_int (!idx2+1) ^
188                       " (in passes " ^
189                       String.concat " " (List.map string_of_int passes) ^
190                       ")");
191                     tree_store#set ~row:msg_row ~column:interp_no_col
192                      (!idx1,Some !idx2,None);
193                     Some msg_row) in
194                 let idx3 = ref ~-1 in
195                 List.iter
196                  (fun (passes,env,_) ->
197                    incr idx3;
198                    let interp_row =
199                     match envs_and_diffs with
200                        _::_::_ ->
201                         let interp_row = tree_store#append ?parent:msg_row () in
202                         tree_store#set ~row:interp_row ~column:id_col
203                           ("Interpretation " ^ string_of_int (!idx3+1) ^
204                            " (in passes " ^
205                            String.concat " " (List.map string_of_int passes) ^
206                            ")");
207                         tree_store#set ~row:interp_row ~column:interp_no_col
208                          (!idx1,Some !idx2,Some !idx3);
209                         Some interp_row
210                      | [_] -> msg_row
211                      | [] -> assert false
212                    in
213                     List.iter
214                      (fun (_, id, dsc) ->
215                        let row = tree_store#append ?parent:interp_row () in
216                        tree_store#set ~row ~column:id_col id;
217                        tree_store#set ~row ~column:dsc_col dsc;
218                        tree_store#set ~row ~column:interp_no_col
219                         (!idx1,Some !idx2,Some !idx3)
220                      ) env
221                  ) envs_and_diffs
222               ) lll ;
223              if List.length lll > 1 then
224               HExtlib.iter_option
225                (fun p -> tree_view#expand_row (tree_store#get_path p))
226                loc_row
227           ) choices
228
229       method get_interp_no tree_path =
230         let iter = tree_store#get_iter tree_path in
231         tree_store#get ~row:iter ~column:interp_no_col
232     end
233
234
235 let rec interactive_error_interp ?(all_passes=false) (source_buffer:GSourceView.source_buffer) notify_exn offset errorll
236
237   assert (List.flatten errorll <> []);
238   let errorll' =
239    let remove_non_significant =
240      List.filter (fun (_env,_diff,_loc,_msg,significant) -> significant) in
241    if all_passes then errorll else
242      let safe_list_nth l n = try List.nth l n with Failure _ -> [] in
243     (* We remove passes 1,2 and 5,6 *)
244      let res =
245       []::[]
246       ::(remove_non_significant (safe_list_nth errorll 2))
247       ::(remove_non_significant (safe_list_nth errorll 3))
248       ::[]::[]
249      in
250       if List.flatten res <> [] then res
251       else
252        (* all errors (if any) are not significant: we keep them *)
253        let res =
254         []::[]
255         ::(safe_list_nth errorll 2)
256         ::(safe_list_nth errorll 3)
257         ::[]::[]
258        in
259         if List.flatten res <> [] then
260          begin
261           HLog.warn
262            "All disambiguation errors are not significant. Showing them anyway." ;
263           res
264          end
265         else
266          begin
267           HLog.warn
268            "No errors in phases 2 and 3. Showing all errors in all phases" ;
269           errorll
270          end
271    in
272   let choices =
273    let pass = ref 0 in
274    List.flatten
275     (List.map
276       (fun l ->
277         incr pass;
278         List.map
279          (fun (env,diff,offset,msg,significant) ->
280            offset, [[!pass], [[!pass], env, diff], msg, significant]) l
281       ) errorll') in
282   (* Here we are doing a stable sort and list_uniq returns the latter
283      "equal" element. I.e. we are showing the error corresponding to the
284      most advanced disambiguation pass *)
285   let choices =
286    let choices_compare (o1,_) (o2,_) = compare o1 o2 in
287    let choices_compare_by_passes (p1,_,_,_) (p2,_,_,_) =
288     compare p1 p2 in
289    let rec uniq =
290     function
291        [] -> []
292      | h::[] -> [h]
293      | (o1,res1)::(o2,res2)::tl when o1 = o2 ->
294         let merge_by_name errors =
295          let merge_by_env errors =
296           let choices_compare_by_env (_,e1,_) (_,e2,_) = compare e1 e2 in
297           let choices_compare_by_passes (p1,_,_) (p2,_,_) =
298            compare p1 p2 in
299           let rec uniq_by_env =
300            function
301               [] -> []
302             | h::[] -> [h]
303             | (p1,e1,_)::(p2,e2,d2)::tl when e1 = e2 ->
304                 uniq_by_env ((p1@p2,e2,d2) :: tl) 
305             | h1::tl -> h1 :: uniq_by_env tl
306           in
307            List.sort choices_compare_by_passes
308             (uniq_by_env (List.stable_sort choices_compare_by_env errors))
309          in
310          let choices_compare_by_msg (_,_,m1,_) (_,_,m2,_) =
311           compare (Lazy.force m1) (Lazy.force m2) in
312          let rec uniq_by_msg =
313           function
314              [] -> []
315            | h::[] -> [h]
316            | (p1,i1,m1,s1)::(p2,i2,m2,s2)::tl
317              when Lazy.force m1 = Lazy.force m2 && s1 = s2 ->
318                uniq_by_msg ((p1@p2,merge_by_env (i1@i2),m2,s2) :: tl)
319            | h1::tl -> h1 :: uniq_by_msg tl
320          in
321           List.sort choices_compare_by_msg
322            (uniq_by_msg (List.stable_sort choices_compare_by_msg errors))
323         in
324          let res = merge_by_name (res1@res2) in
325           uniq ((o1,res) :: tl)
326      | h1::tl -> h1 :: uniq tl
327    in
328    (* Errors in phase 3 that are not also in phase 4 are filtered out *)
329    let filter_phase_3 choices =
330     if all_passes then choices
331     else
332      let filter =
333       HExtlib.filter_map
334        (function
335            (loffset,messages) ->
336               let filtered_messages =
337                HExtlib.filter_map
338                 (function
339                     [3],_,_,_ -> None
340                   | item -> Some item
341                 ) messages
342               in
343                if filtered_messages = [] then
344                 None
345                else
346                 Some (loffset,filtered_messages))
347      in
348       filter choices
349    in
350     filter_phase_3
351      (List.map (fun o,l -> o,List.sort choices_compare_by_passes l)
352        (uniq (List.stable_sort choices_compare choices)))
353   in
354    match choices with
355       [] -> assert false
356     | [loffset,[_,envs_and_diffs,msg,significant]] ->
357         let _,env,diff = List.hd envs_and_diffs in
358          notify_exn
359           (GrafiteDisambiguator.DisambiguationError
360             (offset,[[env,diff,loffset,msg,significant]]));
361     | _::_ ->
362        let dialog = new disambiguationErrors () in
363        dialog#check_widgets ();
364        if all_passes then
365         dialog#disambiguationErrorsMoreErrors#misc#set_sensitive false;
366        let model = new interpErrorModel dialog#treeview choices in
367        dialog#disambiguationErrors#set_title "Disambiguation error";
368        dialog#disambiguationErrorsLabel#set_label
369         "Click on an error to see the corresponding message:";
370        ignore (dialog#treeview#connect#cursor_changed
371         (fun _ ->
372           let tree_path =
373            match fst (dialog#treeview#get_cursor ()) with
374               None -> assert false
375            | Some tp -> tp in
376           let idx1,idx2,idx3 = model#get_interp_no tree_path in
377           let loffset,lll = List.nth choices idx1 in
378           let _,envs_and_diffs,msg,significant =
379            match idx2 with
380               Some idx2 -> List.nth lll idx2
381             | None ->
382                 [],[],lazy "Multiple error messages. Please select one.",true
383           in
384           let _,env,diff =
385            match idx3 with
386               Some idx3 -> List.nth envs_and_diffs idx3
387             | None -> [],[],[] (* dymmy value, used *) in
388           let script = MatitaScript.current () in
389           let error_tag = script#error_tag in
390            source_buffer#remove_tag error_tag
391              ~start:source_buffer#start_iter
392              ~stop:source_buffer#end_iter;
393            notify_exn
394             (GrafiteDisambiguator.DisambiguationError
395               (offset,[[env,diff,loffset,msg,significant]]))
396            ));
397        let return _ =
398          dialog#disambiguationErrors#destroy ();
399          GMain.Main.quit ()
400        in
401        let fail _ = return () in
402        ignore(dialog#disambiguationErrors#event#connect#delete (fun _ -> true));
403        connect_button dialog#disambiguationErrorsOkButton
404         (fun _ ->
405           let tree_path =
406            match fst (dialog#treeview#get_cursor ()) with
407               None -> assert false
408            | Some tp -> tp in
409           let idx1,idx2,idx3 = model#get_interp_no tree_path in
410           let diff =
411            match idx2,idx3 with
412               Some idx2, Some idx3 ->
413                let _,lll = List.nth choices idx1 in
414                let _,envs_and_diffs,_,_ = List.nth lll idx2 in
415                let _,_,diff = List.nth envs_and_diffs idx3 in
416                 diff
417             | _,_ -> assert false
418           in
419            let newtxt =
420             String.concat "\n"
421              ("" ::
422                List.map
423                 (fun k,value ->
424                   DisambiguatePp.pp_environment
425                    (DisambiguateTypes.Environment.add k value
426                      DisambiguateTypes.Environment.empty))
427                 diff) ^ "\n"
428            in
429             source_buffer#insert
430              ~iter:
431                (source_buffer#get_iter_at_mark
432                 (`NAME "beginning_of_statement")) newtxt ;
433             return ()
434         );
435        connect_button dialog#disambiguationErrorsMoreErrors
436         (fun _ -> return () ;
437           interactive_error_interp ~all_passes:true source_buffer notify_exn offset
438            errorll);
439        connect_button dialog#disambiguationErrorsCancelButton fail;
440        dialog#disambiguationErrors#show ();
441        GtkThread.main ()
442
443
444 (** Selection handling
445  * Two clipboards are used: "clipboard" and "primary".
446  * "primary" is used by X, when you hit the middle button mouse is content is
447  *    pasted between applications. In Matita this selection always contain the
448  *    textual version of the selected term.
449  * "clipboard" is used inside Matita only and support ATM two different targets:
450  *    "TERM" and "PATTERN", in the future other targets like "MATHMLCONTENT" may
451  *    be added
452  *)
453
454 class gui () =
455     (* creation order _is_ relevant for windows placement *)
456   let main = new mainWin () in
457   let fileSel = new fileSelectionWin () in
458   let findRepl = new findReplWin () in
459   let develList = new develListWin () in
460   let newDevel = new newDevelWin () in
461   let keyBindingBoxes = (* event boxes which should receive global key events *)
462     [ main#mainWinEventBox ]
463   in
464   let console = new console ~buffer:main#logTextView#buffer () in
465   let (source_view: GSourceView.source_view) =
466     GSourceView.source_view
467       ~auto_indent:true
468       ~insert_spaces_instead_of_tabs:true ~tabs_width:2
469       ~margin:80 ~show_margin:true
470       ~smart_home_end:true
471       ~packing:main#scriptScrolledWin#add
472       ()
473   in
474   let default_font_size =
475     Helm_registry.get_opt_default Helm_registry.int
476       ~default:BuildTimeConf.default_font_size "matita.font_size"
477   in
478   let source_buffer = source_view#source_buffer in
479   object (self)
480     val mutable chosen_file = None
481     val mutable _ok_not_exists = false
482     val mutable _only_directory = false
483     val mutable script_fname = None
484     val mutable font_size = default_font_size
485     val mutable next_devel_must_contain = None
486     val mutable next_ligatures = []
487     val clipboard = GData.clipboard Gdk.Atom.clipboard
488     val primary = GData.clipboard Gdk.Atom.primary
489    
490     initializer
491         (* glade's check widgets *)
492       List.iter (fun w -> w#check_widgets ())
493         (let c w = (w :> <check_widgets: unit -> unit>) in
494         [ c fileSel; c main; c findRepl]);
495         (* key bindings *)
496       List.iter (* global key bindings *)
497         (fun (key, callback) -> self#addKeyBinding key callback)
498 (*
499         [ GdkKeysyms._F3,
500             toggle_win ~check:main#showProofMenuItem proof#proofWin;
501           GdkKeysyms._F4,
502             toggle_win ~check:main#showCheckMenuItem check#checkWin;
503 *)
504         [ ];
505         (* about win *)
506       let parse_txt_file file =
507        let ch = open_in (BuildTimeConf.runtime_base_dir ^ "/" ^ file) in
508        let l_rev = ref [] in
509        try
510         while true do
511          l_rev := input_line ch :: !l_rev;
512         done;
513         assert false
514        with
515         End_of_file ->
516          close_in ch;
517          List.rev !l_rev in 
518       let about_dialog =
519        GWindow.about_dialog
520         ~authors:(parse_txt_file "AUTHORS")
521         (*~comments:"comments"*)
522         ~copyright:"Copyright (C) 2005, the HELM team"
523         ~license:(String.concat "\n" (parse_txt_file "LICENSE"))
524         ~logo:(GdkPixbuf.from_file (MatitaMisc.image_path "/matita_medium.png"))
525         ~name:"Matita"
526         ~version:BuildTimeConf.version
527         ~website:"http://helm.cs.unibo.it"
528         ()
529       in
530       connect_menu_item main#contentsMenuItem (fun () ->
531         let cmd =
532           sprintf "gnome-help ghelp://%s/C/matita.xml &" BuildTimeConf.help_dir
533         in
534         ignore (Sys.command cmd));
535       connect_menu_item main#aboutMenuItem about_dialog#present;
536         (* findRepl win *)
537       let show_find_Repl () = 
538         findRepl#toplevel#misc#show ();
539         findRepl#toplevel#misc#grab_focus ()
540       in
541       let hide_find_Repl () = findRepl#toplevel#misc#hide () in
542       let find_forward _ = 
543           let highlight start end_ =
544             source_buffer#move_mark `INSERT ~where:start;
545             source_buffer#move_mark `SEL_BOUND ~where:end_;
546             source_view#scroll_mark_onscreen `INSERT
547           in
548           let text = findRepl#findEntry#text in
549           let iter = source_buffer#get_iter `SEL_BOUND in
550           match iter#forward_search text with
551           | None -> 
552               (match source_buffer#start_iter#forward_search text with
553               | None -> ()
554               | Some (start,end_) -> highlight start end_)
555           | Some (start,end_) -> highlight start end_ 
556       in
557       let replace _ =
558         let text = findRepl#replaceEntry#text in
559         let ins = source_buffer#get_iter `INSERT in
560         let sel = source_buffer#get_iter `SEL_BOUND in
561         if ins#compare sel < 0 then 
562           begin
563             ignore(source_buffer#delete_selection ());
564             source_buffer#insert text
565           end
566       in
567       connect_button findRepl#findButton find_forward;
568       connect_button findRepl#findReplButton replace;
569       connect_button findRepl#cancelButton (fun _ -> hide_find_Repl ());
570       ignore(findRepl#toplevel#event#connect#delete 
571         ~callback:(fun _ -> hide_find_Repl ();true));
572       let safe_undo =
573        fun () ->
574         (* phase 1: we save the actual status of the marks and we undo *)
575         let locked_mark = `MARK ((MatitaScript.current ())#locked_mark) in
576         let locked_iter = source_view#buffer#get_iter_at_mark locked_mark in
577         let locked_iter_offset = locked_iter#offset in
578         let mark2 =
579          `MARK
580            (source_view#buffer#create_mark ~name:"lock_point"
581              ~left_gravity:true locked_iter) in
582         source_view#source_buffer#undo ();
583         (* phase 2: we save the cursor position and we redo, restoring
584            the previous status of all the marks *)
585         let cursor_iter = source_view#buffer#get_iter_at_mark `INSERT in
586         let mark =
587          `MARK
588            (source_view#buffer#create_mark ~name:"undo_point"
589              ~left_gravity:true cursor_iter)
590         in
591          source_view#source_buffer#redo ();
592          let mark_iter = source_view#buffer#get_iter_at_mark mark in
593          let mark2_iter = source_view#buffer#get_iter_at_mark mark2 in
594          let mark2_iter = mark2_iter#set_offset locked_iter_offset in
595           source_view#buffer#move_mark locked_mark ~where:mark2_iter;
596           source_view#buffer#delete_mark mark;
597           source_view#buffer#delete_mark mark2;
598           (* phase 3: if after the undo the cursor was in the locked area,
599              then we move it there again and we perform a goto *)
600           if mark_iter#offset < locked_iter_offset then
601            begin
602             source_view#buffer#move_mark `INSERT ~where:mark_iter;
603             (MatitaScript.current ())#goto `Cursor ();
604            end;
605           (* phase 4: we perform again the undo. This time we are sure that
606              the text to undo is not locked *)
607           source_view#source_buffer#undo ();
608           source_view#misc#grab_focus () in
609       let safe_redo =
610        fun () ->
611         (* phase 1: we save the actual status of the marks, we redo and
612            we undo *)
613         let locked_mark = `MARK ((MatitaScript.current ())#locked_mark) in
614         let locked_iter = source_view#buffer#get_iter_at_mark locked_mark in
615         let locked_iter_offset = locked_iter#offset in
616         let mark2 =
617          `MARK
618            (source_view#buffer#create_mark ~name:"lock_point"
619              ~left_gravity:true locked_iter) in
620         source_view#source_buffer#redo ();
621         source_view#source_buffer#undo ();
622         (* phase 2: we save the cursor position and we restore
623            the previous status of all the marks *)
624         let cursor_iter = source_view#buffer#get_iter_at_mark `INSERT in
625         let mark =
626          `MARK
627            (source_view#buffer#create_mark ~name:"undo_point"
628              ~left_gravity:true cursor_iter)
629         in
630          let mark_iter = source_view#buffer#get_iter_at_mark mark in
631          let mark2_iter = source_view#buffer#get_iter_at_mark mark2 in
632          let mark2_iter = mark2_iter#set_offset locked_iter_offset in
633           source_view#buffer#move_mark locked_mark ~where:mark2_iter;
634           source_view#buffer#delete_mark mark;
635           source_view#buffer#delete_mark mark2;
636           (* phase 3: if after the undo the cursor is in the locked area,
637              then we move it there again and we perform a goto *)
638           if mark_iter#offset < locked_iter_offset then
639            begin
640             source_view#buffer#move_mark `INSERT ~where:mark_iter;
641             (MatitaScript.current ())#goto `Cursor ();
642            end;
643           (* phase 4: we perform again the redo. This time we are sure that
644              the text to redo is not locked *)
645           source_view#source_buffer#redo ();
646           source_view#misc#grab_focus ()
647       in
648       connect_menu_item main#undoMenuItem safe_undo;
649       ignore(source_view#source_buffer#connect#can_undo
650         ~callback:main#undoMenuItem#misc#set_sensitive);
651       connect_menu_item main#redoMenuItem safe_redo;
652       ignore(source_view#source_buffer#connect#can_redo
653         ~callback:main#redoMenuItem#misc#set_sensitive);
654       ignore(source_view#connect#after#populate_popup
655        ~callback:(fun pre_menu ->
656          let menu = new GMenu.menu pre_menu in
657          let menuItems = menu#children in
658          let undoMenuItem, redoMenuItem =
659           match menuItems with
660              [undo;redo;sep1;cut;copy;paste;delete;sep2;
661               selectall;sep3;inputmethod;insertunicodecharacter] ->
662                 List.iter menu#remove [ copy; cut; delete; paste ];
663                 undo,redo
664            | _ -> assert false in
665          let add_menu_item =
666            let i = ref 2 in (* last occupied position *)
667            fun ?label ?stock () ->
668              incr i;
669              GMenu.image_menu_item ?label ?stock ~packing:(menu#insert ~pos:!i)
670               ()
671          in
672          let copy = add_menu_item ~stock:`COPY () in
673          let cut = add_menu_item ~stock:`CUT () in
674          let delete = add_menu_item ~stock:`DELETE () in
675          let paste = add_menu_item ~stock:`PASTE () in
676          let paste_pattern = add_menu_item ~label:"Paste as pattern" () in
677          copy#misc#set_sensitive self#canCopy;
678          cut#misc#set_sensitive self#canCut;
679          delete#misc#set_sensitive self#canDelete;
680          paste#misc#set_sensitive self#canPaste;
681          paste_pattern#misc#set_sensitive self#canPastePattern;
682          connect_menu_item copy self#copy;
683          connect_menu_item cut self#cut;
684          connect_menu_item delete self#delete;
685          connect_menu_item paste self#paste;
686          connect_menu_item paste_pattern self#pastePattern;
687          let new_undoMenuItem =
688           GMenu.image_menu_item
689            ~image:(GMisc.image ~stock:`UNDO ())
690            ~use_mnemonic:true
691            ~label:"_Undo"
692            ~packing:(menu#insert ~pos:0) () in
693          new_undoMenuItem#misc#set_sensitive
694           (undoMenuItem#misc#get_flag `SENSITIVE);
695          menu#remove (undoMenuItem :> GMenu.menu_item);
696          connect_menu_item new_undoMenuItem safe_undo;
697          let new_redoMenuItem =
698           GMenu.image_menu_item
699            ~image:(GMisc.image ~stock:`REDO ())
700            ~use_mnemonic:true
701            ~label:"_Redo"
702            ~packing:(menu#insert ~pos:1) () in
703          new_redoMenuItem#misc#set_sensitive
704           (redoMenuItem#misc#get_flag `SENSITIVE);
705           menu#remove (redoMenuItem :> GMenu.menu_item);
706           connect_menu_item new_redoMenuItem safe_redo));
707
708       connect_menu_item main#editMenu (fun () ->
709         main#copyMenuItem#misc#set_sensitive self#canCopy;
710         main#cutMenuItem#misc#set_sensitive self#canCut;
711         main#deleteMenuItem#misc#set_sensitive self#canDelete;
712         main#pasteMenuItem#misc#set_sensitive self#canPaste;
713         main#pastePatternMenuItem#misc#set_sensitive self#canPastePattern);
714       connect_menu_item main#copyMenuItem self#copy;
715       connect_menu_item main#cutMenuItem self#cut;
716       connect_menu_item main#deleteMenuItem self#delete;
717       connect_menu_item main#pasteMenuItem self#paste;
718       connect_menu_item main#pastePatternMenuItem self#pastePattern;
719       connect_menu_item main#selectAllMenuItem (fun () ->
720         source_buffer#move_mark `INSERT source_buffer#start_iter;
721         source_buffer#move_mark `SEL_BOUND source_buffer#end_iter);
722       connect_menu_item main#findReplMenuItem show_find_Repl;
723       connect_menu_item main#externalEditorMenuItem self#externalEditor;
724       connect_menu_item main#ligatureButton self#nextLigature;
725       ignore (findRepl#findEntry#connect#activate find_forward);
726         (* interface lockers *)
727       let lock_world _ =
728         main#buttonsToolbar#misc#set_sensitive false;
729         develList#buttonsHbox#misc#set_sensitive false;
730         main#scriptMenu#misc#set_sensitive false;
731         source_view#set_editable false
732       in
733       let unlock_world _ =
734         main#buttonsToolbar#misc#set_sensitive true;
735         develList#buttonsHbox#misc#set_sensitive true;
736         main#scriptMenu#misc#set_sensitive true;
737         source_view#set_editable true;
738         (*The next line seems sufficient to avoid some unknown race condition *)
739         GtkThread.sync (fun () -> ()) ()
740       in
741       let worker_thread = ref None in
742       let notify_exn exn =
743        let floc, msg = MatitaExcPp.to_string exn in
744         begin
745          match floc with
746             None -> ()
747           | Some floc ->
748              let (x, y) = HExtlib.loc_of_floc floc in
749              let script = MatitaScript.current () in
750              let locked_mark = script#locked_mark in
751              let error_tag = script#error_tag in
752              let baseoffset =
753               (source_buffer#get_iter_at_mark (`MARK locked_mark))#offset in
754              let x' = baseoffset + x in
755              let y' = baseoffset + y in
756              let x_iter = source_buffer#get_iter (`OFFSET x') in
757              let y_iter = source_buffer#get_iter (`OFFSET y') in
758              source_buffer#apply_tag error_tag ~start:x_iter ~stop:y_iter;
759              let id = ref None in
760              id := Some (source_buffer#connect#changed ~callback:(fun () ->
761                source_buffer#remove_tag error_tag
762                  ~start:source_buffer#start_iter
763                  ~stop:source_buffer#end_iter;
764                match !id with
765                | None -> assert false (* a race condition occurred *)
766                | Some id ->
767                    (new GObj.gobject_ops source_buffer#as_buffer)#disconnect id));
768              source_buffer#place_cursor
769               (source_buffer#get_iter (`OFFSET x'));
770         end;
771         HLog.error msg in
772       let locker f () =
773        let thread_main =
774         fun () -> 
775           lock_world ();
776           try
777            f ();
778            unlock_world ()
779           with
780            | GrafiteDisambiguator.DisambiguationError (offset,errorll) ->
781               interactive_error_interp source_buffer notify_exn offset errorll ;
782               unlock_world ()
783            | exc ->
784               notify_exn exc;
785               unlock_world ()
786        in
787         worker_thread := Some (Thread.create thread_main ()) in
788       let kill_worker =
789        (* the following lines are from Xavier Leroy: http://alan.petitepomme.net/cwn/2005.11.08.html *)
790        let interrupt = ref None in
791        let old_callback = ref (function _ -> ()) in
792        let force_interrupt n =
793          (* This function is called just before the thread's timeslice ends *)
794          !old_callback n;
795          if Some(Thread.id(Thread.self())) = !interrupt then
796           (interrupt := None; raise Sys.Break) in
797        let _ =
798         match Sys.signal Sys.sigvtalrm (Sys.Signal_handle force_interrupt) with
799            Sys.Signal_handle f -> old_callback := f
800          | Sys.Signal_ignore
801          | Sys.Signal_default -> assert false
802        in
803         fun () ->
804          match !worker_thread with
805             None -> assert false
806           | Some t -> interrupt := Some (Thread.id t) in
807       let keep_focus f =
808         fun () ->
809          try
810           f (); source_view#misc#grab_focus ()
811          with
812           exc -> source_view#misc#grab_focus (); raise exc in
813         (* developments win *)
814       let model = 
815         new MatitaGtkMisc.multiStringListModel 
816           ~cols:2 develList#developmentsTreeview
817       in
818       let refresh_devels_win () =
819         model#list_store#clear ();
820         List.iter 
821           (fun (name, root) -> model#easy_mappend [name;root]) 
822           (MatitamakeLib.list_known_developments ())
823       in
824       let get_devel_selected () = 
825         match model#easy_mselection () with
826         | [[name;_]] -> MatitamakeLib.development_for_name name
827         | _ -> None
828       in
829       let refresh () = 
830         while Glib.Main.pending () do 
831           ignore(Glib.Main.iteration false); 
832         done
833       in
834       connect_button develList#newButton
835         (fun () -> 
836           next_devel_must_contain <- None;
837           newDevel#toplevel#misc#show());
838       connect_button develList#deleteButton
839         (locker (fun () -> 
840           (match get_devel_selected () with
841           | None -> ()
842           | Some d -> MatitamakeLib.destroy_development_in_bg refresh d);
843           refresh_devels_win ()));
844       connect_button develList#buildButton 
845         (locker (fun () -> 
846           match get_devel_selected () with
847           | None -> ()
848           | Some d -> 
849               let build = locker 
850                 (fun () -> MatitamakeLib.build_development_in_bg refresh d)
851               in
852               ignore(build ())));
853       connect_button develList#cleanButton 
854         (locker (fun () -> 
855           match get_devel_selected () with
856           | None -> ()
857           | Some d -> 
858               let clean = locker 
859                 (fun () -> MatitamakeLib.clean_development_in_bg refresh d)
860               in
861               ignore(clean ())));
862       connect_button develList#publishButton 
863         (locker (fun () -> 
864           match get_devel_selected () with
865           | None -> ()
866           | Some d -> 
867               let publish = locker (fun () ->
868                 MatitamakeLib.publish_development_in_bg refresh d) in
869               ignore(publish ())));
870       connect_button develList#graphButton (fun () -> 
871         match get_devel_selected () with
872         | None -> ()
873         | Some d ->
874             (match MatitamakeLib.dot_for_development d with
875             | None -> ()
876             | Some _ ->
877                 let browser = MatitaMathView.cicBrowser () in
878                 browser#load (`Development
879                   (MatitamakeLib.name_for_development d))));
880       connect_button develList#closeButton 
881         (fun () -> develList#toplevel#misc#hide());
882       ignore(develList#toplevel#event#connect#delete 
883         (fun _ -> develList#toplevel#misc#hide();true));
884       connect_menu_item main#developmentsMenuItem
885         (fun () -> refresh_devels_win ();develList#toplevel#misc#show ());
886       
887         (* add development win *)
888       let check_if_root_contains root =
889         match next_devel_must_contain with
890         | None -> true
891         | Some path -> 
892             let is_prefix_of d1 d2 =
893               let len1 = String.length d1 in
894               let len2 = String.length d2 in
895               if len2 < len1 then 
896                 false
897               else
898                 let pref = String.sub d2 0 len1 in
899                 pref = d1
900             in
901             is_prefix_of root path
902       in
903       connect_button newDevel#addButton 
904        (fun () -> 
905           let name = newDevel#nameEntry#text in
906           let root = newDevel#rootEntry#text in
907           if check_if_root_contains root then
908             begin
909               ignore (MatitamakeLib.initialize_development name root);
910               refresh_devels_win ();
911               newDevel#nameEntry#set_text "";
912               newDevel#rootEntry#set_text "";
913               newDevel#toplevel#misc#hide()
914             end
915           else
916             HLog.error ("The selected root does not contain " ^ 
917               match next_devel_must_contain with 
918               | Some x -> x 
919               | _ -> assert false));
920       connect_button newDevel#chooseRootButton 
921        (fun () ->
922          let path = self#chooseDir () in
923          match path with
924          | Some path -> newDevel#rootEntry#set_text path
925          | None -> ());
926       connect_button newDevel#cancelButton 
927        (fun () -> newDevel#toplevel#misc#hide ());
928       ignore(newDevel#toplevel#event#connect#delete 
929         (fun _ -> newDevel#toplevel#misc#hide();true));
930       
931         (* file selection win *)
932       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
933       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
934         let return r =
935           chosen_file <- r;
936           fileSel#fileSelectionWin#misc#hide ();
937           GMain.Main.quit ()
938         in
939         match event with
940         | `OK ->
941             let fname = fileSel#fileSelectionWin#filename in
942             if Sys.file_exists fname then
943               begin
944                 if HExtlib.is_regular fname && not (_only_directory) then 
945                   return (Some fname) 
946                 else if _only_directory && HExtlib.is_dir fname then 
947                   return (Some fname)
948               end
949             else
950               begin
951                 if _ok_not_exists then 
952                   return (Some fname)
953               end
954         | `CANCEL -> return None
955         | `HELP -> ()
956         | `DELETE_EVENT -> return None));
957         (* menus *)
958       List.iter (fun w -> w#misc#set_sensitive false) [ main#saveMenuItem ];
959         (* console *)
960       let adj = main#logScrolledWin#vadjustment in
961         ignore (adj#connect#changed
962                 (fun _ -> adj#set_value (adj#upper -. adj#page_size)));
963       console#message (sprintf "\tMatita version %s\n" BuildTimeConf.version);
964         (* toolbar *)
965       let module A = GrafiteAst in
966       let hole = CicNotationPt.UserInput in
967       let loc = HExtlib.dummy_floc in
968       let tac ast _ =
969         if (MatitaScript.current ())#onGoingProof () then
970           (MatitaScript.current ())#advance
971             ~statement:("\n"
972               ^ GrafiteAstPp.pp_tactical ~term_pp:CicNotationPp.pp_term
973                 ~lazy_term_pp:CicNotationPp.pp_term (A.Tactic (loc, ast)))
974             ()
975       in
976       let tac_w_term ast _ =
977         if (MatitaScript.current ())#onGoingProof () then
978           let buf = source_buffer in
979           buf#insert ~iter:(buf#get_iter_at_mark (`NAME "locked"))
980             ("\n"
981             ^ GrafiteAstPp.pp_tactic ~term_pp:CicNotationPp.pp_term
982               ~lazy_term_pp:CicNotationPp.pp_term ast)
983       in
984       let tbar = main in
985       connect_button tbar#introsButton (tac (A.Intros (loc, None, [])));
986       connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole)));
987       connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole)));
988       connect_button tbar#elimButton (tac_w_term
989         (A.Elim (loc, hole, None, None, [])));
990       connect_button tbar#elimTypeButton (tac_w_term
991         (A.ElimType (loc, hole, None, None, [])));
992       connect_button tbar#splitButton (tac (A.Split loc));
993       connect_button tbar#leftButton (tac (A.Left loc));
994       connect_button tbar#rightButton (tac (A.Right loc));
995       connect_button tbar#existsButton (tac (A.Exists loc));
996       connect_button tbar#reflexivityButton (tac (A.Reflexivity loc));
997       connect_button tbar#symmetryButton (tac (A.Symmetry loc));
998       connect_button tbar#transitivityButton
999         (tac_w_term (A.Transitivity (loc, hole)));
1000       connect_button tbar#assumptionButton (tac (A.Assumption loc));
1001       connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole)));
1002       connect_button tbar#autoButton (tac (A.Auto (loc,[])));
1003       MatitaGtkMisc.toggle_widget_visibility
1004        ~widget:(main#tacticsButtonsHandlebox :> GObj.widget)
1005        ~check:main#tacticsBarMenuItem;
1006       let module Hr = Helm_registry in
1007       if
1008         not (Hr.get_opt_default Hr.bool ~default:false "matita.tactics_bar")
1009       then 
1010         main#tacticsBarMenuItem#set_active false;
1011       MatitaGtkMisc.toggle_callback 
1012         ~callback:(function 
1013           | true -> main#toplevel#fullscreen () 
1014           | false -> main#toplevel#unfullscreen ())
1015         ~check:main#fullscreenMenuItem;
1016       main#fullscreenMenuItem#set_active false;
1017       MatitaGtkMisc.toggle_callback
1018         ~callback:(fun enabled ->
1019           CicMetaSubst.use_low_level_ppterm_in_context := not enabled)
1020         ~check:main#formulaePpMenuItem;
1021         (* log *)
1022       HLog.set_log_callback self#console#log_callback;
1023       GtkSignal.user_handler :=
1024         (function 
1025         | MatitaScript.ActionCancelled s -> HLog.error s
1026         | exn ->
1027           if not (Helm_registry.get_bool "matita.debug") then
1028            notify_exn exn
1029           else raise exn);
1030         (* script *)
1031       ignore (source_buffer#connect#mark_set (fun _ _ -> next_ligatures <- []));
1032       let _ =
1033         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
1034         | None ->
1035             HLog.warn (sprintf "can't load language file %s"
1036               BuildTimeConf.lang_file)
1037         | Some matita_lang ->
1038             source_buffer#set_language matita_lang;
1039             source_buffer#set_highlight true
1040       in
1041       let s () = MatitaScript.current () in
1042       let disableSave () =
1043         script_fname <- None;
1044         main#saveMenuItem#misc#set_sensitive false
1045       in
1046       let saveAsScript () =
1047         let script = s () in
1048         match self#chooseFile ~ok_not_exists:true () with
1049         | Some f -> 
1050               script#assignFileName f;
1051               script#saveToFile (); 
1052               console#message ("'"^f^"' saved.\n");
1053               self#_enableSaveTo f
1054         | None -> ()
1055       in
1056       let saveScript () =
1057         match script_fname with
1058         | None -> saveAsScript ()
1059         | Some f -> 
1060               (s ())#assignFileName f;
1061               (s ())#saveToFile ();
1062               console#message ("'"^f^"' saved.\n");
1063       in
1064       let abandon_script () =
1065         let lexicon_status = (s ())#lexicon_status in
1066         let grafite_status = (s ())#grafite_status in
1067         if source_view#buffer#modified then
1068           (match ask_unsaved main#toplevel with
1069           | `YES -> saveScript ()
1070           | `NO -> ()
1071           | `CANCEL -> raise MatitaTypes.Cancel);
1072         (match script_fname with
1073         | None -> ()
1074         | Some fname ->
1075            ask_and_save_moo_if_needed main#toplevel fname
1076             lexicon_status grafite_status);
1077       in
1078       let loadScript () =
1079         let script = s () in 
1080         try 
1081           match self#chooseFile () with
1082           | Some f -> 
1083               abandon_script ();
1084               script#reset (); 
1085               script#assignFileName f;
1086               source_view#source_buffer#begin_not_undoable_action ();
1087               script#loadFromFile f; 
1088               source_view#source_buffer#end_not_undoable_action ();
1089               console#message ("'"^f^"' loaded.\n");
1090               self#_enableSaveTo f
1091           | None -> ()
1092         with MatitaTypes.Cancel -> ()
1093       in
1094       let newScript () = 
1095         abandon_script ();
1096         source_view#source_buffer#begin_not_undoable_action ();
1097         (s ())#reset (); 
1098         (s ())#template (); 
1099         source_view#source_buffer#end_not_undoable_action ();
1100         disableSave ();
1101         script_fname <- None
1102       in
1103       let cursor () =
1104         source_buffer#place_cursor
1105           (source_buffer#get_iter_at_mark (`NAME "locked")) in
1106       let advance _ = (MatitaScript.current ())#advance (); cursor () in
1107       let retract _ = (MatitaScript.current ())#retract (); cursor () in
1108       let top _ = (MatitaScript.current ())#goto `Top (); cursor () in
1109       let bottom _ = (MatitaScript.current ())#goto `Bottom (); cursor () in
1110       let jump _ = (MatitaScript.current ())#goto `Cursor (); cursor () in
1111       let advance = locker (keep_focus advance) in
1112       let retract = locker (keep_focus retract) in
1113       let top = locker (keep_focus top) in
1114       let bottom = locker (keep_focus bottom) in
1115       let jump = locker (keep_focus jump) in
1116         (* quit *)
1117       self#setQuitCallback (fun () -> 
1118         let lexicon_status = (MatitaScript.current ())#lexicon_status in
1119         let grafite_status = (MatitaScript.current ())#grafite_status in
1120         if source_view#buffer#modified then
1121           begin
1122             let rc = ask_unsaved main#toplevel in 
1123             try
1124               match rc with
1125               | `YES -> saveScript ();
1126                         if not source_view#buffer#modified then
1127                           begin
1128                             (match script_fname with
1129                             | None -> ()
1130                             | Some fname -> 
1131                                ask_and_save_moo_if_needed main#toplevel
1132                                 fname lexicon_status grafite_status);
1133                           GMain.Main.quit ()
1134                           end
1135               | `NO -> GMain.Main.quit ()
1136               | `CANCEL -> raise MatitaTypes.Cancel
1137             with MatitaTypes.Cancel -> ()
1138           end 
1139         else 
1140           begin  
1141             (match script_fname with
1142             | None -> clean_current_baseuri grafite_status; GMain.Main.quit ()
1143             | Some fname ->
1144                 try
1145                   ask_and_save_moo_if_needed main#toplevel fname lexicon_status
1146                    grafite_status;
1147                   GMain.Main.quit ()
1148                 with MatitaTypes.Cancel -> ())
1149           end);
1150       connect_button main#scriptAdvanceButton advance;
1151       connect_button main#scriptRetractButton retract;
1152       connect_button main#scriptTopButton top;
1153       connect_button main#scriptBottomButton bottom;
1154       connect_button main#scriptJumpButton jump;
1155       connect_button main#scriptAbortButton kill_worker;
1156       connect_menu_item main#scriptAdvanceMenuItem advance;
1157       connect_menu_item main#scriptRetractMenuItem retract;
1158       connect_menu_item main#scriptTopMenuItem top;
1159       connect_menu_item main#scriptBottomMenuItem bottom;
1160       connect_menu_item main#scriptJumpMenuItem jump;
1161       connect_menu_item main#openMenuItem   loadScript;
1162       connect_menu_item main#saveMenuItem   saveScript;
1163       connect_menu_item main#saveAsMenuItem saveAsScript;
1164       connect_menu_item main#newMenuItem    newScript;
1165          (* script monospace font stuff *)  
1166       self#updateFontSize ();
1167         (* debug menu *)
1168       main#debugMenu#misc#hide ();
1169         (* status bar *)
1170       main#hintLowImage#set_file (image_path "matita-bulb-low.png");
1171       main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
1172       main#hintHighImage#set_file (image_path "matita-bulb-high.png");
1173         (* focus *)
1174       self#sourceView#misc#grab_focus ();
1175         (* main win dimension *)
1176       let width = Gdk.Screen.width () in
1177       let height = Gdk.Screen.height () in
1178       let main_w = width * 90 / 100 in 
1179       let main_h = height * 80 / 100 in
1180       let script_w = main_w * 6 / 10 in
1181       main#toplevel#resize ~width:main_w ~height:main_h;
1182       main#hpaneScriptSequent#set_position script_w;
1183         (* source_view *)
1184       ignore(source_view#connect#after#paste_clipboard 
1185         ~callback:(fun () -> (MatitaScript.current ())#clean_dirty_lock));
1186       (* clean_locked is set to true only "during" a PRIMARY paste
1187          operation (i.e. by clicking with the second mouse button) *)
1188       let clean_locked = ref false in
1189       ignore(source_view#event#connect#button_press
1190         ~callback:
1191           (fun button ->
1192             if GdkEvent.Button.button button = 2 then
1193              clean_locked := true;
1194             false
1195           ));
1196       ignore(source_view#event#connect#button_release
1197         ~callback:(fun button -> clean_locked := false; false));
1198       ignore(source_view#buffer#connect#after#apply_tag
1199        ~callback:(
1200          fun tag ~start:_ ~stop:_ ->
1201           if !clean_locked &&
1202              tag#get_oid = (MatitaScript.current ())#locked_tag#get_oid
1203           then
1204            begin
1205             clean_locked := false;
1206             (MatitaScript.current ())#clean_dirty_lock;
1207             clean_locked := true
1208            end));
1209       (* math view handling *)
1210       connect_menu_item main#newCicBrowserMenuItem (fun () ->
1211         ignore (MatitaMathView.cicBrowser ()));
1212       connect_menu_item main#increaseFontSizeMenuItem (fun () ->
1213         self#increaseFontSize ();
1214         MatitaMathView.increase_font_size ();
1215         MatitaMathView.update_font_sizes ());
1216       connect_menu_item main#decreaseFontSizeMenuItem (fun () ->
1217         self#decreaseFontSize ();
1218         MatitaMathView.decrease_font_size ();
1219         MatitaMathView.update_font_sizes ());
1220       connect_menu_item main#normalFontSizeMenuItem (fun () ->
1221         self#resetFontSize ();
1222         MatitaMathView.reset_font_size ();
1223         MatitaMathView.update_font_sizes ());
1224       MatitaMathView.reset_font_size ();
1225
1226       (** selections / clipboards handling *)
1227
1228     method markupSelected = MatitaMathView.has_selection ()
1229     method private textSelected =
1230       (source_buffer#get_iter_at_mark `INSERT)#compare
1231         (source_buffer#get_iter_at_mark `SEL_BOUND) <> 0
1232     method private somethingSelected = self#markupSelected || self#textSelected
1233     method private markupStored = MatitaMathView.has_clipboard ()
1234     method private textStored = clipboard#text <> None
1235     method private somethingStored = self#markupStored || self#textStored
1236
1237     method canCopy = self#somethingSelected
1238     method canCut = self#textSelected
1239     method canDelete = self#textSelected
1240     method canPaste = self#somethingStored
1241     method canPastePattern = self#markupStored
1242
1243     method copy () =
1244       if self#textSelected
1245       then begin
1246         MatitaMathView.empty_clipboard ();
1247         source_view#buffer#copy_clipboard clipboard;
1248       end else
1249         MatitaMathView.copy_selection ()
1250     method cut () =
1251       source_view#buffer#cut_clipboard clipboard;
1252       MatitaMathView.empty_clipboard ()
1253     method delete () = ignore (source_view#buffer#delete_selection ())
1254     method paste () =
1255       if MatitaMathView.has_clipboard ()
1256       then source_view#buffer#insert (MatitaMathView.paste_clipboard `Term)
1257       else source_view#buffer#paste_clipboard clipboard;
1258       (MatitaScript.current ())#clean_dirty_lock
1259     method pastePattern () =
1260       source_view#buffer#insert (MatitaMathView.paste_clipboard `Pattern)
1261     
1262     method private nextLigature () =
1263       let iter = source_buffer#get_iter_at_mark `INSERT in
1264       let write_ligature len s =
1265         assert(Glib.Utf8.validate s);
1266         source_buffer#delete ~start:iter ~stop:(iter#copy#backward_chars len);
1267         source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT) s
1268       in
1269       let get_ligature word =
1270         let len = String.length word in
1271         let aux_tex () =
1272           try
1273             for i = len - 1 downto 0 do
1274               if HExtlib.is_alpha word.[i] then ()
1275               else
1276                 (if word.[i] = '\\' then raise (Found i) else raise (Found ~-1))
1277             done;
1278             None
1279           with Found i ->
1280             if i = ~-1 then None else Some (String.sub word i (len - i))
1281         in
1282         let aux_ligature () =
1283           try
1284             for i = len - 1 downto 0 do
1285               if CicNotationLexer.is_ligature_char word.[i] then ()
1286               else raise (Found (i+1))
1287             done;
1288             raise (Found 0)
1289           with
1290           | Found i ->
1291               (try
1292                 Some (String.sub word i (len - i))
1293               with Invalid_argument _ -> None)
1294         in
1295         match aux_tex () with
1296         | Some macro -> macro
1297         | None -> (match aux_ligature () with Some l -> l | None -> word)
1298       in
1299       (match next_ligatures with
1300       | [] -> (* find ligatures and fill next_ligatures, then try again *)
1301           let last_word =
1302             iter#get_slice
1303               ~stop:(iter#copy#backward_find_char Glib.Unichar.isspace)
1304           in
1305           let ligature = get_ligature last_word in
1306           (match CicNotationLexer.lookup_ligatures ligature with
1307           | [] -> ()
1308           | hd :: tl ->
1309               write_ligature (MatitaGtkMisc.utf8_string_length ligature) hd;
1310               next_ligatures <- tl @ [ hd ])
1311       | hd :: tl ->
1312           write_ligature 1 hd;
1313           next_ligatures <- tl @ [ hd ])
1314
1315     method private externalEditor () =
1316       let cmd = Helm_registry.get "matita.external_editor" in
1317 (* ZACK uncomment to enable interactive ask of external editor command *)
1318 (*      let cmd =
1319          let msg =
1320           "External editor command:
1321 %f  will be substitute for the script name,
1322 %p  for the cursor position in bytes,
1323 %l  for the execution point in bytes."
1324         in
1325         ask_text ~gui:self ~title:"External editor" ~msg ~multiline:false
1326           ~default:(Helm_registry.get "matita.external_editor") ()
1327       in *)
1328       let fname = (MatitaScript.current ())#filename in
1329       let slice mark =
1330         source_buffer#start_iter#get_slice
1331           ~stop:(source_buffer#get_iter_at_mark mark)
1332       in
1333       let script = MatitaScript.current () in
1334       let locked = `MARK script#locked_mark in
1335       let string_pos mark = string_of_int (String.length (slice mark)) in
1336       let cursor_pos = string_pos `INSERT in
1337       let locked_pos = string_pos locked in
1338       let cmd =
1339         Pcre.replace ~pat:"%f" ~templ:fname
1340           (Pcre.replace ~pat:"%p" ~templ:cursor_pos
1341             (Pcre.replace ~pat:"%l" ~templ:locked_pos
1342               cmd))
1343       in
1344       let locked_before = slice locked in
1345       let locked_offset = (source_buffer#get_iter_at_mark locked)#offset in
1346       ignore (Unix.system cmd);
1347       source_buffer#set_text (HExtlib.input_file fname);
1348       let locked_iter = source_buffer#get_iter (`OFFSET locked_offset) in
1349       source_buffer#move_mark locked locked_iter;
1350       source_buffer#apply_tag script#locked_tag
1351         ~start:source_buffer#start_iter ~stop:locked_iter;
1352       let locked_after = slice locked in
1353       let line = ref 0 in
1354       let col = ref 0 in
1355       try
1356         for i = 0 to String.length locked_before - 1 do
1357           if locked_before.[i] <> locked_after.[i] then begin
1358             source_buffer#place_cursor
1359               ~where:(source_buffer#get_iter (`LINEBYTE (!line, !col)));
1360             script#goto `Cursor ();
1361             raise Exit
1362           end else if locked_before.[i] = '\n' then begin
1363             incr line;
1364             col := 0
1365           end
1366         done
1367       with
1368       | Exit -> ()
1369       | Invalid_argument _ -> script#goto `Bottom ()
1370
1371     method loadScript file =       
1372       let script = MatitaScript.current () in
1373       script#reset (); 
1374       if Pcre.pmatch ~pat:"\\.p$" file then
1375         begin
1376           let tptppath = 
1377             Helm_registry.get_opt_default Helm_registry.string ~default:"./"
1378               "matita.tptppath"
1379           in
1380           let data = Matitaprover.p_to_ma ~filename:file ~tptppath () in
1381           let filename = Pcre.replace ~pat:"\\.p$" ~templ:".ma" file in
1382           script#assignFileName filename;
1383           source_view#source_buffer#begin_not_undoable_action ();
1384           script#loadFromString data;
1385           source_view#source_buffer#end_not_undoable_action ();
1386           console#message ("'"^filename^"' loaded.");
1387           self#_enableSaveTo filename
1388         end
1389       else
1390         begin
1391           script#assignFileName file;
1392           let content =
1393            if Sys.file_exists file then file
1394            else BuildTimeConf.script_template
1395           in
1396            source_view#source_buffer#begin_not_undoable_action ();
1397            script#loadFromFile content;
1398            source_view#source_buffer#end_not_undoable_action ();
1399            console#message ("'"^file^"' loaded.");
1400            self#_enableSaveTo file
1401         end
1402       
1403     method setStar name b =
1404       let l = main#scriptLabel in
1405       if b then
1406         l#set_text (name ^  " *")
1407       else
1408         l#set_text (name)
1409         
1410     method private _enableSaveTo file =
1411       script_fname <- Some file;
1412       self#main#saveMenuItem#misc#set_sensitive true
1413         
1414     method console = console
1415     method sourceView: GSourceView.source_view =
1416       (source_view: GSourceView.source_view)
1417     method fileSel = fileSel
1418     method findRepl = findRepl
1419     method main = main
1420     method develList = develList
1421     method newDevel = newDevel
1422
1423     method newBrowserWin () =
1424       object (self)
1425         inherit browserWin ()
1426         val combo = GEdit.combo_box_entry ()
1427         initializer
1428           self#check_widgets ();
1429           let combo_widget = combo#coerce in
1430           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
1431           combo#entry#misc#grab_focus ()
1432         method browserUri = combo
1433       end
1434
1435     method newUriDialog () =
1436       let dialog = new uriChoiceDialog () in
1437       dialog#check_widgets ();
1438       dialog
1439
1440     method newConfirmationDialog () =
1441       let dialog = new confirmationDialog () in
1442       dialog#check_widgets ();
1443       dialog
1444
1445     method newEmptyDialog () =
1446       let dialog = new emptyDialog () in
1447       dialog#check_widgets ();
1448       dialog
1449
1450     method private addKeyBinding key callback =
1451       List.iter (fun evbox -> add_key_binding key callback evbox)
1452         keyBindingBoxes
1453
1454     method setQuitCallback callback =
1455       connect_menu_item main#quitMenuItem callback;
1456       ignore (main#toplevel#event#connect#delete 
1457         (fun _ -> callback ();true));
1458       self#addKeyBinding GdkKeysyms._q callback
1459
1460     method chooseFile ?(ok_not_exists = false) () =
1461       _ok_not_exists <- ok_not_exists;
1462       _only_directory <- false;
1463       fileSel#fileSelectionWin#show ();
1464       GtkThread.main ();
1465       chosen_file
1466
1467     method private chooseDir ?(ok_not_exists = false) () =
1468       _ok_not_exists <- ok_not_exists;
1469       _only_directory <- true;
1470       fileSel#fileSelectionWin#show ();
1471       GtkThread.main ();
1472       (* we should check that this is a directory *)
1473       chosen_file
1474   
1475     method createDevelopment ~containing =
1476       next_devel_must_contain <- containing;
1477       newDevel#toplevel#misc#show()
1478
1479     method askText ?(title = "") ?(msg = "") () =
1480       let dialog = new textDialog () in
1481       dialog#textDialog#set_title title;
1482       dialog#textDialogLabel#set_label msg;
1483       let text = ref None in
1484       let return v =
1485         text := v;
1486         dialog#textDialog#destroy ();
1487         GMain.Main.quit ()
1488       in
1489       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
1490       connect_button dialog#textDialogCancelButton (fun _ -> return None);
1491       connect_button dialog#textDialogOkButton (fun _ ->
1492         let text = dialog#textDialogTextView#buffer#get_text () in
1493         return (Some text));
1494       dialog#textDialog#show ();
1495       GtkThread.main ();
1496       !text
1497
1498     method private updateFontSize () =
1499       self#sourceView#misc#modify_font_by_name
1500         (sprintf "%s %d" BuildTimeConf.script_font font_size)
1501
1502     method increaseFontSize () =
1503       font_size <- font_size + 1;
1504       self#updateFontSize ()
1505
1506     method decreaseFontSize () =
1507       font_size <- font_size - 1;
1508       self#updateFontSize ()
1509
1510     method resetFontSize () =
1511       font_size <- default_font_size;
1512       self#updateFontSize ()
1513
1514   end
1515
1516 let gui () = 
1517   let g = new gui () in
1518   gui_instance := Some g;
1519   MatitaMathView.set_gui g;
1520   g
1521   
1522 let instance = singleton gui
1523
1524 let non p x = not (p x)
1525
1526 (* this is a shit and should be changed :-{ *)
1527 let interactive_uri_choice
1528   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
1529   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
1530   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
1531   ?copy_cb ()
1532   ~id uris
1533 =
1534   let gui = instance () in
1535   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
1536   if (selection_mode <> `SINGLE) &&
1537     (Helm_registry.get_opt_default Helm_registry.get_bool ~default:true "matita.auto_disambiguation")
1538   then
1539     Lazy.force nonvars_uris
1540   else begin
1541     let dialog = gui#newUriDialog () in
1542     if hide_uri_entry then
1543       dialog#uriEntryHBox#misc#hide ();
1544     if hide_try then
1545       begin
1546       dialog#uriChoiceSelectedButton#misc#hide ();
1547       dialog#uriChoiceConstantsButton#misc#hide ();
1548       end;
1549     dialog#okLabel#set_label ok_label;  
1550     dialog#uriChoiceTreeView#selection#set_mode
1551       (selection_mode :> Gtk.Tags.selection_mode);
1552     let model = new stringListModel dialog#uriChoiceTreeView in
1553     let choices = ref None in
1554     (match copy_cb with
1555     | None -> ()
1556     | Some cb ->
1557         dialog#copyButton#misc#show ();
1558         connect_button dialog#copyButton 
1559         (fun _ ->
1560           match model#easy_selection () with
1561           | [u] -> (cb u)
1562           | _ -> ()));
1563     dialog#uriChoiceDialog#set_title title;
1564     dialog#uriChoiceLabel#set_text msg;
1565     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
1566     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
1567     let return v =
1568       choices := v;
1569       dialog#uriChoiceDialog#destroy ();
1570       GMain.Main.quit ()
1571     in
1572     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
1573     connect_button dialog#uriChoiceConstantsButton (fun _ ->
1574       return (Some (Lazy.force nonvars_uris)));
1575     if ok_action = `AUTO then
1576       connect_button dialog#uriChoiceAutoButton (fun _ ->
1577         Helm_registry.set_bool "matita.auto_disambiguation" true;
1578         return (Some (Lazy.force nonvars_uris)))
1579     else
1580       connect_button dialog#uriChoiceAutoButton (fun _ ->
1581         match model#easy_selection () with
1582         | [] -> ()
1583         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
1584     connect_button dialog#uriChoiceSelectedButton (fun _ ->
1585       match model#easy_selection () with
1586       | [] -> ()
1587       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
1588     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
1589     dialog#uriChoiceDialog#show ();
1590     GtkThread.main ();
1591     (match !choices with 
1592     | None -> raise MatitaTypes.Cancel
1593     | Some uris -> uris)
1594   end
1595
1596 class interpModel =
1597   let cols = new GTree.column_list in
1598   let id_col = cols#add Gobject.Data.string in
1599   let dsc_col = cols#add Gobject.Data.string in
1600   let interp_no_col = cols#add Gobject.Data.int in
1601   let tree_store = GTree.tree_store cols in
1602   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
1603   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
1604   let id_view_col = GTree.view_column ~renderer:id_renderer () in
1605   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
1606   fun tree_view choices ->
1607     object
1608       initializer
1609         tree_view#set_model (Some (tree_store :> GTree.model));
1610         ignore (tree_view#append_column id_view_col);
1611         ignore (tree_view#append_column dsc_view_col);
1612         let name_of_interp =
1613           (* try to find a reasonable name for an interpretation *)
1614           let idx = ref 0 in
1615           fun interp ->
1616             try
1617               List.assoc "0" interp
1618             with Not_found ->
1619               incr idx; string_of_int !idx
1620         in
1621         tree_store#clear ();
1622         let idx = ref ~-1 in
1623         List.iter
1624           (fun interp ->
1625             incr idx;
1626             let interp_row = tree_store#append () in
1627             tree_store#set ~row:interp_row ~column:id_col
1628               (name_of_interp interp);
1629             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
1630             List.iter
1631               (fun (id, dsc) ->
1632                 let row = tree_store#append ~parent:interp_row () in
1633                 tree_store#set ~row ~column:id_col id;
1634                 tree_store#set ~row ~column:dsc_col dsc;
1635                 tree_store#set ~row ~column:interp_no_col !idx)
1636               interp)
1637           choices
1638
1639       method get_interp_no tree_path =
1640         let iter = tree_store#get_iter tree_path in
1641         tree_store#get ~row:iter ~column:interp_no_col
1642     end
1643
1644 let interactive_string_choice 
1645   text prefix_len ?(title = "") ?(msg = "") () ~id locs uris 
1646 =
1647   let gui = instance () in
1648     let dialog = gui#newUriDialog () in
1649     dialog#uriEntryHBox#misc#hide ();
1650     dialog#uriChoiceSelectedButton#misc#hide ();
1651     dialog#uriChoiceAutoButton#misc#hide ();
1652     dialog#uriChoiceConstantsButton#misc#hide ();
1653     dialog#uriChoiceTreeView#selection#set_mode
1654       (`SINGLE :> Gtk.Tags.selection_mode);
1655     let model = new stringListModel dialog#uriChoiceTreeView in
1656     let choices = ref None in
1657     dialog#uriChoiceDialog#set_title title; 
1658     let hack_len = MatitaGtkMisc.utf8_string_length text in
1659     let rec colorize acc_len = function
1660       | [] -> 
1661           let floc = HExtlib.floc_of_loc (acc_len,hack_len) in
1662           fst(MatitaGtkMisc.utf8_parsed_text text floc)
1663       | he::tl -> 
1664           let start, stop =  HExtlib.loc_of_floc he in
1665           let floc1 = HExtlib.floc_of_loc (acc_len,start) in
1666           let str1,_=MatitaGtkMisc.utf8_parsed_text text floc1 in
1667           let str2,_ = MatitaGtkMisc.utf8_parsed_text text he in
1668           str1 ^ "<b>" ^ str2 ^ "</b>" ^ colorize stop tl
1669     in
1670 (*     List.iter (fun l -> let start, stop = HExtlib.loc_of_floc l in
1671                 Printf.eprintf "(%d,%d)" start stop) locs; *)
1672     let locs = 
1673       List.sort 
1674         (fun loc1 loc2 -> 
1675           fst (HExtlib.loc_of_floc loc1) - fst (HExtlib.loc_of_floc loc2)) 
1676         locs 
1677     in
1678 (*     prerr_endline "XXXXXXXXXXXXXXXXXXXX";
1679     List.iter (fun l -> let start, stop = HExtlib.loc_of_floc l in
1680                 Printf.eprintf "(%d,%d)" start stop) locs;
1681     prerr_endline "XXXXXXXXXXXXXXXXXXXX2"; *)
1682     dialog#uriChoiceLabel#set_use_markup true;
1683     let txt = colorize 0 locs in
1684     let txt,_ = MatitaGtkMisc.utf8_parsed_text txt
1685       (HExtlib.floc_of_loc (prefix_len,MatitaGtkMisc.utf8_string_length txt))
1686     in
1687     dialog#uriChoiceLabel#set_label txt;
1688     List.iter model#easy_append uris;
1689     let return v =
1690       choices := v;
1691       dialog#uriChoiceDialog#destroy ();
1692       GMain.Main.quit ()
1693     in
1694     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
1695     connect_button dialog#uriChoiceForwardButton (fun _ ->
1696       match model#easy_selection () with
1697       | [] -> ()
1698       | uris -> return (Some uris));
1699     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
1700     dialog#uriChoiceDialog#show ();
1701     GtkThread.main ();
1702     (match !choices with 
1703     | None -> raise MatitaTypes.Cancel
1704     | Some uris -> uris)
1705
1706 let interactive_interp_choice () text prefix_len choices =
1707 (*List.iter (fun l -> prerr_endline "==="; List.iter (fun (_,id,dsc) -> prerr_endline (id ^ " = " ^ dsc)) l) choices;*)
1708  let filter_choices filter =
1709   let rec is_compatible filter =
1710    function
1711       [] -> true
1712     | ([],_,_)::tl -> is_compatible filter tl
1713     | (loc::tlloc,id,dsc)::tl ->
1714        try
1715         if List.assoc (loc,id) filter = dsc then
1716          is_compatible filter ((tlloc,id,dsc)::tl)
1717         else
1718          false
1719        with
1720         Not_found -> true
1721   in
1722    List.filter (fun (_,interp) -> is_compatible filter interp)
1723  in
1724  let rec get_choices loc id =
1725   function
1726      [] -> []
1727    | (_,he)::tl ->
1728       let _,_,dsc =
1729        List.find (fun (locs,id',_) -> id = id' && List.mem loc locs) he
1730       in
1731        dsc :: (List.filter (fun dsc' -> dsc <> dsc') (get_choices loc id tl))
1732  in
1733  let example_interp =
1734   match choices with
1735      [] -> assert false
1736    | he::_ -> he in
1737  let ask_user id locs choices =
1738   interactive_string_choice
1739    text prefix_len
1740    ~title:"Ambiguous input"
1741    ~msg:("Choose an interpretation for " ^ id) () ~id locs choices
1742  in
1743  let rec classify ids filter partial_interpretations =
1744   match ids with
1745      [] -> List.map fst partial_interpretations
1746    | ([],_,_)::tl -> classify tl filter partial_interpretations
1747    | (loc::tlloc,id,dsc)::tl ->
1748       let choices = get_choices loc id partial_interpretations in
1749       let chosen_dsc =
1750        match choices with
1751           [] -> prerr_endline ("NO CHOICES FOR " ^ id); assert false
1752         | [dsc] -> dsc
1753         | _ ->
1754           match ask_user id [loc] choices with
1755              [x] -> x
1756            | _ -> assert false
1757       in
1758        let filter = ((loc,id),chosen_dsc)::filter in
1759        let compatible_interps = filter_choices filter partial_interpretations in
1760         classify ((tlloc,id,dsc)::tl) filter compatible_interps
1761  in
1762  let enumerated_choices =
1763   let idx = ref ~-1 in
1764   List.map (fun interp -> incr idx; !idx,interp) choices
1765  in
1766   classify example_interp [] enumerated_choices
1767
1768 let _ =
1769   (* disambiguator callbacks *)
1770   GrafiteDisambiguator.set_choose_uris_callback (interactive_uri_choice ());
1771   GrafiteDisambiguator.set_choose_interp_callback (interactive_interp_choice ());
1772   (* gtk initialization *)
1773   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc_file; (* loads gtk rc *)
1774   GMathView.add_configuration_path BuildTimeConf.gtkmathview_conf;
1775   ignore (GMain.Main.init ())
1776