]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaGui.ml
matitaGui: some missing cases during disambiguation now treated
[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         (* log *)
1018       HLog.set_log_callback self#console#log_callback;
1019       GtkSignal.user_handler :=
1020         (function 
1021         | MatitaScript.ActionCancelled s -> HLog.error s
1022         | exn ->
1023           if not (Helm_registry.get_bool "matita.debug") then
1024            notify_exn exn
1025           else raise exn);
1026         (* script *)
1027       ignore (source_buffer#connect#mark_set (fun _ _ -> next_ligatures <- []));
1028       let _ =
1029         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
1030         | None ->
1031             HLog.warn (sprintf "can't load language file %s"
1032               BuildTimeConf.lang_file)
1033         | Some matita_lang ->
1034             source_buffer#set_language matita_lang;
1035             source_buffer#set_highlight true
1036       in
1037       let s () = MatitaScript.current () in
1038       let disableSave () =
1039         script_fname <- None;
1040         main#saveMenuItem#misc#set_sensitive false
1041       in
1042       let saveAsScript () =
1043         let script = s () in
1044         match self#chooseFile ~ok_not_exists:true () with
1045         | Some f -> 
1046               script#assignFileName f;
1047               script#saveToFile (); 
1048               console#message ("'"^f^"' saved.\n");
1049               self#_enableSaveTo f
1050         | None -> ()
1051       in
1052       let saveScript () =
1053         match script_fname with
1054         | None -> saveAsScript ()
1055         | Some f -> 
1056               (s ())#assignFileName f;
1057               (s ())#saveToFile ();
1058               console#message ("'"^f^"' saved.\n");
1059       in
1060       let abandon_script () =
1061         let lexicon_status = (s ())#lexicon_status in
1062         let grafite_status = (s ())#grafite_status in
1063         if source_view#buffer#modified then
1064           (match ask_unsaved main#toplevel with
1065           | `YES -> saveScript ()
1066           | `NO -> ()
1067           | `CANCEL -> raise MatitaTypes.Cancel);
1068         (match script_fname with
1069         | None -> ()
1070         | Some fname ->
1071            ask_and_save_moo_if_needed main#toplevel fname
1072             lexicon_status grafite_status);
1073       in
1074       let loadScript () =
1075         let script = s () in 
1076         try 
1077           match self#chooseFile () with
1078           | Some f -> 
1079               abandon_script ();
1080               script#reset (); 
1081               script#assignFileName f;
1082               source_view#source_buffer#begin_not_undoable_action ();
1083               script#loadFromFile f; 
1084               source_view#source_buffer#end_not_undoable_action ();
1085               console#message ("'"^f^"' loaded.\n");
1086               self#_enableSaveTo f
1087           | None -> ()
1088         with MatitaTypes.Cancel -> ()
1089       in
1090       let newScript () = 
1091         abandon_script ();
1092         source_view#source_buffer#begin_not_undoable_action ();
1093         (s ())#reset (); 
1094         (s ())#template (); 
1095         source_view#source_buffer#end_not_undoable_action ();
1096         disableSave ();
1097         script_fname <- None
1098       in
1099       let cursor () =
1100         source_buffer#place_cursor
1101           (source_buffer#get_iter_at_mark (`NAME "locked")) in
1102       let advance _ = (MatitaScript.current ())#advance (); cursor () in
1103       let retract _ = (MatitaScript.current ())#retract (); cursor () in
1104       let top _ = (MatitaScript.current ())#goto `Top (); cursor () in
1105       let bottom _ = (MatitaScript.current ())#goto `Bottom (); cursor () in
1106       let jump _ = (MatitaScript.current ())#goto `Cursor (); cursor () in
1107       let advance = locker (keep_focus advance) in
1108       let retract = locker (keep_focus retract) in
1109       let top = locker (keep_focus top) in
1110       let bottom = locker (keep_focus bottom) in
1111       let jump = locker (keep_focus jump) in
1112         (* quit *)
1113       self#setQuitCallback (fun () -> 
1114         let lexicon_status = (MatitaScript.current ())#lexicon_status in
1115         let grafite_status = (MatitaScript.current ())#grafite_status in
1116         if source_view#buffer#modified then
1117           begin
1118             let rc = ask_unsaved main#toplevel in 
1119             try
1120               match rc with
1121               | `YES -> saveScript ();
1122                         if not source_view#buffer#modified then
1123                           begin
1124                             (match script_fname with
1125                             | None -> ()
1126                             | Some fname -> 
1127                                ask_and_save_moo_if_needed main#toplevel
1128                                 fname lexicon_status grafite_status);
1129                           GMain.Main.quit ()
1130                           end
1131               | `NO -> GMain.Main.quit ()
1132               | `CANCEL -> raise MatitaTypes.Cancel
1133             with MatitaTypes.Cancel -> ()
1134           end 
1135         else 
1136           begin  
1137             (match script_fname with
1138             | None -> clean_current_baseuri grafite_status; GMain.Main.quit ()
1139             | Some fname ->
1140                 try
1141                   ask_and_save_moo_if_needed main#toplevel fname lexicon_status
1142                    grafite_status;
1143                   GMain.Main.quit ()
1144                 with MatitaTypes.Cancel -> ())
1145           end);
1146       connect_button main#scriptAdvanceButton advance;
1147       connect_button main#scriptRetractButton retract;
1148       connect_button main#scriptTopButton top;
1149       connect_button main#scriptBottomButton bottom;
1150       connect_button main#scriptJumpButton jump;
1151       connect_button main#scriptAbortButton kill_worker;
1152       connect_menu_item main#scriptAdvanceMenuItem advance;
1153       connect_menu_item main#scriptRetractMenuItem retract;
1154       connect_menu_item main#scriptTopMenuItem top;
1155       connect_menu_item main#scriptBottomMenuItem bottom;
1156       connect_menu_item main#scriptJumpMenuItem jump;
1157       connect_menu_item main#openMenuItem   loadScript;
1158       connect_menu_item main#saveMenuItem   saveScript;
1159       connect_menu_item main#saveAsMenuItem saveAsScript;
1160       connect_menu_item main#newMenuItem    newScript;
1161          (* script monospace font stuff *)  
1162       self#updateFontSize ();
1163         (* debug menu *)
1164       main#debugMenu#misc#hide ();
1165         (* status bar *)
1166       main#hintLowImage#set_file (image_path "matita-bulb-low.png");
1167       main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
1168       main#hintHighImage#set_file (image_path "matita-bulb-high.png");
1169         (* focus *)
1170       self#sourceView#misc#grab_focus ();
1171         (* main win dimension *)
1172       let width = Gdk.Screen.width () in
1173       let height = Gdk.Screen.height () in
1174       let main_w = width * 90 / 100 in 
1175       let main_h = height * 80 / 100 in
1176       let script_w = main_w * 6 / 10 in
1177       main#toplevel#resize ~width:main_w ~height:main_h;
1178       main#hpaneScriptSequent#set_position script_w;
1179         (* source_view *)
1180       ignore(source_view#connect#after#paste_clipboard 
1181         ~callback:(fun () -> (MatitaScript.current ())#clean_dirty_lock));
1182       (* clean_locked is set to true only "during" a PRIMARY paste
1183          operation (i.e. by clicking with the second mouse button) *)
1184       let clean_locked = ref false in
1185       ignore(source_view#event#connect#button_press
1186         ~callback:
1187           (fun button ->
1188             if GdkEvent.Button.button button = 2 then
1189              clean_locked := true;
1190             false
1191           ));
1192       ignore(source_view#event#connect#button_release
1193         ~callback:(fun button -> clean_locked := false; false));
1194       ignore(source_view#buffer#connect#after#apply_tag
1195        ~callback:(
1196          fun tag ~start:_ ~stop:_ ->
1197           if !clean_locked &&
1198              tag#get_oid = (MatitaScript.current ())#locked_tag#get_oid
1199           then
1200            begin
1201             clean_locked := false;
1202             (MatitaScript.current ())#clean_dirty_lock;
1203             clean_locked := true
1204            end));
1205       (* math view handling *)
1206       connect_menu_item main#newCicBrowserMenuItem (fun () ->
1207         ignore (MatitaMathView.cicBrowser ()));
1208       connect_menu_item main#increaseFontSizeMenuItem (fun () ->
1209         self#increaseFontSize ();
1210         MatitaMathView.increase_font_size ();
1211         MatitaMathView.update_font_sizes ());
1212       connect_menu_item main#decreaseFontSizeMenuItem (fun () ->
1213         self#decreaseFontSize ();
1214         MatitaMathView.decrease_font_size ();
1215         MatitaMathView.update_font_sizes ());
1216       connect_menu_item main#normalFontSizeMenuItem (fun () ->
1217         self#resetFontSize ();
1218         MatitaMathView.reset_font_size ();
1219         MatitaMathView.update_font_sizes ());
1220       MatitaMathView.reset_font_size ();
1221
1222       (** selections / clipboards handling *)
1223
1224     method markupSelected = MatitaMathView.has_selection ()
1225     method private textSelected =
1226       (source_buffer#get_iter_at_mark `INSERT)#compare
1227         (source_buffer#get_iter_at_mark `SEL_BOUND) <> 0
1228     method private somethingSelected = self#markupSelected || self#textSelected
1229     method private markupStored = MatitaMathView.has_clipboard ()
1230     method private textStored = clipboard#text <> None
1231     method private somethingStored = self#markupStored || self#textStored
1232
1233     method canCopy = self#somethingSelected
1234     method canCut = self#textSelected
1235     method canDelete = self#textSelected
1236     method canPaste = self#somethingStored
1237     method canPastePattern = self#markupStored
1238
1239     method copy () =
1240       if self#textSelected
1241       then begin
1242         MatitaMathView.empty_clipboard ();
1243         source_view#buffer#copy_clipboard clipboard;
1244       end else
1245         MatitaMathView.copy_selection ()
1246     method cut () =
1247       source_view#buffer#cut_clipboard clipboard;
1248       MatitaMathView.empty_clipboard ()
1249     method delete () = ignore (source_view#buffer#delete_selection ())
1250     method paste () =
1251       if MatitaMathView.has_clipboard ()
1252       then source_view#buffer#insert (MatitaMathView.paste_clipboard `Term)
1253       else source_view#buffer#paste_clipboard clipboard;
1254       (MatitaScript.current ())#clean_dirty_lock
1255     method pastePattern () =
1256       source_view#buffer#insert (MatitaMathView.paste_clipboard `Pattern)
1257     
1258     method private nextLigature () =
1259       let iter = source_buffer#get_iter_at_mark `INSERT in
1260       let write_ligature len s =
1261         assert(Glib.Utf8.validate s);
1262         source_buffer#delete ~start:iter ~stop:(iter#copy#backward_chars len);
1263         source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT) s
1264       in
1265       let get_ligature word =
1266         let len = String.length word in
1267         let aux_tex () =
1268           try
1269             for i = len - 1 downto 0 do
1270               if HExtlib.is_alpha word.[i] then ()
1271               else
1272                 (if word.[i] = '\\' then raise (Found i) else raise (Found ~-1))
1273             done;
1274             None
1275           with Found i ->
1276             if i = ~-1 then None else Some (String.sub word i (len - i))
1277         in
1278         let aux_ligature () =
1279           try
1280             for i = len - 1 downto 0 do
1281               if CicNotationLexer.is_ligature_char word.[i] then ()
1282               else raise (Found (i+1))
1283             done;
1284             raise (Found 0)
1285           with
1286           | Found i ->
1287               (try
1288                 Some (String.sub word i (len - i))
1289               with Invalid_argument _ -> None)
1290         in
1291         match aux_tex () with
1292         | Some macro -> macro
1293         | None -> (match aux_ligature () with Some l -> l | None -> word)
1294       in
1295       (match next_ligatures with
1296       | [] -> (* find ligatures and fill next_ligatures, then try again *)
1297           let last_word =
1298             iter#get_slice
1299               ~stop:(iter#copy#backward_find_char Glib.Unichar.isspace)
1300           in
1301           let ligature = get_ligature last_word in
1302           (match CicNotationLexer.lookup_ligatures ligature with
1303           | [] -> ()
1304           | hd :: tl ->
1305               write_ligature (MatitaGtkMisc.utf8_string_length ligature) hd;
1306               next_ligatures <- tl @ [ hd ])
1307       | hd :: tl ->
1308           write_ligature 1 hd;
1309           next_ligatures <- tl @ [ hd ])
1310
1311     method private externalEditor () =
1312       let cmd = Helm_registry.get "matita.external_editor" in
1313 (* ZACK uncomment to enable interactive ask of external editor command *)
1314 (*      let cmd =
1315          let msg =
1316           "External editor command:
1317 %f  will be substitute for the script name,
1318 %p  for the cursor position in bytes,
1319 %l  for the execution point in bytes."
1320         in
1321         ask_text ~gui:self ~title:"External editor" ~msg ~multiline:false
1322           ~default:(Helm_registry.get "matita.external_editor") ()
1323       in *)
1324       let fname = (MatitaScript.current ())#filename in
1325       let slice mark =
1326         source_buffer#start_iter#get_slice
1327           ~stop:(source_buffer#get_iter_at_mark mark)
1328       in
1329       let script = MatitaScript.current () in
1330       let locked = `MARK script#locked_mark in
1331       let string_pos mark = string_of_int (String.length (slice mark)) in
1332       let cursor_pos = string_pos `INSERT in
1333       let locked_pos = string_pos locked in
1334       let cmd =
1335         Pcre.replace ~pat:"%f" ~templ:fname
1336           (Pcre.replace ~pat:"%p" ~templ:cursor_pos
1337             (Pcre.replace ~pat:"%l" ~templ:locked_pos
1338               cmd))
1339       in
1340       let locked_before = slice locked in
1341       let locked_offset = (source_buffer#get_iter_at_mark locked)#offset in
1342       ignore (Unix.system cmd);
1343       source_buffer#set_text (HExtlib.input_file fname);
1344       let locked_iter = source_buffer#get_iter (`OFFSET locked_offset) in
1345       source_buffer#move_mark locked locked_iter;
1346       source_buffer#apply_tag script#locked_tag
1347         ~start:source_buffer#start_iter ~stop:locked_iter;
1348       let locked_after = slice locked in
1349       let line = ref 0 in
1350       let col = ref 0 in
1351       try
1352         for i = 0 to String.length locked_before - 1 do
1353           if locked_before.[i] <> locked_after.[i] then begin
1354             source_buffer#place_cursor
1355               ~where:(source_buffer#get_iter (`LINEBYTE (!line, !col)));
1356             script#goto `Cursor ();
1357             raise Exit
1358           end else if locked_before.[i] = '\n' then begin
1359             incr line;
1360             col := 0
1361           end
1362         done
1363       with
1364       | Exit -> ()
1365       | Invalid_argument _ -> script#goto `Bottom ()
1366
1367     method loadScript file =       
1368       let script = MatitaScript.current () in
1369       script#reset (); 
1370       if Pcre.pmatch ~pat:"\\.p$" file then
1371         begin
1372           let tptppath = 
1373             Helm_registry.get_opt_default Helm_registry.string ~default:"./"
1374               "matita.tptppath"
1375           in
1376           let data = Matitaprover.p_to_ma ~filename:file ~tptppath () in
1377           let filename = Pcre.replace ~pat:"\\.p$" ~templ:".ma" file in
1378           script#assignFileName filename;
1379           source_view#source_buffer#begin_not_undoable_action ();
1380           script#loadFromString data;
1381           source_view#source_buffer#end_not_undoable_action ();
1382           console#message ("'"^filename^"' loaded.");
1383           self#_enableSaveTo filename
1384         end
1385       else
1386         begin
1387           script#assignFileName file;
1388           let content =
1389            if Sys.file_exists file then file
1390            else BuildTimeConf.script_template
1391           in
1392            source_view#source_buffer#begin_not_undoable_action ();
1393            script#loadFromFile content;
1394            source_view#source_buffer#end_not_undoable_action ();
1395            console#message ("'"^file^"' loaded.");
1396            self#_enableSaveTo file
1397         end
1398       
1399     method setStar name b =
1400       let l = main#scriptLabel in
1401       if b then
1402         l#set_text (name ^  " *")
1403       else
1404         l#set_text (name)
1405         
1406     method private _enableSaveTo file =
1407       script_fname <- Some file;
1408       self#main#saveMenuItem#misc#set_sensitive true
1409         
1410     method console = console
1411     method sourceView: GSourceView.source_view =
1412       (source_view: GSourceView.source_view)
1413     method fileSel = fileSel
1414     method findRepl = findRepl
1415     method main = main
1416     method develList = develList
1417     method newDevel = newDevel
1418
1419     method newBrowserWin () =
1420       object (self)
1421         inherit browserWin ()
1422         val combo = GEdit.combo_box_entry ()
1423         initializer
1424           self#check_widgets ();
1425           let combo_widget = combo#coerce in
1426           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
1427           combo#entry#misc#grab_focus ()
1428         method browserUri = combo
1429       end
1430
1431     method newUriDialog () =
1432       let dialog = new uriChoiceDialog () in
1433       dialog#check_widgets ();
1434       dialog
1435
1436     method newConfirmationDialog () =
1437       let dialog = new confirmationDialog () in
1438       dialog#check_widgets ();
1439       dialog
1440
1441     method newEmptyDialog () =
1442       let dialog = new emptyDialog () in
1443       dialog#check_widgets ();
1444       dialog
1445
1446     method private addKeyBinding key callback =
1447       List.iter (fun evbox -> add_key_binding key callback evbox)
1448         keyBindingBoxes
1449
1450     method setQuitCallback callback =
1451       connect_menu_item main#quitMenuItem callback;
1452       ignore (main#toplevel#event#connect#delete 
1453         (fun _ -> callback ();true));
1454       self#addKeyBinding GdkKeysyms._q callback
1455
1456     method chooseFile ?(ok_not_exists = false) () =
1457       _ok_not_exists <- ok_not_exists;
1458       _only_directory <- false;
1459       fileSel#fileSelectionWin#show ();
1460       GtkThread.main ();
1461       chosen_file
1462
1463     method private chooseDir ?(ok_not_exists = false) () =
1464       _ok_not_exists <- ok_not_exists;
1465       _only_directory <- true;
1466       fileSel#fileSelectionWin#show ();
1467       GtkThread.main ();
1468       (* we should check that this is a directory *)
1469       chosen_file
1470   
1471     method createDevelopment ~containing =
1472       next_devel_must_contain <- containing;
1473       newDevel#toplevel#misc#show()
1474
1475     method askText ?(title = "") ?(msg = "") () =
1476       let dialog = new textDialog () in
1477       dialog#textDialog#set_title title;
1478       dialog#textDialogLabel#set_label msg;
1479       let text = ref None in
1480       let return v =
1481         text := v;
1482         dialog#textDialog#destroy ();
1483         GMain.Main.quit ()
1484       in
1485       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
1486       connect_button dialog#textDialogCancelButton (fun _ -> return None);
1487       connect_button dialog#textDialogOkButton (fun _ ->
1488         let text = dialog#textDialogTextView#buffer#get_text () in
1489         return (Some text));
1490       dialog#textDialog#show ();
1491       GtkThread.main ();
1492       !text
1493
1494     method private updateFontSize () =
1495       self#sourceView#misc#modify_font_by_name
1496         (sprintf "%s %d" BuildTimeConf.script_font font_size)
1497
1498     method increaseFontSize () =
1499       font_size <- font_size + 1;
1500       self#updateFontSize ()
1501
1502     method decreaseFontSize () =
1503       font_size <- font_size - 1;
1504       self#updateFontSize ()
1505
1506     method resetFontSize () =
1507       font_size <- default_font_size;
1508       self#updateFontSize ()
1509
1510   end
1511
1512 let gui () = 
1513   let g = new gui () in
1514   gui_instance := Some g;
1515   MatitaMathView.set_gui g;
1516   g
1517   
1518 let instance = singleton gui
1519
1520 let non p x = not (p x)
1521
1522 (* this is a shit and should be changed :-{ *)
1523 let interactive_uri_choice
1524   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
1525   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
1526   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
1527   ?copy_cb ()
1528   ~id uris
1529 =
1530   let gui = instance () in
1531   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
1532   if (selection_mode <> `SINGLE) &&
1533     (Helm_registry.get_opt_default Helm_registry.get_bool ~default:true "matita.auto_disambiguation")
1534   then
1535     Lazy.force nonvars_uris
1536   else begin
1537     let dialog = gui#newUriDialog () in
1538     if hide_uri_entry then
1539       dialog#uriEntryHBox#misc#hide ();
1540     if hide_try then
1541       begin
1542       dialog#uriChoiceSelectedButton#misc#hide ();
1543       dialog#uriChoiceConstantsButton#misc#hide ();
1544       end;
1545     dialog#okLabel#set_label ok_label;  
1546     dialog#uriChoiceTreeView#selection#set_mode
1547       (selection_mode :> Gtk.Tags.selection_mode);
1548     let model = new stringListModel dialog#uriChoiceTreeView in
1549     let choices = ref None in
1550     (match copy_cb with
1551     | None -> ()
1552     | Some cb ->
1553         dialog#copyButton#misc#show ();
1554         connect_button dialog#copyButton 
1555         (fun _ ->
1556           match model#easy_selection () with
1557           | [u] -> (cb u)
1558           | _ -> ()));
1559     dialog#uriChoiceDialog#set_title title;
1560     dialog#uriChoiceLabel#set_text msg;
1561     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
1562     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
1563     let return v =
1564       choices := v;
1565       dialog#uriChoiceDialog#destroy ();
1566       GMain.Main.quit ()
1567     in
1568     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
1569     connect_button dialog#uriChoiceConstantsButton (fun _ ->
1570       return (Some (Lazy.force nonvars_uris)));
1571     if ok_action = `AUTO then
1572       connect_button dialog#uriChoiceAutoButton (fun _ ->
1573         Helm_registry.set_bool "matita.auto_disambiguation" true;
1574         return (Some (Lazy.force nonvars_uris)))
1575     else
1576       connect_button dialog#uriChoiceAutoButton (fun _ ->
1577         match model#easy_selection () with
1578         | [] -> ()
1579         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
1580     connect_button dialog#uriChoiceSelectedButton (fun _ ->
1581       match model#easy_selection () with
1582       | [] -> ()
1583       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
1584     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
1585     dialog#uriChoiceDialog#show ();
1586     GtkThread.main ();
1587     (match !choices with 
1588     | None -> raise MatitaTypes.Cancel
1589     | Some uris -> uris)
1590   end
1591
1592 class interpModel =
1593   let cols = new GTree.column_list in
1594   let id_col = cols#add Gobject.Data.string in
1595   let dsc_col = cols#add Gobject.Data.string in
1596   let interp_no_col = cols#add Gobject.Data.int in
1597   let tree_store = GTree.tree_store cols in
1598   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
1599   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
1600   let id_view_col = GTree.view_column ~renderer:id_renderer () in
1601   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
1602   fun tree_view choices ->
1603     object
1604       initializer
1605         tree_view#set_model (Some (tree_store :> GTree.model));
1606         ignore (tree_view#append_column id_view_col);
1607         ignore (tree_view#append_column dsc_view_col);
1608         let name_of_interp =
1609           (* try to find a reasonable name for an interpretation *)
1610           let idx = ref 0 in
1611           fun interp ->
1612             try
1613               List.assoc "0" interp
1614             with Not_found ->
1615               incr idx; string_of_int !idx
1616         in
1617         tree_store#clear ();
1618         let idx = ref ~-1 in
1619         List.iter
1620           (fun interp ->
1621             incr idx;
1622             let interp_row = tree_store#append () in
1623             tree_store#set ~row:interp_row ~column:id_col
1624               (name_of_interp interp);
1625             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
1626             List.iter
1627               (fun (id, dsc) ->
1628                 let row = tree_store#append ~parent:interp_row () in
1629                 tree_store#set ~row ~column:id_col id;
1630                 tree_store#set ~row ~column:dsc_col dsc;
1631                 tree_store#set ~row ~column:interp_no_col !idx)
1632               interp)
1633           choices
1634
1635       method get_interp_no tree_path =
1636         let iter = tree_store#get_iter tree_path in
1637         tree_store#get ~row:iter ~column:interp_no_col
1638     end
1639
1640 let interactive_string_choice 
1641   text prefix_len ?(title = "") ?(msg = "") () ~id locs uris 
1642 =
1643   let gui = instance () in
1644     let dialog = gui#newUriDialog () in
1645     dialog#uriEntryHBox#misc#hide ();
1646     dialog#uriChoiceSelectedButton#misc#hide ();
1647     dialog#uriChoiceAutoButton#misc#hide ();
1648     dialog#uriChoiceConstantsButton#misc#hide ();
1649     dialog#uriChoiceTreeView#selection#set_mode
1650       (`SINGLE :> Gtk.Tags.selection_mode);
1651     let model = new stringListModel dialog#uriChoiceTreeView in
1652     let choices = ref None in
1653     dialog#uriChoiceDialog#set_title title; 
1654     let hack_len = MatitaGtkMisc.utf8_string_length text in
1655     let rec colorize acc_len = function
1656       | [] -> 
1657           let floc = HExtlib.floc_of_loc (acc_len,hack_len) in
1658           fst(MatitaGtkMisc.utf8_parsed_text text floc)
1659       | he::tl -> 
1660           let start, stop =  HExtlib.loc_of_floc he in
1661           let floc1 = HExtlib.floc_of_loc (acc_len,start) in
1662           let str1,_=MatitaGtkMisc.utf8_parsed_text text floc1 in
1663           let str2,_ = MatitaGtkMisc.utf8_parsed_text text he in
1664           str1 ^ "<b>" ^ str2 ^ "</b>" ^ colorize stop tl
1665     in
1666 (*     List.iter (fun l -> let start, stop = HExtlib.loc_of_floc l in
1667                 Printf.eprintf "(%d,%d)" start stop) locs; *)
1668     let locs = 
1669       List.sort 
1670         (fun loc1 loc2 -> 
1671           fst (HExtlib.loc_of_floc loc1) - fst (HExtlib.loc_of_floc loc2)) 
1672         locs 
1673     in
1674 (*     prerr_endline "XXXXXXXXXXXXXXXXXXXX";
1675     List.iter (fun l -> let start, stop = HExtlib.loc_of_floc l in
1676                 Printf.eprintf "(%d,%d)" start stop) locs;
1677     prerr_endline "XXXXXXXXXXXXXXXXXXXX2"; *)
1678     dialog#uriChoiceLabel#set_use_markup true;
1679     let txt = colorize 0 locs in
1680     let txt,_ = MatitaGtkMisc.utf8_parsed_text txt
1681       (HExtlib.floc_of_loc (prefix_len,MatitaGtkMisc.utf8_string_length txt))
1682     in
1683     dialog#uriChoiceLabel#set_label txt;
1684     List.iter model#easy_append uris;
1685     let return v =
1686       choices := v;
1687       dialog#uriChoiceDialog#destroy ();
1688       GMain.Main.quit ()
1689     in
1690     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
1691     connect_button dialog#uriChoiceForwardButton (fun _ ->
1692       match model#easy_selection () with
1693       | [] -> ()
1694       | uris -> return (Some uris));
1695     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
1696     dialog#uriChoiceDialog#show ();
1697     GtkThread.main ();
1698     (match !choices with 
1699     | None -> raise MatitaTypes.Cancel
1700     | Some uris -> uris)
1701
1702 let interactive_interp_choice () text prefix_len choices =
1703 (*List.iter (fun l -> prerr_endline "==="; List.iter (fun (_,id,dsc) -> prerr_endline (id ^ " = " ^ dsc)) l) choices;*)
1704  let filter_choices filter =
1705   let rec is_compatible filter =
1706    function
1707       [] -> true
1708     | ([],_,_)::tl -> is_compatible filter tl
1709     | (loc::tlloc,id,dsc)::tl ->
1710        try
1711         if List.assoc (loc,id) filter = dsc then
1712          is_compatible filter ((tlloc,id,dsc)::tl)
1713         else
1714          false
1715        with
1716         Not_found -> true
1717   in
1718    List.filter (fun (_,interp) -> is_compatible filter interp)
1719  in
1720  let rec get_choices loc id =
1721   function
1722      [] -> []
1723    | (_,he)::tl ->
1724       let _,_,dsc =
1725        List.find (fun (locs,id',_) -> id = id' && List.mem loc locs) he
1726       in
1727        dsc :: (List.filter (fun dsc' -> dsc <> dsc') (get_choices loc id tl))
1728  in
1729  let example_interp =
1730   match choices with
1731      [] -> assert false
1732    | he::_ -> he in
1733  let ask_user id locs choices =
1734   interactive_string_choice
1735    text prefix_len
1736    ~title:"Ambiguous input"
1737    ~msg:("Choose an interpretation for " ^ id) () ~id locs choices
1738  in
1739  let rec classify ids filter partial_interpretations =
1740   match ids with
1741      [] -> List.map fst partial_interpretations
1742    | ([],_,_)::tl -> classify tl filter partial_interpretations
1743    | (loc::tlloc,id,dsc)::tl ->
1744       let choices = get_choices loc id partial_interpretations in
1745       let chosen_dsc =
1746        match choices with
1747           [] -> prerr_endline ("NO CHOICES FOR " ^ id); assert false
1748         | [dsc] -> dsc
1749         | _ ->
1750           match ask_user id [loc] choices with
1751              [x] -> x
1752            | _ -> assert false
1753       in
1754        let filter = ((loc,id),chosen_dsc)::filter in
1755        let compatible_interps = filter_choices filter partial_interpretations in
1756         classify ((tlloc,id,dsc)::tl) filter compatible_interps
1757  in
1758  let enumerated_choices =
1759   let idx = ref ~-1 in
1760   List.map (fun interp -> incr idx; !idx,interp) choices
1761  in
1762   classify example_interp [] enumerated_choices
1763
1764 let _ =
1765   (* disambiguator callbacks *)
1766   GrafiteDisambiguator.set_choose_uris_callback (interactive_uri_choice ());
1767   GrafiteDisambiguator.set_choose_interp_callback (interactive_interp_choice ());
1768   (* gtk initialization *)
1769   GtkMain.Rc.add_default_file BuildTimeConf.gtkrc_file; (* loads gtk rc *)
1770   GMathView.add_configuration_path BuildTimeConf.gtkmathview_conf;
1771   ignore (GMain.Main.init ())
1772