Sha256: 84a624701f22b8d8334c285f68ecf18111ddc41d44f4600c5934de12c99a6b31
Contents?: true
Size: 799 Bytes
Versions: 3
Compression:
Stored size: 799 Bytes
Contents
# # tkextlib/bwidget/entry.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tk/entry' require 'tkextlib/bwidget.rb' module Tk module BWidget class Entry < Tk::Entry end end end class Tk::BWidget::Entry include Scrollable TkCommandNames = ['Entry'.freeze].freeze WidgetClassName = 'Entry'.freeze WidgetClassNames[WidgetClassName] = self def __strval_optkeys super() << 'helptext' << 'insertbackground' end private :__strval_optkeys def __boolval_optkeys super() << 'dragenabled' << 'dropenabled' << 'editable' end private :__boolval_optkeys def __tkvariable_optkeys super() << 'helpvar' end private :__tkvariable_optkeys def invoke tk_send_without_enc('invoke') self end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tk_as_gem-0.1.0 | ext/lib/tkextlib/bwidget/entry.rb |
tk_as_gem-0.0.1 | ext/lib/tkextlib/bwidget/entry.rb |
tk_as_gem-0.0.0 | ext/lib/tkextlib/bwidget/entry.rb |