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