]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
snapshot
[helm.git] / helm / matita / matitaGui.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 (*
27 class stringListModel' uriChoiceDialog =
28   let tree_view = uriChoiceDialog#uriChoiceTreeView in
29   let column_list = new GTree.column_list in
30   let text_column = column_list#add Gobject.Data.string in
31   let list_store = GTree.list_store column_list in
32   let renderer = (GTree.cell_renderer_text [], ["text", text_column]) in
33   let view_column = GTree.view_column ~renderer () in
34   let _ = tree_view#set_model (Some (list_store :> GTree.model)) in
35   let _ = tree_view#append_column view_column in
36   object
37     method append s =
38       let tree_iter = list_store#append () in
39       list_store#set ~row:tree_iter ~column:text_column s
40     method clear () = list_store#clear ()
41   end
42 *)
43
44 open Printf
45
46 open MatitaGeneratedGui
47 open MatitaGtkMisc
48 open MatitaMisc
49
50 class gui file =
51     (* creation order _is_ relevant for windows placement *)
52   let toolbar = new toolBarWin ~file () in
53   let main = new mainWin ~file () in
54   let about = new aboutWin ~file () in
55   let fileSel = new fileSelectionWin ~file () in
56   let proof = new proofWin ~file () in
57   let check = new checkWin ~file () in
58   let script = new scriptWin ~file () in
59   let keyBindingBoxes = (* event boxes which should receive global key events *)
60     [ toolbar#toolBarEventBox; proof#proofWinEventBox; main#mainWinEventBox;
61       check#checkWinEventBox; script#scriptWinEventBox; main#consoleEventBox ]
62   in
63   let console =
64     MatitaConsole.console ~evbox:main#consoleEventBox
65       ~phrase_sep:BuildTimeConf.phrase_sep
66       ~packing:main#scrolledConsole#add ~paned:main#mainVPanes ()
67   in
68   let script_buf = script#scriptTextView#buffer in
69   object (self)
70     val mutable chosen_file = None
71
72       (** text mark and tag representing locked part of a script *)
73     val locked_mark =
74       script_buf#create_mark ~name:"locked" ~left_gravity:true
75         script_buf#start_iter
76     val locked_tag =
77       script_buf#create_tag [`BACKGROUND "green"; `EDITABLE false]
78
79     initializer
80         (* glade's check widgets *)
81       List.iter (fun w -> w#check_widgets ())
82         (let c w = (w :> <check_widgets: unit -> unit>) in
83          [ c about; c fileSel; c main; c proof; c toolbar; c check; c script ]);
84         (* "global" key bindings *)
85       List.iter (fun (key, callback) -> self#addKeyBinding key callback)
86         [ GdkKeysyms._F3,
87             toggle_win ~check:main#showProofMenuItem proof#proofWin;
88           GdkKeysyms._F4,
89             toggle_win ~check:main#showCheckMenuItem check#checkWin;
90           GdkKeysyms._F5,
91             toggle_win ~check:main#showScriptMenuItem script#scriptWin;
92           GdkKeysyms._x, (fun () -> console#toggle ());
93         ];
94         (* about win *)
95       ignore (about#aboutWin#event#connect#delete (fun _ -> true));
96       ignore (main#aboutMenuItem#connect#activate (fun _ ->
97         about#aboutWin#show ()));
98       connect_button about#aboutDismissButton (fun _ ->
99         about#aboutWin#misc#hide ());
100       about#aboutLabel#set_label (Pcre.replace ~pat:"@VERSION@"
101         ~templ:BuildTimeConf.version about#aboutLabel#label);
102         (* file selection win *)
103       ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true));
104       ignore (fileSel#fileSelectionWin#connect#response (fun event ->
105         let return r =
106           chosen_file <- r;
107           fileSel#fileSelectionWin#misc#hide ();
108           GMain.Main.quit ()
109         in
110         match event with
111         | `OK ->
112             let fname = fileSel#fileSelectionWin#filename in
113             if is_regular fname then return (Some fname)
114         | `CANCEL -> return None
115         | `HELP -> ()
116         | `DELETE_EVENT -> return None));
117         (* script *)
118         (* menus *)
119       toggle_visibility toolbar#toolBarWin main#showToolBarMenuItem;
120       toggle_visibility proof#proofWin main#showProofMenuItem;
121       toggle_visibility check#checkWin main#showCheckMenuItem;
122       toggle_visibility script#scriptWin main#showScriptMenuItem;
123       List.iter (fun w -> w#misc#set_sensitive false)
124         [ main#saveMenuItem; main#saveAsMenuItem ];
125       main#helpMenu#set_right_justified true;
126       ignore (main#showConsoleMenuItem#connect#activate console#toggle);
127         (* main *)
128       connect_button main#hideConsoleButton console#hide;
129 (*
130         (* console *)
131       console#echo_message (sprintf "\tMatita version %s\n"
132         BuildTimeConf.version);
133       console#echo_prompt ();
134       console#misc#grab_focus ();
135 *)
136
137     method about = about
138     method check = check
139     method console = console
140     method fileSel = fileSel
141     method main = main
142     method proof = proof
143     method script = script
144     method toolbar = toolbar
145
146     method newUriDialog () =
147       let dialog = new uriChoiceDialog ~file () in
148       dialog#check_widgets ();
149       dialog
150
151     method newInterpDialog () =
152       let dialog = new interpChoiceDialog ~file () in
153       dialog#check_widgets ();
154       dialog
155
156     method newConfirmationDialog () =
157       let dialog = new confirmationDialog ~file () in
158       dialog#check_widgets ();
159       dialog
160
161     method newEmptyDialog () =
162       let dialog = new emptyDialog ~file () in
163       dialog#check_widgets ();
164       dialog
165
166     method private addKeyBinding key callback =
167       List.iter (fun evbox -> add_key_binding key callback evbox)
168         keyBindingBoxes
169
170     method setQuitCallback callback =
171       ignore (main#toplevel#connect#destroy callback);
172       ignore (main#quitMenuItem#connect#activate callback);
173       self#addKeyBinding GdkKeysyms._q callback
174
175     method setPhraseCallback = console#set_callback
176
177     method chooseFile () =
178       fileSel#fileSelectionWin#show ();
179       GtkThread.main ();
180       chosen_file
181
182     method askText ?(title = "") ?(msg = "") () =
183       let dialog = new textDialog () in
184       dialog#textDialog#set_title title;
185       dialog#textDialogLabel#set_label msg;
186       let text = ref None in
187       let return v =
188         text := v;
189         dialog#textDialog#destroy ();
190         GMain.Main.quit ()
191       in
192       ignore (dialog#textDialog#event#connect#delete (fun _ -> true));
193       connect_button dialog#textDialogCancelButton (fun _ -> return None);
194       connect_button dialog#textDialogOkButton (fun _ ->
195         let text = dialog#textDialogTextView#buffer#get_text () in
196         return (Some text));
197       dialog#textDialog#show ();
198       GtkThread.main ();
199       !text
200
201     method lockScript offset =
202       let mark = `MARK locked_mark in
203       script_buf#move_mark mark ~where:(script_buf#get_iter_at_char offset);
204       script_buf#remove_tag locked_tag ~start:script_buf#start_iter
205         ~stop:script_buf#end_iter;
206       script_buf#apply_tag locked_tag ~start:script_buf#start_iter
207         ~stop:(script_buf#get_iter_at_mark mark)
208
209   end
210
211 let instance =
212   let gui = lazy (new gui (Helm_registry.get "matita.glade_file")) in
213   fun () -> Lazy.force gui
214