2004-07-01 05:38:48 -04:00
|
|
|
#
|
|
|
|
# tbutton widget
|
|
|
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
|
|
|
#
|
|
|
|
require 'tk'
|
2004-07-06 05:42:12 -04:00
|
|
|
require 'tkextlib/tile.rb'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
module Tk
|
|
|
|
module Tile
|
|
|
|
class TButton < TkButton
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2004-07-01 05:38:48 -04:00
|
|
|
|
|
|
|
class Tk::Tile::TButton < TkButton
|
|
|
|
include Tk::Tile::TileWidget
|
|
|
|
|
|
|
|
TkCommandNames = ['tbutton'.freeze].freeze
|
|
|
|
WidgetClassName = 'TButton'.freeze
|
|
|
|
WidgetClassNames[WidgetClassName] = self
|
|
|
|
|
|
|
|
def create_self(keys)
|
|
|
|
if keys and keys != None
|
|
|
|
tk_call_without_enc('tbutton', @path, *hash_kv(keys, true))
|
|
|
|
else
|
|
|
|
tk_call_without_enc('tbutton', @path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :create_self
|
|
|
|
end
|