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