chiark / gitweb /
example: Fix usage
[chiark-tcl-applet.git] / example
1 #!/usr/bin/wish -f
2 # -*- Tcl -*-
3
4 # Copyright 2016,2020 Ian Jackson
5 # SPDX-License-Identifier: GPL-3.0-or-later
6 # There is NO WARRANTY.
7
8 # usage:
9 #   .../example program arguments...
10 # will run
11 #   program arguments... WINDOWID
12 # and program sbould put up an X11 window as a child of WINDOWID
13 #
14 # eg, for a silly example:
15 #   .../example xterm -id
16
17 source applet.tcl
18 source subproc.tcl
19 source utils.tcl
20
21 set debug::debug puts
22
23 foreach b {1 3} {
24     applet::setup-button-menu $b
25 }
26
27 .m1 add command -command { applet::msel; puts hi } -label hi
28 .m3 add command -command { applet::msel; puts boo } -label boo
29
30 #image create bitmap ims -file gs_s.xbm   
31 #image create bitmap ims -file /usr/share/ghostscript/8.71/lib/gs_s.xbm   
32 #setimage ims
33 #setimage ims
34
35 applet::setup-tooltip { puts VIS } { puts INVIS }
36 applet::tooltip-set "line\nanother"
37
38 proc cmdline {id orientation} {
39     global argv
40     return [concat $argv $id]
41 }
42
43 applet::setup-subproc cmdline