]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/matitaTypes.ml
updating the structures for sorts
[helm.git] / helm / software / matita / matitaTypes.ml
index 2584f61f6131439c394b4721b7eac4c90479a07e..30e64892cc2ede541a3313994e52325c170a4fbf 100644 (file)
@@ -39,12 +39,14 @@ type abouts =
   | `CoercionsFull
   | `TeX
   | `Grammar
+  | `Hints
   ]
   
 type mathViewer_entry =
   [ `About of abouts  (* current proof *)
   | `Check of string  (* term *)
   | `Cic of Cic.term * Cic.metasenv
+  | `NCic of NCic.term * NCic.context * NCic.metasenv * NCic.substitution
   | `Dir of string  (* "directory" in cic uris namespace *)
   | `HBugs of [ `Tutors ] (* list of available HBugs tutors *)
   | `Metadata of [ `Deps of [`Fwd | `Back] * UriManager.uri ]
@@ -62,8 +64,10 @@ let string_of_entry = function
   | `About `CoercionsFull -> "about:coercions"
   | `About `TeX -> "about:tex"
   | `About `Grammar -> "about:grammar"
+  | `About `Hints -> "about:hints"
   | `Check _ -> "check:"
   | `Cic (_, _) -> "term:"
+  | `NCic (_, _, _, _) -> "nterm:"
   | `Dir uri -> uri
   | `HBugs `Tutors -> "hbugs:/tutors/"
   | `Metadata meta ->
@@ -85,6 +89,7 @@ let entry_of_string = function
   | "about:blank" -> `About `Blank
   | "about:proof" -> `About `Current_proof
   | "about:us"    -> `About `Us
+  | "about:hints"    -> `About `Hints
   | "about:coercions?tred=true"    -> `About `Coercions
   | "about:coercions"    -> `About `CoercionsFull
   | "about:tex"    -> `About `TeX
@@ -100,4 +105,7 @@ class type mathViewer =
     method show_entry: ?reuse:bool -> mathViewer_entry -> unit
     method show_uri_list:
       ?reuse:bool -> entry:mathViewer_entry -> UriManager.uri list -> unit
+    method screenshot: 
+      GrafiteTypes.status -> NCic.metasenv -> NCic.metasenv ->
+        NCic.substitution -> string -> unit
   end