X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2FmatitaTypes.ml;h=30e64892cc2ede541a3313994e52325c170a4fbf;hb=2b4ed41c3d8a105f1f9921b37e7f11160001bbe7;hp=61f4bc306407ca6ac6facfefc117128912864da1;hpb=bee436af0c6ceb1c83259c94036df8b12f901f2d;p=helm.git diff --git a/helm/software/matita/matitaTypes.ml b/helm/software/matita/matitaTypes.ml index 61f4bc306..30e64892c 100644 --- a/helm/software/matita/matitaTypes.ml +++ b/helm/software/matita/matitaTypes.ml @@ -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