]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaGui.ml
snapshot, notably history no longer remember annotations: they are
[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
49 class gui file =
50     (* creation order _is_ relevant for windows placement *)
51   let toolbar = new toolBarWin ~file () in
52   let main = new mainWin ~file () in
53   let about = new aboutWin ~file () in
54   let fileSel = new fileSelectionWin ~file () in
55   let proof = new proofWin ~file () in
56   let check = new checkWin ~file () in
57   let keyBindingBoxes = (* event boxes which should receive global key events *)
58     [ toolbar#toolBarEventBox; proof#proofWinEventBox; main#mainWinEventBox;
59       check#checkWinEventBox ]
60   in
61   let console =
62     MatitaConsole.console ~evbox:main#consoleEventBox
63       ~packing:main#scrolledConsole#add ()
64   in
65   object (self)
66     initializer
67         (* glade's check widgets *)
68       List.iter (fun w -> w#check_widgets ())
69         (let c w = (w :> <check_widgets: unit -> unit>) in
70          [ c about; c fileSel; c main; c proof; c toolbar; c check ]);
71         (* show/hide commands *)
72       toggle_visibility toolbar#toolBarWin main#showToolBarMenuItem;
73       toggle_visibility proof#proofWin main#showProofMenuItem;
74       toggle_visibility check#checkWin main#showCheckMenuItem;
75         (* "global" key bindings *)
76       List.iter (fun (key, callback) -> self#addKeyBinding key callback)
77         [ GdkKeysyms._F3,
78             toggle_win ~check:main#showProofMenuItem proof#proofWin;
79           GdkKeysyms._F4,
80             toggle_win ~check:main#showCheckMenuItem check#checkWin;
81         ];
82         (* about win *)
83       ignore (about#aboutWin#event#connect#delete (fun _ -> true));
84       ignore (main#aboutMenuItem#connect#activate (fun _ ->
85         about#aboutWin#show ()));
86       ignore (about#aboutDismissButton#connect#clicked (fun _ ->
87         about#aboutWin#misc#hide ()));
88       about#aboutLabel#set_label (Pcre.replace ~pat:"@VERSION@"
89         ~templ:BuildTimeConf.version about#aboutLabel#label);
90         (* menus *)
91       List.iter (fun w -> w#misc#set_sensitive false)
92         [ main#saveMenuItem; main#saveAsMenuItem ];
93       main#helpMenu#set_right_justified true;
94         (* console *)
95       console#echo_message (sprintf "\tMatita version %s\n"
96         BuildTimeConf.version);
97       console#echo_prompt ();
98       console#misc#grab_focus ()
99
100     method about = about
101     method check = check
102     method console = console
103     method fileSel = fileSel
104     method main = main
105     method proof = proof
106     method toolbar = toolbar
107
108     method newUriDialog () =
109       let dialog = new uriChoiceDialog ~file () in
110       dialog#check_widgets ();
111       dialog
112
113     method newInterpDialog () =
114       let dialog = new interpChoiceDialog ~file () in
115       dialog#check_widgets ();
116       dialog
117
118     method newConfirmationDialog () =
119       let dialog = new confirmationDialog ~file () in
120       dialog#check_widgets ();
121       dialog
122
123     method newEmptyDialog () =
124       let dialog = new emptyDialog ~file () in
125       dialog#check_widgets ();
126       dialog
127
128     method private addKeyBinding key callback =
129       List.iter (fun evbox -> add_key_binding key callback evbox)
130         keyBindingBoxes
131
132     method setQuitCallback callback =
133       ignore (main#toplevel#connect#destroy callback);
134       ignore (main#quitMenuItem#connect#activate callback);
135       self#addKeyBinding GdkKeysyms._q callback
136
137     method setPhraseCallback = console#set_callback
138
139   end
140
141 let instance =
142   let gui = lazy (new gui (Helm_registry.get "matita.glade_file")) in
143   fun () -> Lazy.force gui
144