]> matita.cs.unibo.it Git - helm.git/blob - matita/matitaTypes.ml
177cfb3af42ac179331ffc07ddb524c88d68b3fd
[helm.git] / matita / matitaTypes.ml
1 (* Copyright (C) 2004-2005, 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 (* $Id$ *)
27
28 open Printf
29 open GrafiteTypes
30
31   (** user hit the cancel button *)
32 exception Cancel
33
34 type abouts =
35   [ `Blank
36   | `Current_proof
37   | `Us
38   | `Coercions
39   ]
40   
41 type mathViewer_entry =
42   [ `About of abouts  (* current proof *)
43   | `Check of string (* term *)
44   | `Cic of Cic.term * Cic.metasenv
45   | `Dir of string (* "directory" in cic uris namespace *)
46   | `Metadata of [ `Deps of [`Fwd | `Back] * UriManager.uri ]
47   | `Uri of UriManager.uri (* cic object uri *)
48   | `Whelp of string * UriManager.uri list (* query and results *)
49   ]
50
51 let string_of_entry = function
52   | `About `Blank -> "about:blank"
53   | `About `Current_proof -> "about:proof"
54   | `About `Us -> "about:us"
55   | `About `Coercions -> "about:coercions"
56   | `Check _ -> "check:"
57   | `Cic (_, _) -> "term:"
58   | `Dir uri -> uri
59   | `Metadata meta ->
60       "metadata:/" ^
61       (match meta with
62       | `Deps (dir, uri) ->
63           "deps/" ^
64           let suri =
65             let suri = UriManager.string_of_uri uri in
66             let len = String.length suri in
67             String.sub suri 4 (len - 4) in (* strip "cic:" prefix *)
68           (match dir with | `Fwd -> "forward" | `Back -> "backward") ^ suri)
69   | `Uri uri -> UriManager.string_of_uri uri
70   | `Whelp (query, _) -> query
71
72 let entry_of_string = function
73   | "about:blank" -> `About `Blank
74   | "about:proof" -> `About `Current_proof
75   | "about:us"    -> `About `Us
76   | "about:coercions"    -> `About `Coercions
77   | _ ->  (* only about entries supported ATM *)
78       raise (Invalid_argument "entry_of_string")
79
80 class type mathViewer =
81   object
82     (** @param reuse if set reused last opened cic browser otherwise 
83      *  opens a new one. default is false
84      *)
85     method show_entry: ?reuse:bool -> mathViewer_entry -> unit
86     method show_uri_list:
87       ?reuse:bool -> entry:mathViewer_entry -> UriManager.uri list -> unit
88   end