]> matita.cs.unibo.it Git - helm.git/blob - helm/mathita/mathitaGtkMisc.ml
snapshot
[helm.git] / helm / mathita / mathitaGtkMisc.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