]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGtkMisc.ml
snapshot
[helm.git] / helm / matita / matitaGtkMisc.ml
1 (* Copyright (C) 2004, 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 let toggle_visibility ~(win: GWindow.window) ~(check: GMenu.check_menu_item) =
27   ignore (check#connect#toggled (fun _ ->
28     if check#active then win#show () else win#misc#hide ()));
29   ignore (win#event#connect#delete (fun _ ->
30     win#misc#hide ();
31     check#set_active false;
32     true))
33
34 let toggle_win ?(check: GMenu.check_menu_item option) (win: GWindow.window) () =
35   if win#is_active then win#misc#hide () else win#show ();
36   match check with
37   | None -> ()
38   | Some check -> check#set_active (not check#active)
39
40 let add_key_binding key callback (evbox: GBin.event_box) =
41   ignore (evbox#event#connect#key_press (function
42     | key' when GdkEvent.Key.keyval key' = key ->
43         callback ();
44         false
45     | _ -> false))
46
47 class stringListModel (tree_view: GTree.view) =
48   let column_list = new GTree.column_list in
49   let text_column = column_list#add Gobject.Data.string in
50   let list_store = GTree.list_store column_list in
51   object (self)
52
53     initializer
54       let renderer = (GTree.cell_renderer_text [], ["text", text_column]) in
55       let view_column = GTree.view_column ~renderer () in
56       tree_view#set_model (Some (list_store :> GTree.model));
57       ignore (tree_view#append_column view_column)
58
59     method list_store = list_store
60
61     method easy_append s =
62       let tree_iter = list_store#append () in
63       list_store#set ~row:tree_iter ~column:text_column s
64
65     method easy_insert pos s =
66       let tree_iter = list_store#insert pos in
67       list_store#set ~row:tree_iter ~column:text_column s
68
69     method easy_selection () =
70       List.map
71         (fun tree_path ->
72           let iter = list_store#get_iter tree_path in
73           list_store#get ~row:iter ~column:text_column)
74         tree_view#selection#get_selected_rows
75
76   end
77
78 let is_var_uri s =
79   try
80     String.sub s (String.length s - 4) 4 = ".var"
81   with Invalid_argument _ -> false
82
83 let non p x = not (p x)
84
85 exception No_choice
86
87 class type gui =
88   object method newUriDialog: unit -> MatitaGeneratedGui.uriChoiceDialog end
89
90 let interactive_user_uri_choice
91 (*   ~(gui: <newUriDialog: unit -> MatitaGeneratedGui.uriChoiceDialog>) *)
92   ~(gui:#gui)
93   ~(selection_mode:Gtk.Tags.selection_mode) ~title ~msg ?(nonvars_button=false)
94   uris
95 =
96   let nonvars_uris = lazy (List.filter (non is_var_uri) uris) in
97   if (selection_mode <> `SINGLE) &&
98     (Helm_registry.get_bool "matita.auto_disambiguation")
99   then
100     Lazy.force nonvars_uris
101   else begin
102     let win = gui#newUriDialog () in
103     win#uriChoiceTreeView#selection#set_mode selection_mode;
104     let model = new stringListModel win#uriChoiceTreeView in
105     let choices = ref None in
106     let nonvars = ref false in
107     win#uriChoiceDialog#set_title title;
108     win#uriChoiceLabel#set_text msg;
109     List.iter model#easy_append uris;
110     win#uriChoiceConstantsButton#misc#set_sensitive nonvars_button;
111     let return v =
112       choices := v;
113       win#uriChoiceDialog#destroy ();
114       GMain.Main.quit ()
115     in
116     ignore (win#uriChoiceConstantsButton#connect#clicked (fun _ ->
117       return (Some (Lazy.force nonvars_uris))));
118     ignore (win#uriChoiceAutoButton#connect#clicked (fun _ ->
119       Helm_registry.set_bool "matita.auto_disambiguation" true;
120       return (Some (Lazy.force nonvars_uris))));
121     ignore (win#uriChoiceSelectedButton#connect#clicked (fun _ ->
122       match model#easy_selection () with
123       | [] -> ()
124       | uris -> return (Some uris)));
125     ignore (win#uriChoiceAbortButton#connect#clicked (fun _ -> return None));
126     ignore (win#uriChoiceDialog#event#connect#delete (fun _ -> true));
127     win#uriChoiceDialog#show ();
128     GtkThread.main ();
129     (match !choices with None -> raise No_choice | Some uris -> uris)
130   end
131