Sha256: b308ae7e11845afa41965681350b207872e89c8679d5f13ab12b3a47799799c9
Contents?: true
Size: 933 Bytes
Versions: 3
Compression:
Stored size: 933 Bytes
Contents
# # tkextlib/iwidgets/fileselectionbox.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tkextlib/iwidgets.rb' module Tk module Iwidgets class Fileselectionbox < Tk::Itk::Widget end end end class Tk::Iwidgets::Fileselectionbox TkCommandNames = ['::iwidgets::fileselectionbox'.freeze].freeze WidgetClassName = 'Fileselectionbox'.freeze WidgetClassNames[WidgetClassName] = self def __strval_optkeys super() + [ 'directory', 'dirslabel', 'fileslabel', 'filterlabel', 'mask', 'nomatchstring', 'selectionlabel' ] end private :__strval_optkeys def __boolval_optkeys super() + ['dirson', 'fileson', 'filteron', 'selectionon'] end private :__boolval_optkeys def child_site window(tk_call(@path, 'childsite')) end def filter tk_call(@path, 'filter') self end def get tk_call(@path, 'get') end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tk_as_gem-0.1.0 | ext/lib/tkextlib/iwidgets/fileselectionbox.rb |
tk_as_gem-0.0.1 | ext/lib/tkextlib/iwidgets/fileselectionbox.rb |
tk_as_gem-0.0.0 | ext/lib/tkextlib/iwidgets/fileselectionbox.rb |