diff options
Diffstat (limited to 'otherlibs/labltk/browser/jg_toplevel.ml')
-rw-r--r-- | otherlibs/labltk/browser/jg_toplevel.ml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/otherlibs/labltk/browser/jg_toplevel.ml b/otherlibs/labltk/browser/jg_toplevel.ml new file mode 100644 index 000000000..c36a215ef --- /dev/null +++ b/otherlibs/labltk/browser/jg_toplevel.ml @@ -0,0 +1,10 @@ +(* $Id$ *) + +open Tk + +let titled ?:iconname title = + let iconname = match iconname with None -> title | Some s -> s in + let tl = Toplevel.create parent:Widget.default_toplevel () in + Wm.title_set tl :title; + Wm.iconname_set tl name:iconname; + tl |