chiark / gitweb /
changelog: start 1.0-2
[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 set lib .
18
19 source $lib/applet.tcl
20 source $lib/subproc.tcl
21 source $lib/utils.tcl
22
23 applet::become
24
25 set debug::debug puts
26
27 foreach b {1 3} {
28     applet::setup-button-menu $b
29 }
30
31 .m1 add command -command { applet::msel; puts hi } -label hi
32 .m3 add command -command { applet::msel; puts boo } -label boo
33
34 #image create bitmap ims -file gs_s.xbm   
35 #image create bitmap ims -file /usr/share/ghostscript/8.71/lib/gs_s.xbm   
36 #setimage ims
37 #setimage ims
38
39 applet::setup-tooltip { puts VIS } { puts INVIS }
40 applet::tooltip-set "line\nanother"
41
42 proc cmdline {id orientation} {
43     global argv
44     return [concat $argv $id]
45 }
46
47 applet::setup-subproc cmdline