mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e55330c9c4
* ext/tk/lib/tk/msgcat.rb: ditto. * ext/tk/lib/tk/variable.rb: ditto. * ext/tk/lib/tk/timer.rb: ditto. * ext/tk/lib/tk/validation.rb: add Tk::ValidateConfigure.__def_validcmd() to define validatecommand methods easier git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
64 lines
1.3 KiB
Ruby
64 lines
1.3 KiB
Ruby
#
|
|
# tcllib extension support
|
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
|
#
|
|
|
|
require 'tk'
|
|
|
|
# call setup script for general 'tkextlib' libraries
|
|
require 'tkextlib/setup.rb'
|
|
|
|
# call setup script
|
|
require 'tkextlib/tcllib/setup.rb'
|
|
|
|
err = ''
|
|
|
|
# package:: autoscroll
|
|
target = 'tkextlib/tcllib/autoscroll'
|
|
begin
|
|
require target
|
|
rescue => e
|
|
err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message
|
|
end
|
|
|
|
# package:: cursor
|
|
target = 'tkextlib/tcllib/cursor'
|
|
begin
|
|
require target
|
|
rescue => e
|
|
err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message
|
|
end
|
|
|
|
# package:: style
|
|
target = 'tkextlib/tcllib/style'
|
|
begin
|
|
require target
|
|
rescue => e
|
|
err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message
|
|
end
|
|
|
|
# autoload
|
|
module Tk
|
|
module Tcllib
|
|
# package:: ctext
|
|
autoload :CText, 'tkextlib/tcllib/ctext'
|
|
|
|
# package:: datefield
|
|
autoload :Datefield, 'tkextlib/tcllib/datefield'
|
|
autoload :DateField, 'tkextlib/tcllib/datefield'
|
|
|
|
# package:: ipentry
|
|
autoload :IP_Entry, 'tkextlib/tcllib/ip_entry'
|
|
|
|
# package:: Plotchart
|
|
autoload :Plotchart, 'tkextlib/tcllib/plotchart'
|
|
|
|
# package:: tkpiechart
|
|
autoload :Tkpiechart, 'tkextlib/tcllib/tkpiechart'
|
|
end
|
|
end
|
|
|
|
unless err.empty?
|
|
warn("Warning: some sub-packages are failed to require : " + err)
|
|
end
|
|
|