diff options
Diffstat (limited to 'otherlibs/labltk/browser/jg_bind.ml')
-rw-r--r-- | otherlibs/labltk/browser/jg_bind.ml | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/otherlibs/labltk/browser/jg_bind.ml b/otherlibs/labltk/browser/jg_bind.ml deleted file mode 100644 index 9d30f5793..000000000 --- a/otherlibs/labltk/browser/jg_bind.ml +++ /dev/null @@ -1,15 +0,0 @@ -(* $Id$ *) - -open Tk - -let enter_focus w = - bind w events:[[], `Enter] action:(`Set ([], fun _ -> Focus.set w)) - -let escape_destroy ?destroy:tl w = - let tl = match tl with Some w -> w | None -> w in - bind w events:[[], `KeyPressDetail "Escape"] - action:(`Set ([], fun _ -> destroy tl)) - -let return_invoke w :button = - bind w events:[[], `KeyPressDetail "Return"] - action:(`Set ([], fun _ -> Button.invoke button)) |