]> 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 61f4bc306407ca6ac6facfefc117128912864da1..30e64892cc2ede541a3313994e52325c170a4fbf 100644 (file)
@@ -39,6 +39,7 @@ type abouts =
   | `CoercionsFull
   | `TeX
   | `Grammar
+  | `Hints
   ]
   
 type mathViewer_entry =
@@ -63,6 +64,7 @@ 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:"
@@ -87,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
@@ -103,6 +106,6 @@ class type mathViewer =
     method show_uri_list:
       ?reuse:bool -> entry:mathViewer_entry -> UriManager.uri list -> unit
     method screenshot: 
-      GrafiteTypes.status -> int * NCic.conjecture -> NCic.metasenv ->
+      GrafiteTypes.status -> NCic.metasenv -> NCic.metasenv ->
         NCic.substitution -> string -> unit
   end