aboutsummaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tkextlib/tkDND.rb
blob: ba5b23b5388401e8383dec0aa44d20f8c9fedb22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
#  TkDND (Tk Drag & Drop Extension) support
#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'

# call setup script for general 'tkextlib' libraries
require 'tkextlib/setup.rb'

# library directory
dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '')

# call setup script
require File.join(dir, 'setup.rb')

module Tk
  module TkDND
    dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '')

    #autoload :DND   'tkextlib/tkDND/tkdnd'
    #autoload :Shape 'tkextlib/tkDND/shape'
    autoload :DND   File.join(dir, 'tkdnd')
    autoload :Shape File.join(dir, 'shape')
  end
end