blob: eef093d314c738f4a3814028d6788d6fd022a55a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# tkextlib/iwidgets/scrolledwidget.rb
# by Hidetoshi NAGAI ([email protected])
#
require 'tk'
require 'tkextlib/iwidgets.rb'
module Tk
module Iwidgets
class Scrolledwidget < Tk::Iwidgets::Labeledwidget
end
end
end
class Tk::Iwidgets::Scrolledwidget
TkCommandNames = ['::iwidgets::scrolledwidget'.freeze].freeze
WidgetClassName = 'Scrolledwidget'.freeze
WidgetClassNames[WidgetClassName] = self
end
|