X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Flogger%2Fui_logger.mli;fp=helm%2Focaml%2Flogger%2Fui_logger.mli;h=3c548550ffc183115901d63e1dba89d63686ed12;hb=67b9632f9a2e5331cb3c7b03908acf6392911007;hp=a289e370edf16aa9379910d99e00cf41b32bb728;hpb=1bd503d31db62ec1f4b1dfb416c11615f3af7248;p=helm.git diff --git a/helm/ocaml/logger/ui_logger.mli b/helm/ocaml/logger/ui_logger.mli index a289e370e..3c548550f 100644 --- a/helm/ocaml/logger/ui_logger.mli +++ b/helm/ocaml/logger/ui_logger.mli @@ -3,17 +3,16 @@ type html_tag = [ `BR | `L of html_tag list | `T of string ] type html_msg = [ `Error of html_tag | `Msg of html_tag ] class html_logger: - width:int -> height:int -> - packing:(GObj.widget -> unit) -> show:bool -> - unit -> - object - (* in all methods below "append_NL" defaults to true *) + ?width:int -> ?height:int -> ?packing:(GObj.widget -> unit) -> ?show:bool -> + unit -> + object + (* in all methods below "append_NL" defaults to true *) - (** log an HTML like message, see minimal markup above *) - method log: ?append_NL:bool -> html_msg -> unit + (** log an HTML like message, see minimal markup above *) + method log: ?append_NL:bool -> html_msg -> unit - (** log a cic messages as degined in CicLogger *) - method log_cic_msg: ?append_NL:bool -> CicLogger.msg -> unit + (** log a cic messages as degined in CicLogger *) + method log_cic_msg: ?append_NL:bool -> CicLogger.msg -> unit - end + end