]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
compilation of needed modules now outputs to the log window
[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           in
175           let text = findRepl#findEntry#text in
176           let iter = source_buffer#get_iter `SEL_BOUND in
177           match iter#forward_search text with
178           | None -> 
179               (match source_buffer#start_iter#forward_search text with
180               | None -> ()
181               | Some (start,end_) -> highlight start end_)
182           | Some (start,end_) -> highlight start end_ 
183       in
184       let replace _ =
185         let text = findRepl#replaceEntry#text in
186         let ins = source_buffer#get_iter `INSERT in
187         let sel = source_buffer#get_iter `SEL_BOUND in
188         if ins#compare sel < 0 then 
189           begin
190             ignore(source_buffer#delete_selection ());
191             source_buffer#insert text
192           end
193       in
194       connect_button findRepl#findButton find_forward;
195       connect_button findRepl#findReplButton replace;
196       connect_button findRepl#cancelButton (fun _ -> hide_find_Repl ());
197       ignore(findRepl#toplevel#event#connect#delete 
198         ~callback:(fun _ -> hide_find_Repl ();true));
199       ignore(self#main#findReplMenuItem#connect#activate
200         ~callback:show_find_Repl);
201       ignore (findRepl#findEntry#connect#activate ~callback:find_forward);
202         (* developments win *)
203       let model = 
204         new MatitaGtkMisc.multiStringListModel 
205           ~cols:2 develList#developmentsTreeview
206       in
207       let refresh_devels_win () =
208         model#list_store#clear ();
209         List.iter 
210           (fun (name, root) -> model#easy_mappend [name;root]) 
211           (MatitamakeLib.list_known_developments ())
212       in
213       let get_devel_selected () = 
214         match model#easy_mselection () with
215         | [[name;_]] -> MatitamakeLib.development_for_name name
216         | _ -> assert false 
217       in
218       connect_button develList#newButton
219         (fun () -> 
220           next_devel_must_contain <- None;
221           newDevel#toplevel#misc#show());
222       connect_button develList#deleteButton
223         (fun () -> 
224           (match get_devel_selected () with
225           | None -> ()
226           | Some d -> MatitamakeLib.destroy_development d);
227           refresh_devels_win ());
228       let refresh () = 
229         while Glib.Main.pending () do 
230           ignore(Glib.Main.iteration false); 
231         done
232       in
233       connect_button develList#buildButton 
234         (fun () -> 
235           match get_devel_selected () with
236           | None -> ()
237           | Some d -> ignore(MatitamakeLib.build_development_in_bg refresh d));
238       connect_button develList#cleanButton 
239         (fun () -> 
240           match get_devel_selected () with
241           | None -> ()
242           | Some d -> ignore(MatitamakeLib.clean_development_in_bg refresh d));
243       connect_button develList#closeButton 
244         (fun () -> develList#toplevel#misc#hide());
245       ignore(develList#toplevel#event#connect#delete 
246         (fun _ -> develList#toplevel#misc#hide();true));
247       let selected_devel = ref None in
248       connect_menu_item self#main#developmentsMenuItem
249         (fun () -> refresh_devels_win ();develList#toplevel#misc#show ());
250       
251         (* add development win *)
252       let check_if_root_contains root =
253         match next_devel_must_contain with
254         | None -> true
255         | Some path -> 
256             let is_prefix_of d1 d2 =
257               let len1 = String.length d1 in
258               let len2 = String.length d2 in
259               if len2 < len1 then 
260                 false
261               else
262                 let pref = String.sub d2 0 len1 in
263                 pref = d1
264             in
265             is_prefix_of root path
266       in
267       connect_button newDevel#addButton 
268        (fun () -> 
269           let name = newDevel#nameEntry#text in
270           let root = newDevel#rootEntry#text in
271           if check_if_root_contains root then
272             begin
273               ignore (MatitamakeLib.initialize_development name root);
274               refresh_devels_win ();
275               newDevel#nameEntry#set_text "";
276               newDevel#rootEntry#set_text "";
277               newDevel#toplevel#misc#hide()
278             end
279           else
280             MatitaLog.error ("The selected root does not contain " ^ 
281               match next_devel_must_contain with 
282               | Some x -> x 
283               | _ -> assert false));
284       connect_button newDevel#chooseRootButton 
285        (fun () ->
286          let path = self#chooseDir () in
287          match path with
288          | Some path -> newDevel#rootEntry#set_text path
289          | None -> ());
290       connect_button newDevel#cancelButton 
291        (fun () -> newDevel#toplevel#misc#hide ());
292       ignore(newDevel#toplevel#event#connect#delete 
293         (fun _ -> newDevel#toplevel#misc#hide();true));
294       
295         (* file selection win *)
296       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
297       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
298         let return r =
299           chosen_file <- r;
300           fileSel#fileSelectionWin#misc#hide ();
301           GMain.Main.quit ()
302         in
303         match event with
304         | `OK ->
305             let fname = fileSel#fileSelectionWin#filename in
306             if Sys.file_exists fname then
307               begin
308                 if is_regular fname && not(_only_directory) then 
309                   return (Some fname) 
310                 else if _only_directory && is_dir fname then 
311                   return (Some fname)
312               end
313             else
314               begin
315                 if _ok_not_exists then 
316                   return (Some fname)
317               end
318         | `CANCEL -> return None
319         | `HELP -> ()
320         | `DELETE_EVENT -> return None));
321         (* menus *)
322       List.iter (fun w -> w#misc#set_sensitive false) [ main#saveMenuItem ];
323       main#helpMenu#set_right_justified true;
324         (* console *)
325       let adj = main#logScrolledWin#vadjustment in
326         ignore (adj#connect#changed
327                 (fun _ -> adj#set_value (adj#upper -. adj#page_size)));
328       console#message (sprintf "\tMatita version %s\n" BuildTimeConf.version);
329         (* toolbar *)
330       let module A = GrafiteAst in
331       let hole = CicNotationPt.UserInput in
332       let loc = Disambiguate.dummy_floc in
333       let tac ast _ =
334         if (MatitaScript.instance ())#onGoingProof () then
335           (MatitaScript.instance ())#advance
336             ~statement:("\n" ^ GrafiteAstPp.pp_tactical (A.Tactic (loc, ast)))
337             ()
338       in
339       let tac_w_term ast _ =
340         if (MatitaScript.instance ())#onGoingProof () then
341           let buf = source_buffer in
342           buf#insert ~iter:(buf#get_iter_at_mark (`NAME "locked"))
343             ("\n" ^ GrafiteAstPp.pp_tactic ast)
344       in
345       let tbar = self#main in
346       connect_button tbar#introsButton (tac (A.Intros (loc, None, [])));
347       connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole)));
348       connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole)));
349       connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None, None, [])));
350       connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole, None, None, [])));
351       connect_button tbar#splitButton (tac (A.Split loc));
352       connect_button tbar#leftButton (tac (A.Left loc));
353       connect_button tbar#rightButton (tac (A.Right loc));
354       connect_button tbar#existsButton (tac (A.Exists loc));
355       connect_button tbar#reflexivityButton (tac (A.Reflexivity loc));
356       connect_button tbar#symmetryButton (tac (A.Symmetry loc));
357       connect_button tbar#transitivityButton
358         (tac_w_term (A.Transitivity (loc, hole)));
359       connect_button tbar#assumptionButton (tac (A.Assumption loc));
360       connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole)));
361       connect_button tbar#autoButton (tac (A.Auto (loc,None,None)));
362       MatitaGtkMisc.toggle_widget_visibility
363        ~widget:(self#main#tacticsButtonsHandlebox :> GObj.widget)
364        ~check:self#main#tacticsBarMenuItem;
365       let module Hr = Helm_registry in
366       if
367         not (Hr.get_opt_default Hr.bool ~default:false "matita.tactics_bar")
368       then 
369         self#main#tacticsBarMenuItem#set_active false;
370       MatitaGtkMisc.toggle_callback 
371         ~callback:(function 
372           | true -> self#main#toplevel#fullscreen () 
373           | false -> self#main#toplevel#unfullscreen ())
374         ~check:self#main#fullscreenMenuItem;
375       self#main#fullscreenMenuItem#set_active false;
376         (* log *)
377       MatitaLog.set_log_callback self#console#log_callback;
378       GtkSignal.user_handler :=
379         (fun exn -> MatitaLog.error (MatitaExcPp.to_string exn));
380         (* script *)
381       let _ =
382         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
383         | None ->
384             MatitaLog.warn (sprintf "can't load language file %s"
385               BuildTimeConf.lang_file)
386         | Some matita_lang ->
387             source_buffer#set_language matita_lang;
388             source_buffer#set_highlight true
389       in
390       let s () = MatitaScript.instance () in
391       let disableSave () =
392         script_fname <- None;
393         self#main#saveMenuItem#misc#set_sensitive false
394       in
395       let saveAsScript () =
396         let script = s () in
397         match self#chooseFile ~ok_not_exists:true () with
398         | Some f -> 
399               script#assignFileName f;
400               script#saveToFile (); 
401               console#message ("'"^f^"' saved.\n");
402               self#_enableSaveTo f
403         | None -> ()
404       in
405       let saveScript () =
406         match script_fname with
407         | None -> saveAsScript ()
408         | Some f -> 
409               (s ())#assignFileName f;
410               (s ())#saveToFile ();
411               console#message ("'"^f^"' saved.\n");
412       in
413       let loadScript () =
414         let script = s () in 
415         let status = script#status in
416         try 
417           if source_view#buffer#modified then
418             begin
419               match ask_unsaved main#toplevel with
420               | `YES -> saveScript ()
421               | `NO -> ()
422               | `CANCEL -> raise MatitaTypes.Cancel
423             end;
424           (match script_fname with
425           | None -> ()
426           | Some fname -> 
427               ask_and_save_moo_if_needed main#toplevel fname status);
428           match self#chooseFile () with
429           | Some f -> 
430                 script#reset (); 
431                 script#assignFileName f;
432                 script#loadFromFile (); 
433                 console#message ("'"^f^"' loaded.\n");
434                 self#_enableSaveTo f
435           | None -> ()
436         with MatitaTypes.Cancel -> ()
437       in
438       let newScript () = 
439         (s ())#reset (); 
440         (s ())#template (); 
441         disableSave ();
442         script_fname <- None
443       in
444       let cursor () =
445         source_buffer#place_cursor
446           (source_buffer#get_iter_at_mark (`NAME "locked"))
447       in
448       let lock_world _ =
449         main#buttonsToolbar#misc#set_sensitive false;
450         source_view#set_editable false
451       in
452       let unlock_world _ =
453         main#buttonsToolbar#misc#set_sensitive true;
454         source_view#set_editable true
455       in
456       let advance _ = (MatitaScript.instance ())#advance (); cursor () in
457       let retract _ = (MatitaScript.instance ())#retract (); cursor () in
458       let top _ = (MatitaScript.instance ())#goto `Top (); cursor () in
459       let bottom _ = (MatitaScript.instance ())#goto `Bottom (); cursor () in
460       let jump _ = (MatitaScript.instance ())#goto `Cursor (); cursor () in
461       let locker f = 
462         fun () -> 
463           lock_world ();
464           try f ();unlock_world () with exc -> unlock_world (); raise exc
465       in
466       let advance = locker advance in
467       let retract = locker retract in
468       let top = locker top in
469       let bottom = locker bottom in
470       let jump = locker jump in
471       let connect_key sym f =
472         connect_key self#main#mainWinEventBox#event
473           ~modifiers:[`CONTROL] ~stop:true sym f;
474         connect_key self#sourceView#event
475           ~modifiers:[`CONTROL] ~stop:true sym f
476       in
477         (* quit *)
478       self#setQuitCallback (fun () -> 
479         let status = (MatitaScript.instance ())#status in
480         if source_view#buffer#modified then
481           begin
482             let rc = ask_unsaved main#toplevel in 
483             try
484               match rc with
485               | `YES -> saveScript ();
486                         if not source_view#buffer#modified then
487                           begin
488                             (match script_fname with
489                             | None -> ()
490                             | Some fname -> 
491                                ask_and_save_moo_if_needed 
492                                  main#toplevel fname status);
493                           GMain.Main.quit ()
494                           end
495               | `NO -> GMain.Main.quit ()
496               | `CANCEL -> raise MatitaTypes.Cancel
497             with MatitaTypes.Cancel -> ()
498           end 
499         else 
500           begin  
501             (match script_fname with
502             | None -> clean_current_baseuri status; GMain.Main.quit ()
503             | Some fname ->
504                 try
505                   ask_and_save_moo_if_needed main#toplevel fname status;
506                   GMain.Main.quit ()
507                 with MatitaTypes.Cancel -> ())
508           end);
509       connect_button self#main#scriptAdvanceButton advance;
510       connect_button self#main#scriptRetractButton retract;
511       connect_button self#main#scriptTopButton top;
512       connect_button self#main#scriptBottomButton bottom;
513       connect_key GdkKeysyms._Down advance;
514       connect_key GdkKeysyms._Up retract;
515       connect_key GdkKeysyms._Home top;
516       connect_key GdkKeysyms._End bottom;
517       connect_button self#main#scriptJumpButton jump;
518       connect_menu_item self#main#openMenuItem   loadScript;
519       connect_menu_item self#main#saveMenuItem   saveScript;
520       connect_menu_item self#main#saveAsMenuItem saveAsScript;
521       connect_menu_item self#main#newMenuItem    newScript;
522       connect_key GdkKeysyms._period
523         (fun () ->
524           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
525             ".\n";
526           advance ());
527       connect_key GdkKeysyms._Return
528         (fun () ->
529           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
530             "\n";
531           advance ());
532          (* script monospace font stuff *)  
533       self#updateFontSize ();
534         (* debug menu *)
535       self#main#debugMenu#misc#hide ();
536         (* status bar *)
537       self#main#hintLowImage#set_file (image_path "matita-bulb-low.png");
538       self#main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
539       self#main#hintHighImage#set_file (image_path "matita-bulb-high.png");
540         (* focus *)
541       self#sourceView#misc#grab_focus ();
542         (* main win dimension *)
543       let width = Gdk.Screen.width () in
544       let height = Gdk.Screen.height () in
545       let main_w = width * 90 / 100 in 
546       let main_h = height * 80 / 100 in
547       let script_w = main_w * 6 / 10 in
548       self#main#toplevel#resize ~width:main_w ~height:main_h;
549       self#main#hpaneScriptSequent#set_position script_w;
550         (* source_view *)
551       ignore(source_view#connect#after#paste_clipboard 
552         ~callback:(fun () -> (MatitaScript.instance ())#clean_dirty_lock))
553     
554     method loadScript file =       
555       let script = MatitaScript.instance () in
556       script#reset (); 
557       script#assignFileName file;
558       if not (Sys.file_exists file) then
559         begin
560           let oc = open_out file in
561           let template = MatitaMisc.input_file BuildTimeConf.script_template in 
562           output_string oc template;
563           close_out oc
564         end;
565       script#loadFromFile ();
566       console#message ("'"^file^"' loaded.");
567       self#_enableSaveTo file
568       
569     method setStar name b =
570       let l = main#scriptLabel in
571       if b then
572         l#set_text (name ^  " *")
573       else
574         l#set_text (name)
575         
576     method private _enableSaveTo file =
577       script_fname <- Some file;
578       self#main#saveMenuItem#misc#set_sensitive true
579         
580
581     method console = console
582     method sourceView: GSourceView.source_view = (source_view: GSourceView.source_view)
583     method about = about
584     method fileSel = fileSel
585     method findRepl = findRepl
586     method main = main
587     method develList = develList
588     method newDevel = newDevel
589
590     method newBrowserWin () =
591       object (self)
592         inherit browserWin ()
593         val combo = GEdit.combo_box_entry ()
594         initializer
595           self#check_widgets ();
596           let combo_widget = combo#coerce in
597           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
598           combo#entry#misc#grab_focus ()
599         method browserUri = combo
600       end
601
602     method newUriDialog () =
603       let dialog = new uriChoiceDialog () in
604       dialog#check_widgets ();
605       dialog
606
607     method newInterpDialog () =
608       let dialog = new interpChoiceDialog () in
609       dialog#check_widgets ();
610       dialog
611
612     method newConfirmationDialog () =
613       let dialog = new confirmationDialog () in
614       dialog#check_widgets ();
615       dialog
616
617     method newEmptyDialog () =
618       let dialog = new emptyDialog () in
619       dialog#check_widgets ();
620       dialog
621
622     method private addKeyBinding key callback =
623       List.iter (fun evbox -> add_key_binding key callback evbox)
624         keyBindingBoxes
625
626     method setQuitCallback callback =
627       ignore (main#quitMenuItem#connect#activate callback);
628       ignore (main#toplevel#event#connect#delete 
629         (fun _ -> callback ();true));
630       self#addKeyBinding GdkKeysyms._q callback
631
632     method chooseFile ?(ok_not_exists = false) () =
633       _ok_not_exists <- ok_not_exists;
634       _only_directory <- false;
635       fileSel#fileSelectionWin#show ();
636       GtkThread.main ();
637       chosen_file
638
639     method private chooseDir ?(ok_not_exists = false) () =
640       _ok_not_exists <- ok_not_exists;
641       _only_directory <- true;
642       fileSel#fileSelectionWin#show ();
643       GtkThread.main ();
644       (* we should check that this is a directory *)
645       chosen_file
646   
647     method createDevelopment ~containing =
648       next_devel_must_contain <- containing;
649       newDevel#toplevel#misc#show()
650
651     method askText ?(title = "") ?(msg = "") () =
652       let dialog = new textDialog () in
653       dialog#textDialog#set_title title;
654       dialog#textDialogLabel#set_label msg;
655       let text = ref None in
656       let return v =
657         text := v;
658         dialog#textDialog#destroy ();
659         GMain.Main.quit ()
660       in
661       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
662       connect_button dialog#textDialogCancelButton (fun _ -> return None);
663       connect_button dialog#textDialogOkButton (fun _ ->
664         let text = dialog#textDialogTextView#buffer#get_text () in
665         return (Some text));
666       dialog#textDialog#show ();
667       GtkThread.main ();
668       !text
669
670     method private updateFontSize () =
671       self#sourceView#misc#modify_font_by_name
672         (sprintf "%s %d" BuildTimeConf.script_font font_size)
673
674     method increaseFontSize () =
675       font_size <- font_size + 1;
676       self#updateFontSize ()
677
678     method decreaseFontSize () =
679       font_size <- font_size - 1;
680       self#updateFontSize ()
681
682     method resetFontSize () =
683       font_size <- default_font_size;
684       self#updateFontSize ()
685
686   end
687
688 let gui () = 
689   let g = new gui () in
690   gui_instance := Some g;
691   g
692   
693 let instance = singleton gui
694
695 let non p x = not (p x)
696
697 (* this is a shit and should be changed :-{ *)
698 let interactive_uri_choice
699   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
700   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
701   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
702   ?copy_cb ()
703   ~id uris
704 =
705   let gui = instance () in
706   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
707   if (selection_mode <> `SINGLE) &&
708     (Helm_registry.get_bool "matita.auto_disambiguation")
709   then
710     Lazy.force nonvars_uris
711   else begin
712     let dialog = gui#newUriDialog () in
713     if hide_uri_entry then
714       dialog#uriEntryHBox#misc#hide ();
715     if hide_try then
716       begin
717       dialog#uriChoiceSelectedButton#misc#hide ();
718       dialog#uriChoiceConstantsButton#misc#hide ();
719       end;
720     dialog#okLabel#set_label ok_label;  
721     dialog#uriChoiceTreeView#selection#set_mode
722       (selection_mode :> Gtk.Tags.selection_mode);
723     let model = new stringListModel dialog#uriChoiceTreeView in
724     let choices = ref None in
725     let nonvars = ref false in
726     (match copy_cb with
727     | None -> ()
728     | Some cb ->
729         dialog#copyButton#misc#show ();
730         connect_button dialog#copyButton 
731         (fun _ ->
732           match model#easy_selection () with
733           | [u] -> (cb u)
734           | _ -> ()));
735     dialog#uriChoiceDialog#set_title title;
736     dialog#uriChoiceLabel#set_text msg;
737     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
738     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
739     let return v =
740       choices := v;
741       dialog#uriChoiceDialog#destroy ();
742       GMain.Main.quit ()
743     in
744     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
745     connect_button dialog#uriChoiceConstantsButton (fun _ ->
746       return (Some (Lazy.force nonvars_uris)));
747     if ok_action = `AUTO then
748       connect_button dialog#uriChoiceAutoButton (fun _ ->
749         Helm_registry.set_bool "matita.auto_disambiguation" true;
750         return (Some (Lazy.force nonvars_uris)))
751     else
752       connect_button dialog#uriChoiceAutoButton (fun _ ->
753         match model#easy_selection () with
754         | [] -> ()
755         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
756     connect_button dialog#uriChoiceSelectedButton (fun _ ->
757       match model#easy_selection () with
758       | [] -> ()
759       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
760     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
761     dialog#uriChoiceDialog#show ();
762     GtkThread.main ();
763     (match !choices with 
764     | None -> raise MatitaTypes.Cancel
765     | Some uris -> uris)
766   end
767
768 class interpModel =
769   let cols = new GTree.column_list in
770   let id_col = cols#add Gobject.Data.string in
771   let dsc_col = cols#add Gobject.Data.string in
772   let interp_no_col = cols#add Gobject.Data.int in
773   let tree_store = GTree.tree_store cols in
774   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
775   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
776   let id_view_col = GTree.view_column ~renderer:id_renderer () in
777   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
778   fun tree_view choices ->
779     object
780       initializer
781         tree_view#set_model (Some (tree_store :> GTree.model));
782         ignore (tree_view#append_column id_view_col);
783         ignore (tree_view#append_column dsc_view_col);
784         let name_of_interp =
785           (* try to find a reasonable name for an interpretation *)
786           let idx = ref 0 in
787           fun interp ->
788             try
789               List.assoc "0" interp
790             with Not_found ->
791               incr idx; string_of_int !idx
792         in
793         tree_store#clear ();
794         let idx = ref ~-1 in
795         List.iter
796           (fun interp ->
797             incr idx;
798             let interp_row = tree_store#append () in
799             tree_store#set ~row:interp_row ~column:id_col
800               (name_of_interp interp);
801             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
802             List.iter
803               (fun (id, dsc) ->
804                 let row = tree_store#append ~parent:interp_row () in
805                 tree_store#set ~row ~column:id_col id;
806                 tree_store#set ~row ~column:dsc_col dsc;
807                 tree_store#set ~row ~column:interp_no_col !idx)
808               interp)
809           choices
810
811       method get_interp_no tree_path =
812         let iter = tree_store#get_iter tree_path in
813         tree_store#get ~row:iter ~column:interp_no_col
814     end
815
816 let interactive_interp_choice () choices =
817   let gui = instance () in
818   assert (choices <> []);
819   let dialog = gui#newInterpDialog () in
820   let model = new interpModel dialog#interpChoiceTreeView choices in
821   let interp_len = List.length (List.hd choices) in
822   dialog#interpChoiceDialog#set_title "Interpretation choice";
823   dialog#interpChoiceDialogLabel#set_label "Choose an interpretation:";
824   let interp_no = ref None in
825   let return _ =
826     dialog#interpChoiceDialog#destroy ();
827     GMain.Main.quit ()
828   in
829   let fail _ = interp_no := None; return () in
830   ignore (dialog#interpChoiceDialog#event#connect#delete (fun _ -> true));
831   connect_button dialog#interpChoiceOkButton (fun _ ->
832     match !interp_no with None -> () | Some _ -> return ());
833   connect_button dialog#interpChoiceCancelButton fail;
834   ignore (dialog#interpChoiceTreeView#connect#row_activated (fun path _ ->
835     interp_no := Some (model#get_interp_no path);
836     return ()));
837   let selection = dialog#interpChoiceTreeView#selection in
838   ignore (selection#connect#changed (fun _ ->
839     match selection#get_selected_rows with
840     | [path] ->
841         MatitaLog.debug (sprintf "selection: %d" (model#get_interp_no path));
842         interp_no := Some (model#get_interp_no path)
843     | _ -> assert false));
844   dialog#interpChoiceDialog#show ();
845   GtkThread.main ();
846   (match !interp_no with Some row -> [row] | _ -> raise MatitaTypes.Cancel)
847