From 9ff1e787f915539b1980654e3d3d2013ff5c81d2 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 7 Jul 2008 07:38:25 +0000 Subject: wrong commit; sorry git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_6_269@17938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb | 50 ----------------------------- 1 file changed, 50 deletions(-) delete mode 100644 ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb (limited to 'ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb') diff --git a/ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb b/ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb deleted file mode 100644 index 9f21ae6377..0000000000 --- a/ruby_1_8_6/ext/tk/sample/tcltklib/lines1.rb +++ /dev/null @@ -1,50 +0,0 @@ -#! /usr/local/bin/ruby - -require "tcltk" - -def drawlines() - print Time.now, "\n" - - for j in 0 .. 99 - print "*" - $stdout.flush - if (j & 1) != 0 - col = "blue" - else - col = "red" - end - for i in 0 .. 99 -# $a.e("create line", i, 0, 0, 500 - i, "-fill", col) - end - end - - print Time.now, "\n" - - for j in 0 .. 99 - print "*" - $stdout.flush - if (j & 1) != 0 - col = "blue" - else - col = "red" - end - for i in 0 .. 99 - $a.e("create line", i, 0, 0, 500 - i, "-fill", col) - end - end - - print Time.now, "\n" -# $ip.commands()["destroy"].e($root) -end - -$ip = TclTkInterpreter.new() -$root = $ip.rootwidget() -$a = TclTkWidget.new($ip, $root, "canvas", "-height 500 -width 500") -$c = TclTkCallback.new($ip, proc{drawlines()}) -$b = TclTkWidget.new($ip, $root, "button", "-text draw -command", $c) - -$ip.commands()["pack"].e($a, $b, "-side left") - -TclTk.mainloop - -# eof -- cgit v1.2.3