X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2FmatitaTypes.ml;h=092c79c986e103e7c4b92fcb7bdc159e471a7b95;hb=74223db3fc45caccb3cfac80971b29cb0613da28;hp=30e64892cc2ede541a3313994e52325c170a4fbf;hpb=2c01ff6094173915e7023076ea48b5804dca7778;p=helm.git diff --git a/matita/matita/matitaTypes.ml b/matita/matita/matitaTypes.ml index 30e64892c..092c79c98 100644 --- a/matita/matita/matitaTypes.ml +++ b/matita/matita/matitaTypes.ml @@ -25,9 +25,6 @@ (* $Id$ *) -open Printf -open GrafiteTypes - (** user hit the cancel button *) exception Cancel @@ -45,15 +42,9 @@ type abouts = 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 ] - | `Uri of UriManager.uri (* cic object uri *) | `NRef of NReference.reference (* cic object uri *) - | `Whelp of string * UriManager.uri list (* query and results *) - | `Univs of UriManager.uri ] let string_of_entry = function @@ -66,24 +57,9 @@ let string_of_entry = function | `About `Grammar -> "about:grammar" | `About `Hints -> "about:hints" | `Check _ -> "check:" - | `Cic (_, _) -> "term:" | `NCic (_, _, _, _) -> "nterm:" | `Dir uri -> uri - | `HBugs `Tutors -> "hbugs:/tutors/" - | `Metadata meta -> - "metadata:/" ^ - (match meta with - | `Deps (dir, uri) -> - "deps/" ^ - let suri = - let suri = UriManager.string_of_uri uri in - let len = String.length suri in - String.sub suri 4 (len - 4) in (* strip "cic:" prefix *) - (match dir with | `Fwd -> "forward" | `Back -> "backward") ^ suri) - | `Uri uri -> UriManager.string_of_uri uri | `NRef nref -> NReference.string_of_reference nref - | `Whelp (query, _) -> query - | `Univs uri -> "univs:" ^ UriManager.string_of_uri uri let entry_of_string = function | "about:blank" -> `About `Blank @@ -96,16 +72,3 @@ let entry_of_string = function | "about:grammar" -> `About `Grammar | _ -> (* only about entries supported ATM *) raise (Invalid_argument "entry_of_string") - -class type mathViewer = - object - (** @param reuse if set reused last opened cic browser otherwise - * opens a new one. default is false - *) - 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