Diff for /capa/capa51/GUITools/menu.tcl between versions 1.1 and 1.4

version 1.1, 1999/09/28 21:25:37 version 1.4, 2001/05/18 20:54:23
Line 1 Line 1
 #!/usr/local/bin/wish8.0  #!/usr/bin/wish
 set exelocation "/usr/local/bin"  set exelocation "/usr/local/bin"
 set imglocation "/usr/local/lib/CAPA"  set imglocation "/usr/local/lib/CAPA"
   
Line 8  foreach program {quizzer grader manager} Line 8  foreach program {quizzer grader manager}
  button .$program -image $program.bm -command "exec $exelocation/$program &"   button .$program -image $program.bm -command "exec $exelocation/$program &"
  pack .$program   pack .$program
 }  }
   button .passwd -text Password -command "exec userpasswd &"
   pack .passwd
   button .xterm -text XTerm -command "exec rxvt &"
   pack .xterm
   button .gedit -text GEdit -command "exec gedit &"
   pack .gedit
   button .quit -text Quit -command "exit"
   pack .quit
 wm title . "Menu"  wm title . "Menu"
 update idletasks  update idletasks
 wm geometry . -0+0  wm geometry . -0+20

Removed from v.1.1  
changed lines
  Added in v.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>