]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
added script template
[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 "yellow" ]
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
71   in
72   if (MatitaScript.instance ())#eos then
73     begin
74       let mooname = 
75         MatitaMisc.obj_file_of_script fname
76       in
77       let rc = 
78         MatitaGtkMisc.ask_confirmation
79         ~title:"A .moo can be generated"
80         ~message:(Printf.sprintf 
81           "%s can be generated for %s.\n<i>Should I generate it?</i>"
82           mooname fname)
83         ~parent ()
84       in
85       let b = 
86         match rc with 
87         | `YES -> true 
88         | `NO -> false 
89         | `CANCEL -> raise MatitaTypes.Cancel 
90       in
91       if b then
92         save ()
93       else
94         clean_current_baseuri status
95     end
96   else
97     clean_current_baseuri status 
98     
99 let ask_unsaved parent =
100   MatitaGtkMisc.ask_confirmation 
101     ~parent ~title:"Unsaved work!" 
102     ~message:("Your work is <b>unsaved</b>!\n\n"^
103          "<i>Do you want to save the script before exiting?</i>")
104     ()
105
106 class gui () =
107     (* creation order _is_ relevant for windows placement *)
108   let main = new mainWin () in
109   let about = new aboutWin () in
110   let fileSel = new fileSelectionWin () in
111   let keyBindingBoxes = (* event boxes which should receive global key events *)
112     [ main#mainWinEventBox ]
113   in
114   let console = new console ~buffer:main#logTextView#buffer () in
115   let (source_view: GSourceView.source_view) =
116     GSourceView.source_view
117       ~auto_indent:true
118       ~insert_spaces_instead_of_tabs:true ~tabs_width:2
119       ~margin:80 ~show_margin:true
120       ~smart_home_end:true
121       ~packing:main#scriptScrolledWin#add
122       ()
123   in
124   let default_font_size =
125     Helm_registry.get_opt_default Helm_registry.int
126       ~default:BuildTimeConf.default_font_size "matita.font_size"
127   in
128   let source_buffer = source_view#source_buffer in
129   object (self)
130     val mutable chosen_file = None
131     val mutable _ok_not_exists = false
132     val mutable script_fname = None
133     val mutable font_size = default_font_size
134    
135     initializer
136         (* glade's check widgets *)
137       List.iter (fun w -> w#check_widgets ())
138         (let c w = (w :> <check_widgets: unit -> unit>) in
139          [ c about; c fileSel; c main ]);
140         (* key bindings *)
141       List.iter (* global key bindings *)
142         (fun (key, callback) -> self#addKeyBinding key callback)
143 (*
144         [ GdkKeysyms._F3,
145             toggle_win ~check:main#showProofMenuItem proof#proofWin;
146           GdkKeysyms._F4,
147             toggle_win ~check:main#showCheckMenuItem check#checkWin;
148 *)
149         [ ];
150         (* about win *)
151       ignore (about#aboutWin#event#connect#delete (fun _ -> true));
152       ignore (main#aboutMenuItem#connect#activate (fun _ ->
153         about#aboutWin#show ()));
154       connect_button about#aboutDismissButton (fun _ ->
155         about#aboutWin#misc#hide ());
156       about#aboutLabel#set_label (Pcre.replace ~pat:"@VERSION@"
157         ~templ:BuildTimeConf.version about#aboutLabel#label);
158         (* file selection win *)
159       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
160       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
161         let return r =
162           chosen_file <- r;
163           fileSel#fileSelectionWin#misc#hide ();
164           GMain.Main.quit ()
165         in
166         match event with
167         | `OK ->
168             let fname = fileSel#fileSelectionWin#filename in
169             if Sys.file_exists fname then
170               (if is_regular fname then return (Some fname))
171             else
172               (if _ok_not_exists then return (Some fname))
173         | `CANCEL -> return None
174         | `HELP -> ()
175         | `DELETE_EVENT -> return None));
176         (* menus *)
177       List.iter (fun w -> w#misc#set_sensitive false) [ main#saveMenuItem ];
178       main#helpMenu#set_right_justified true;
179         (* console *)
180       let adj = main#logScrolledWin#vadjustment in
181       ignore (adj#connect#changed
182                 (fun _ -> adj#set_value (adj#upper -. adj#page_size)));
183       console#message (sprintf "\tMatita version %s\n" BuildTimeConf.version);
184         (* toolbar *)
185       let module A = TacticAst in
186       let hole = CicAst.UserInput in
187       let loc = CicAst.dummy_floc in
188       let tac ast _ =
189         if (MatitaScript.instance ())#onGoingProof () then
190           (MatitaScript.instance ())#advance
191             ~statement:("\n" ^ TacticAstPp.pp_tactical (A.Tactic (loc, ast))) ()
192       in
193       let tac_w_term ast _ =
194         if (MatitaScript.instance ())#onGoingProof () then
195           let buf = source_buffer in
196           buf#insert ~iter:(buf#get_iter_at_mark (`NAME "locked"))
197             ("\n" ^ TacticAstPp.pp_tactic ast)
198       in
199       let tbar = self#main in
200       connect_button tbar#introsButton (tac (A.Intros (loc, None, [])));
201       connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole)));
202       connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole)));
203       connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None, None, [])));
204       connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole, None, None, [])));
205       connect_button tbar#splitButton (tac (A.Split loc));
206       connect_button tbar#leftButton (tac (A.Left loc));
207       connect_button tbar#rightButton (tac (A.Right loc));
208       connect_button tbar#existsButton (tac (A.Exists loc));
209       connect_button tbar#reflexivityButton (tac (A.Reflexivity loc));
210       connect_button tbar#symmetryButton (tac (A.Symmetry loc));
211       connect_button tbar#transitivityButton
212         (tac_w_term (A.Transitivity (loc, hole)));
213       connect_button tbar#assumptionButton (tac (A.Assumption loc));
214       connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole)));
215       connect_button tbar#autoButton (tac (A.Auto (loc,None,None)));
216       MatitaGtkMisc.toggle_widget_visibility
217        ~widget:(self#main#tacticsButtonsHandlebox :> GObj.widget)
218        ~check:self#main#tacticsBarMenuItem;
219       let module Hr = Helm_registry in
220       if
221         not (Hr.get_opt_default Hr.bool ~default:false "matita.tactics_bar")
222       then 
223         self#main#tacticsBarMenuItem#set_active false;
224       MatitaGtkMisc.toggle_callback 
225         ~callback:(function 
226           | true -> self#main#toplevel#fullscreen () 
227           | false -> self#main#toplevel#unfullscreen ())
228         ~check:self#main#fullscreenMenuItem;
229       self#main#fullscreenMenuItem#set_active false;
230         (* log *)
231       MatitaLog.set_log_callback self#console#log_callback;
232       GtkSignal.user_handler :=
233         (fun exn -> MatitaLog.error (MatitaExcPp.to_string exn));
234         (* script *)
235       let _ =
236         match GSourceView.source_language_from_file BuildTimeConf.lang_file with
237         | None ->
238             MatitaLog.warn (sprintf "can't load language file %s"
239               BuildTimeConf.lang_file)
240         | Some matita_lang ->
241             source_buffer#set_language matita_lang;
242             source_buffer#set_highlight true
243       in
244       let s () = MatitaScript.instance () in
245       let disableSave () =
246         script_fname <- None;
247         self#main#saveMenuItem#misc#set_sensitive false
248       in
249       let saveAsScript () =
250         let script = s () in
251         match self#chooseFile ~ok_not_exists:true () with
252         | Some f -> 
253               script#assignFileName f;
254               script#saveToFile (); 
255               console#message ("'"^f^"' saved.\n");
256               self#_enableSaveTo f
257         | None -> ()
258       in
259       let saveScript () =
260         match script_fname with
261         | None -> saveAsScript ()
262         | Some f -> 
263               (s ())#assignFileName f;
264               (s ())#saveToFile ();
265               console#message ("'"^f^"' saved.\n");
266       in
267       let loadScript () =
268         let script = s () in 
269         let status = script#status in
270         try 
271           if source_view#buffer#modified then
272             begin
273               match ask_unsaved main#toplevel with
274               | `YES -> saveScript ()
275               | `NO -> ()
276               | `CANCEL -> raise MatitaTypes.Cancel
277             end;
278           (match script_fname with
279           | None -> ()
280           | Some fname -> 
281               ask_and_save_moo_if_needed main#toplevel fname status);
282           match self#chooseFile () with
283           | Some f -> 
284                 script#reset (); 
285                 script#assignFileName f;
286                 script#loadFromFile (); 
287                 console#message ("'"^f^"' loaded.\n");
288                 self#_enableSaveTo f
289           | None -> ()
290         with MatitaTypes.Cancel -> ()
291       in
292       let newScript () = 
293         (s ())#reset (); 
294         (s ())#template (); 
295         disableSave () 
296       in
297       let cursor () =
298         source_buffer#place_cursor
299           (source_buffer#get_iter_at_mark (`NAME "locked"))
300       in
301       let advance _ = (MatitaScript.instance ())#advance (); cursor () in
302       let retract _ = (MatitaScript.instance ())#retract (); cursor () in
303       let top _ = (MatitaScript.instance ())#goto `Top (); cursor () in
304       let bottom _ = (MatitaScript.instance ())#goto `Bottom (); cursor () in
305       let jump _ = (MatitaScript.instance ())#goto `Cursor (); cursor () in
306       let connect_key sym f =
307         connect_key self#main#mainWinEventBox#event
308           ~modifiers:[`CONTROL] ~stop:true sym f;
309         connect_key self#sourceView#event
310           ~modifiers:[`CONTROL] ~stop:true sym f
311       in
312         (* quit *)
313       self#setQuitCallback (fun () -> 
314         let status = (MatitaScript.instance ())#status in
315         if source_view#buffer#modified then
316           begin
317             let rc = ask_unsaved main#toplevel in 
318             try
319               match rc with
320               | `YES -> saveScript ();
321                         if not source_view#buffer#modified then
322                           begin
323                             (match script_fname with
324                             | None -> ()
325                             | Some fname -> 
326                                ask_and_save_moo_if_needed 
327                                  main#toplevel fname status);
328                           GMain.Main.quit ()
329                           end
330               | `NO -> GMain.Main.quit ()
331               | `CANCEL -> raise MatitaTypes.Cancel
332             with MatitaTypes.Cancel -> ()
333           end 
334         else 
335           begin  
336             (match script_fname with
337             | None -> clean_current_baseuri status; GMain.Main.quit ()
338             | Some fname ->
339                 try
340                   ask_and_save_moo_if_needed main#toplevel fname status;
341                   GMain.Main.quit ()
342                 with MatitaTypes.Cancel -> ())
343           end);
344       connect_button self#main#scriptAdvanceButton advance;
345       connect_button self#main#scriptRetractButton retract;
346       connect_button self#main#scriptTopButton top;
347       connect_button self#main#scriptBottomButton bottom;
348       connect_key GdkKeysyms._Down advance;
349       connect_key GdkKeysyms._Up retract;
350       connect_key GdkKeysyms._Home top;
351       connect_key GdkKeysyms._End bottom;
352       connect_button self#main#scriptJumpButton jump;
353       connect_menu_item self#main#openMenuItem   loadScript;
354       connect_menu_item self#main#saveMenuItem   saveScript;
355       connect_menu_item self#main#saveAsMenuItem saveAsScript;
356       connect_menu_item self#main#newMenuItem    newScript;
357       connect_key GdkKeysyms._period
358         (fun () ->
359           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
360             ".\n";
361           advance ());
362       connect_key GdkKeysyms._Return
363         (fun () ->
364           source_buffer#insert ~iter:(source_buffer#get_iter_at_mark `INSERT)
365             "\n";
366           advance ());
367          (* script monospace font stuff *)  
368       self#updateFontSize ();
369         (* debug menu *)
370       self#main#debugMenu#misc#hide ();
371         (* status bar *)
372       self#main#hintLowImage#set_file (image_path "matita-bulb-low.png");
373       self#main#hintMediumImage#set_file (image_path "matita-bulb-medium.png");
374       self#main#hintHighImage#set_file (image_path "matita-bulb-high.png");
375         (* focus *)
376       self#sourceView#misc#grab_focus ();
377         (* main win dimension *)
378       let width = Gdk.Screen.width () in
379       let height = Gdk.Screen.height () in
380       let main_w = width * 90 / 100 in 
381       let main_h = height * 80 / 100 in
382       let script_w = main_w * 6 / 10 in
383       self#main#toplevel#resize ~width:main_w ~height:main_h;
384       self#main#hpaneScriptSequent#set_position script_w  
385     
386     method loadScript file =       
387       let script = MatitaScript.instance () in
388       script#reset (); 
389       script#assignFileName file;
390       script#loadFromFile (); 
391       console#message ("'"^file^"' loaded.");
392       self#_enableSaveTo file
393       
394     method setStar name b =
395       let l = main#scriptLabel in
396       if b then
397         l#set_text (name ^  " *")
398       else
399         l#set_text (name)
400         
401     method private _enableSaveTo file =
402       script_fname <- Some file;
403       self#main#saveMenuItem#misc#set_sensitive true
404         
405
406     method console = console
407     method sourceView: GSourceView.source_view = (source_view: GSourceView.source_view)
408     method about = about
409     method fileSel = fileSel
410     method main = main
411
412     method newBrowserWin () =
413       object (self)
414         inherit browserWin ()
415         val combo = GEdit.combo_box_entry ()
416         initializer
417           self#check_widgets ();
418           let combo_widget = combo#coerce in
419           uriHBox#pack ~from:`END ~fill:true ~expand:true combo_widget;
420           combo#entry#misc#grab_focus ()
421         method browserUri = combo
422       end
423
424     method newUriDialog () =
425       let dialog = new uriChoiceDialog () in
426       dialog#check_widgets ();
427       dialog
428
429     method newInterpDialog () =
430       let dialog = new interpChoiceDialog () in
431       dialog#check_widgets ();
432       dialog
433
434     method newConfirmationDialog () =
435       let dialog = new confirmationDialog () in
436       dialog#check_widgets ();
437       dialog
438
439     method newEmptyDialog () =
440       let dialog = new emptyDialog () in
441       dialog#check_widgets ();
442       dialog
443
444     method private addKeyBinding key callback =
445       List.iter (fun evbox -> add_key_binding key callback evbox)
446         keyBindingBoxes
447
448     method setQuitCallback callback =
449       ignore (main#quitMenuItem#connect#activate callback);
450       ignore (main#toplevel#event#connect#delete 
451         (fun _ -> callback ();true));
452       self#addKeyBinding GdkKeysyms._q callback
453
454     method chooseFile ?(ok_not_exists = false) () =
455       _ok_not_exists <- ok_not_exists;
456       fileSel#fileSelectionWin#show ();
457       GtkThread.main ();
458       chosen_file
459
460     method askText ?(title = "") ?(msg = "") () =
461       let dialog = new textDialog () in
462       dialog#textDialog#set_title title;
463       dialog#textDialogLabel#set_label msg;
464       let text = ref None in
465       let return v =
466         text := v;
467         dialog#textDialog#destroy ();
468         GMain.Main.quit ()
469       in
470       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
471       connect_button dialog#textDialogCancelButton (fun _ -> return None);
472       connect_button dialog#textDialogOkButton (fun _ ->
473         let text = dialog#textDialogTextView#buffer#get_text () in
474         return (Some text));
475       dialog#textDialog#show ();
476       GtkThread.main ();
477       !text
478
479     method private updateFontSize () =
480       self#sourceView#misc#modify_font_by_name
481         (sprintf "%s %d" BuildTimeConf.script_font font_size)
482
483     method increaseFontSize () =
484       font_size <- font_size + 1;
485       self#updateFontSize ()
486
487     method decreaseFontSize () =
488       font_size <- font_size - 1;
489       self#updateFontSize ()
490
491     method resetFontSize () =
492       font_size <- default_font_size;
493       self#updateFontSize ()
494
495   end
496
497 let gui () = 
498   let g = new gui () in
499   gui_instance := Some g;
500   g
501   
502 let instance = singleton gui
503
504 let non p x = not (p x)
505
506 (* this is a shit and should be changed :-{ *)
507 let interactive_uri_choice
508   ?(selection_mode:[`SINGLE|`MULTIPLE] = `MULTIPLE) ?(title = "")
509   ?(msg = "") ?(nonvars_button = false) ?(hide_uri_entry=false) 
510   ?(hide_try=false) ?(ok_label="_Auto") ?(ok_action:[`SELECT|`AUTO] = `AUTO) 
511   ?copy_cb ()
512   ~id uris
513 =
514   let gui = instance () in
515   let nonvars_uris = lazy (List.filter (non UriManager.uri_is_var) uris) in
516   if (selection_mode <> `SINGLE) &&
517     (Helm_registry.get_bool "matita.auto_disambiguation")
518   then
519     Lazy.force nonvars_uris
520   else begin
521     let dialog = gui#newUriDialog () in
522     if hide_uri_entry then
523       dialog#uriEntryHBox#misc#hide ();
524     if hide_try then
525       begin
526       dialog#uriChoiceSelectedButton#misc#hide ();
527       dialog#uriChoiceConstantsButton#misc#hide ();
528       end;
529     dialog#okLabel#set_label ok_label;  
530     dialog#uriChoiceTreeView#selection#set_mode
531       (selection_mode :> Gtk.Tags.selection_mode);
532     let model = new stringListModel dialog#uriChoiceTreeView in
533     let choices = ref None in
534     let nonvars = ref false in
535     (match copy_cb with
536     | None -> ()
537     | Some cb ->
538         dialog#copyButton#misc#show ();
539         connect_button dialog#copyButton 
540         (fun _ ->
541           match model#easy_selection () with
542           | [u] -> (cb u)
543           | _ -> ()));
544     dialog#uriChoiceDialog#set_title title;
545     dialog#uriChoiceLabel#set_text msg;
546     List.iter model#easy_append (List.map UriManager.string_of_uri uris);
547     dialog#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
548     let return v =
549       choices := v;
550       dialog#uriChoiceDialog#destroy ();
551       GMain.Main.quit ()
552     in
553     ignore (dialog#uriChoiceDialog#event#connect#delete (fun _ -> true));
554     connect_button dialog#uriChoiceConstantsButton (fun _ ->
555       return (Some (Lazy.force nonvars_uris)));
556     if ok_action = `AUTO then
557       connect_button dialog#uriChoiceAutoButton (fun _ ->
558         Helm_registry.set_bool "matita.auto_disambiguation" true;
559         return (Some (Lazy.force nonvars_uris)))
560     else
561       connect_button dialog#uriChoiceAutoButton (fun _ ->
562         match model#easy_selection () with
563         | [] -> ()
564         | uris -> return (Some (List.map UriManager.uri_of_string uris)));
565     connect_button dialog#uriChoiceSelectedButton (fun _ ->
566       match model#easy_selection () with
567       | [] -> ()
568       | uris -> return (Some (List.map UriManager.uri_of_string uris)));
569     connect_button dialog#uriChoiceAbortButton (fun _ -> return None);
570     dialog#uriChoiceDialog#show ();
571     GtkThread.main ();
572     (match !choices with 
573     | None -> raise MatitaTypes.Cancel
574     | Some uris -> uris)
575   end
576
577 class interpModel =
578   let cols = new GTree.column_list in
579   let id_col = cols#add Gobject.Data.string in
580   let dsc_col = cols#add Gobject.Data.string in
581   let interp_no_col = cols#add Gobject.Data.int in
582   let tree_store = GTree.tree_store cols in
583   let id_renderer = GTree.cell_renderer_text [], ["text", id_col] in
584   let dsc_renderer = GTree.cell_renderer_text [], ["text", dsc_col] in
585   let id_view_col = GTree.view_column ~renderer:id_renderer () in
586   let dsc_view_col = GTree.view_column ~renderer:dsc_renderer () in
587   fun tree_view choices ->
588     object
589       initializer
590         tree_view#set_model (Some (tree_store :> GTree.model));
591         ignore (tree_view#append_column id_view_col);
592         ignore (tree_view#append_column dsc_view_col);
593         let name_of_interp =
594           (* try to find a reasonable name for an interpretation *)
595           let idx = ref 0 in
596           fun interp ->
597             try
598               List.assoc "0" interp
599             with Not_found ->
600               incr idx; string_of_int !idx
601         in
602         tree_store#clear ();
603         let idx = ref ~-1 in
604         List.iter
605           (fun interp ->
606             incr idx;
607             let interp_row = tree_store#append () in
608             tree_store#set ~row:interp_row ~column:id_col
609               (name_of_interp interp);
610             tree_store#set ~row:interp_row ~column:interp_no_col !idx;
611             List.iter
612               (fun (id, dsc) ->
613                 let row = tree_store#append ~parent:interp_row () in
614                 tree_store#set ~row ~column:id_col id;
615                 tree_store#set ~row ~column:dsc_col dsc;
616                 tree_store#set ~row ~column:interp_no_col !idx)
617               interp)
618           choices
619
620       method get_interp_no tree_path =
621         let iter = tree_store#get_iter tree_path in
622         tree_store#get ~row:iter ~column:interp_no_col
623     end
624
625 let interactive_interp_choice () choices =
626   let gui = instance () in
627   assert (choices <> []);
628   let dialog = gui#newInterpDialog () in
629   let model = new interpModel dialog#interpChoiceTreeView choices in
630   let interp_len = List.length (List.hd choices) in
631   dialog#interpChoiceDialog#set_title "Interpretation choice";
632   dialog#interpChoiceDialogLabel#set_label "Choose an interpretation:";
633   let interp_no = ref None in
634   let return _ =
635     dialog#interpChoiceDialog#destroy ();
636     GMain.Main.quit ()
637   in
638   let fail _ = interp_no := None; return () in
639   ignore (dialog#interpChoiceDialog#event#connect#delete (fun _ -> true));
640   connect_button dialog#interpChoiceOkButton (fun _ ->
641     match !interp_no with None -> () | Some _ -> return ());
642   connect_button dialog#interpChoiceCancelButton fail;
643   ignore (dialog#interpChoiceTreeView#connect#row_activated (fun path _ ->
644     interp_no := Some (model#get_interp_no path);
645     return ()));
646   let selection = dialog#interpChoiceTreeView#selection in
647   ignore (selection#connect#changed (fun _ ->
648     match selection#get_selected_rows with
649     | [path] ->
650         MatitaLog.debug (sprintf "selection: %d" (model#get_interp_no path));
651         interp_no := Some (model#get_interp_no path)
652     | _ -> assert false));
653   dialog#interpChoiceDialog#show ();
654   GtkThread.main ();
655   (match !interp_no with Some row -> [row] | _ -> raise MatitaTypes.Cancel)
656