Sha256: f833616f7d05c0fa06b69b218974c7cccd54d3da31d1ca8b32b7ec7e2c90b281
Contents?: true
Size: 588 Bytes
Versions: 3
Compression:
Stored size: 588 Bytes
Contents
# # tkextlib/iwidgets/spinint.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tkextlib/iwidgets.rb' module Tk module Iwidgets class Spinint < Tk::Iwidgets::Spinner end end end class Tk::Iwidgets::Spinint TkCommandNames = ['::iwidgets::spinint'.freeze].freeze WidgetClassName = 'Spinint'.freeze WidgetClassNames[WidgetClassName] = self def __boolval_optkeys super() << 'wrap' end private :__boolval_optkeys def __numlistval_optkeys super() << 'range' end private :__numlistval_optkeys end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tk_as_gem-0.1.0 | ext/lib/tkextlib/iwidgets/spinint.rb |
tk_as_gem-0.0.1 | ext/lib/tkextlib/iwidgets/spinint.rb |
tk_as_gem-0.0.0 | ext/lib/tkextlib/iwidgets/spinint.rb |