summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb')
-rw-r--r--trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb b/trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb
deleted file mode 100644
index 3599fd8459..0000000000
--- a/trunk/ext/tk/lib/tkextlib/bwidget/scrolledwindow.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# tkextlib/bwidget/scrolledwindow.rb
-# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
-#
-
-require 'tk'
-require 'tk/frame'
-require 'tkextlib/bwidget.rb'
-
-module Tk
- module BWidget
- class ScrolledWindow < TkWindow
- end
- end
-end
-
-class Tk::BWidget::ScrolledWindow
- TkCommandNames = ['ScrolledWindow'.freeze].freeze
- WidgetClassName = 'ScrolledWindow'.freeze
- WidgetClassNames[WidgetClassName] = self
-
- def get_frame(&b)
- win = window(tk_send_without_enc('getframe'))
- if b
- if TkCore::WITH_RUBY_VM ### Ruby 1.9 !!!!
- win.instance_exec(self, &b)
- else
- win.instance_eval(&b)
- end
- end
- win
- end
-
- def set_widget(win)
- tk_send_without_enc('setwidget', win)
- self
- end
-end