1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# # tkextlib/iwidgets/dialog.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tkextlib/iwidgets.rb' module Tk module Iwidgets class Dialog < Tk::Iwidgets::Dialogshell end end end class Tk::Iwidgets::Dialog TkCommandNames = ['::iwidgets::dialog'.freeze].freeze WidgetClassName = 'Dialog'.freeze WidgetClassNames[WidgetClassName] ||= self end