]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/hbugs/client/hbugs_client.mli
added "describe_hint_callback" invoked when a hint is selected
[helm.git] / helm / hbugs / client / hbugs_client.mli
index 87e11e968501ca75183785b5d04f69a7328cf575..0c2e93d800b81590ab5eb11fcd9e5455f5a28624 100644 (file)
@@ -3,9 +3,16 @@ open Hbugs_types
 
 exception Invalid_URL of string
 
+  (*
+    @param use_hint_callback is called when the user double click on a hint
+    (default: do nothing)
+    @param describe_hint_callback is called when the user click on a hint
+    (default: do nothing)
+  *)
 class hbugsClient :
-  ?use_hint_callback: (hint -> unit) -> (* default = do nothing *)
-  ?destroy_callback: (unit -> unit) ->  (* default = do nothing *)
+  ?use_hint_callback: (hint -> unit) ->
+  ?describe_hint_callback: (hint -> unit) ->
+  ?destroy_callback: (unit -> unit) ->
   unit ->
     object