2004-07-01 05:38:48 -04:00
|
|
|
#
|
|
|
|
# Tile theme engin (tile widget set) support
|
|
|
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'tk'
|
|
|
|
|
|
|
|
# call setup script for general 'tkextlib' libraries
|
|
|
|
require 'tkextlib/setup.rb'
|
|
|
|
|
|
|
|
# library directory
|
2004-07-06 05:42:12 -04:00
|
|
|
require 'tkextlib/tile/setup.rb'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
|
|
|
# load package
|
|
|
|
# TkPackage.require('tile', '0.4')
|
|
|
|
TkPackage.require('tile')
|
|
|
|
|
|
|
|
# autoload
|
|
|
|
module Tk
|
|
|
|
module Tile
|
2004-07-06 05:42:12 -04:00
|
|
|
def self.package_version
|
|
|
|
begin
|
|
|
|
TkPackage.require('tile')
|
|
|
|
rescue
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-07-01 05:38:48 -04:00
|
|
|
module TileWidget
|
|
|
|
def instate(state, script=nil, &b)
|
|
|
|
if script
|
|
|
|
tk_send('instate', state, script)
|
|
|
|
elsif b
|
|
|
|
tk_send('instate', state, Proc.new(&b))
|
|
|
|
else
|
|
|
|
bool(tk_send('instate', state))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def state(state=nil)
|
|
|
|
if state
|
|
|
|
tk_send('state', state)
|
|
|
|
else
|
|
|
|
list(tk_send('state'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
######################################
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TButton, 'tkextlib/tile/tbutton'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TCheckButton, 'tkextlib/tile/tcheckbutton'
|
|
|
|
autoload :TCheckbutton, 'tkextlib/tile/tcheckbutton'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TLabel, 'tkextlib/tile/tlabel'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TMenubutton, 'tkextlib/tile/tmenubutton'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TNotebook, 'tkextlib/tile/tnotebook'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :TRadioButton, 'tkextlib/tile/tradiobutton'
|
|
|
|
autoload :TRadiobutton, 'tkextlib/tile/tradiobutton'
|
2004-07-01 05:38:48 -04:00
|
|
|
|
2004-07-06 05:42:12 -04:00
|
|
|
autoload :Style, 'tkextlib/tile/style'
|
2004-07-01 05:38:48 -04:00
|
|
|
end
|
|
|
|
end
|