summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/builtin/builtinf_GetPixel.ml
blob: 45294d58c1be30785e70df1e11023ff31a78f307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##ifdef CAMLTK

let pixels units =
  let res =
    tkEval
     [|TkToken"winfo";
       TkToken"pixels";
       cCAMLtoTKwidget widget_any_table default_toplevel;
       cCAMLtoTKunits units|] in
  int_of_string res

##else

let pixels units =
  let res =
    tkEval
     [|TkToken"winfo";
       TkToken"pixels";
       cCAMLtoTKwidget default_toplevel;
       cCAMLtoTKunits units|] in
  int_of_string res

##endif